Changeset 341014c in git for external/ExRootAnalysis/ExRootFilter.cc
- Timestamp:
- Feb 12, 2019, 9:29:17 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, llp, master
- Children:
- 6455202
- Parents:
- 45e58be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/ExRootAnalysis/ExRootFilter.cc
r45e58be r341014c 11 11 #include "ExRootAnalysis/ExRootClassifier.h" 12 12 13 #include "TObjArray.h" 13 14 #include "TSeqCollection.h" 14 #include "TObjArray.h"15 15 16 16 #include <iostream> 17 #include <sstream> 17 18 #include <stdexcept> 18 #include <sstream>19 19 20 20 using namespace std; 21 21 22 typedef map<Int_t, TObjArray *> TCategoryMap;23 typedef map<ExRootClassifier *, pair<Bool_t, TCategoryMap>> TClassifierMap;22 typedef map<Int_t, TObjArray *> TCategoryMap; 23 typedef map<ExRootClassifier *, pair<Bool_t, TCategoryMap>> TClassifierMap; 24 24 25 25 ExRootFilter::ExRootFilter(const TSeqCollection *collection) : … … 40 40 itSubMap != itMap->second.second.end(); ++itSubMap) 41 41 { 42 delete 42 delete(itSubMap->second); 43 43 } 44 44 } … … 132 132 133 133 //------------------------------------------------------------------------------ 134
Note:
See TracChangeset
for help on using the changeset viewer.