Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesTF2.cc

    r3b5d79a r3e8bcb9  
    3232{
    3333
    34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6, 3, 0)
     34#if ROOT_VERSION_CODE >= ROOT_VERSION(6,04,00)
    3535  fFormula = new TFormula();
    3636#endif
     37
     38
    3739}
    3840
     
    5860  for(it = expression; *it; ++it)
    5961  {
    60     if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\') continue;
     62    if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\' ) continue;
    6163    buffer.Append(*it);
    6264  }
    6365  buffer.ReplaceAll("z", "x");
    6466  buffer.ReplaceAll("t", "y");
    65 #if ROOT_VERSION_CODE < ROOT_VERSION(6, 3, 0)
     67#if ROOT_VERSION_CODE < ROOT_VERSION(6,04,00)
    6668  if(TF2::Compile(buffer) != 0)
    6769#else
Note: See TracChangeset for help on using the changeset viewer.