Changes in external/ExRootAnalysis/ExRootTreeReader.h [cab38f6:77e9ae1] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/ExRootAnalysis/ExRootTreeReader.h
rcab38f6 r77e9ae1 10 10 */ 11 11 12 #include "TROOT.h"13 #include "TNamed.h"14 12 #include "TChain.h" 15 13 #include "TFile.h" 14 #include "TNamed.h" 15 #include "TROOT.h" 16 16 17 17 #include <map> 18 18 19 class ExRootTreeReader 19 class ExRootTreeReader: public TNamed 20 20 { 21 public : 22 21 public: 23 22 ExRootTreeReader(TTree *tree = 0); 24 23 ~ExRootTreeReader(); … … 32 31 33 32 private: 34 35 33 Bool_t Notify(); 36 34 … … 38 36 Int_t fCurrentTree; //! current Tree number in a TChain 39 37 40 typedef std::map<TString, std::pair<TBranch *, TClonesArray*> > TBranchMap;38 typedef std::map<TString, std::pair<TBranch *, TClonesArray *> > TBranchMap; 41 39 42 40 TBranchMap fBranchMap; //!
Note:
See TracChangeset
for help on using the changeset viewer.