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