Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesTF2.cc

    r3e8bcb9 r3b5d79a  
    3232{
    3333
    34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,04,00)
     34#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 3, 0)
    3535  fFormula = new TFormula();
    3636#endif
    37 
    38 
    3937}
    4038
     
    6058  for(it = expression; *it; ++it)
    6159  {
    62     if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\' ) continue;
     60    if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\') continue;
    6361    buffer.Append(*it);
    6462  }
    6563  buffer.ReplaceAll("z", "x");
    6664  buffer.ReplaceAll("t", "y");
    67 #if ROOT_VERSION_CODE < ROOT_VERSION(6,04,00)
     65#if ROOT_VERSION_CODE < ROOT_VERSION(6, 3, 0)
    6866  if(TF2::Compile(buffer) != 0)
    6967#else
Note: See TracChangeset for help on using the changeset viewer.