Changes in classes/DelphesTF2.cc [3b5d79a:3e8bcb9] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesTF2.cc
r3b5d79a r3e8bcb9 32 32 { 33 33 34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6, 3,0)34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,04,00) 35 35 fFormula = new TFormula(); 36 36 #endif 37 38 37 39 } 38 40 … … 58 60 for(it = expression; *it; ++it) 59 61 { 60 if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\' ) continue;62 if(*it == ' ' || *it == '\t' || *it == '\r' || *it == '\n' || *it == '\\' ) continue; 61 63 buffer.Append(*it); 62 64 } 63 65 buffer.ReplaceAll("z", "x"); 64 66 buffer.ReplaceAll("t", "y"); 65 #if ROOT_VERSION_CODE < ROOT_VERSION(6, 3,0)67 #if ROOT_VERSION_CODE < ROOT_VERSION(6,04,00) 66 68 if(TF2::Compile(buffer) != 0) 67 69 #else
Note:
See TracChangeset
for help on using the changeset viewer.