Changes between Version 4 and Version 5 of WorkBook/LibraryInterface
- Timestamp:
- Jun 20, 2012, 1:06:34 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/LibraryInterface
v4 v5 11 11 12 12 void ConvertEvent(ExRootFactory *factory, TObjArray *outputArray); 13 void ReadResults(ExRootAnalysis *modularDelphes); 13 14 14 15 int main() … … 90 91 } 91 92 } 93 94 void ReadResults(ExRootAnalysis *modularDelphes) 95 { 96 TObjArray *arrayJets = modularDelphes->ImportArray("FastJetFinder/jets"); 97 TIterator iteratorJets(arrayJets); 98 ExRootCandidate *candidate; 99 100 iteratorJets->Reset(); 101 while((candidate = static_cast<ExRootCandidate*>(iterator->Next()))) 102 { 103 const TLorentzVector &momentum = candidate->GetMomentum(); 104 } 105 } 92 106 }}}