Changeset 3e8bcb9 in git
- Timestamp:
- Apr 26, 2016, 12:27:56 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- bd8c884
- Parents:
- cd699d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesTF2.cc
rcd699d0 r3e8bcb9 31 31 TF2() 32 32 { 33 34 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,04,00) 35 fFormula = new TFormula(); 36 #endif 37 38 33 39 } 34 40 … … 59 65 buffer.ReplaceAll("z", "x"); 60 66 buffer.ReplaceAll("t", "y"); 61 #if 67 #if ROOT_VERSION_CODE < ROOT_VERSION(6,04,00) 62 68 if(TF2::Compile(buffer) != 0) 63 69 #else 64 if( TF2::GetFormula()->Compile(buffer) != 0)70 if(fFormula->Compile(buffer) != 0) 65 71 #endif 66 72 {
Note:
See TracChangeset
for help on using the changeset viewer.