Fork me on GitHub

Changeset 341014c in git for classes/DelphesTF2.cc


Ignore:
Timestamp:
Feb 12, 2019, 9:29:17 PM (6 years ago)
Author:
Pavel Demin <pavel-demin@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
6455202
Parents:
45e58be
Message:

apply .clang-format to all .h, .cc and .cpp files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesTF2.cc

    r45e58be r341014c  
    3232{
    3333
    34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,04,00)
     34#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 04, 00)
    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, 04, 00)
    6866  if(TF2::Compile(buffer) != 0)
    6967#else
Note: See TracChangeset for help on using the changeset viewer.