Changes in external/ExRootAnalysis/ExRootTreeReader.cc [341014c:cab38f6] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/ExRootAnalysis/ExRootTreeReader.cc
r341014c rcab38f6 10 10 #include "ExRootAnalysis/ExRootTreeReader.h" 11 11 12 #include "TBranchElement.h" 12 #include "TH2.h" 13 #include "TStyle.h" 13 14 #include "TCanvas.h" 14 15 #include "TClonesArray.h" 15 #include "TH2.h" 16 #include "TStyle.h" 16 #include "TBranchElement.h" 17 17 18 18 #include <iostream> … … 51 51 if(fChain->IsA() == TChain::Class()) 52 52 { 53 TChain *chain = static_cast<TChain 53 TChain *chain = static_cast<TChain*>(fChain); 54 54 if(chain->GetTreeNumber() != fCurrentTree) 55 55 { … … 94 94 if(branch->IsA() == TBranchElement::Class()) 95 95 { 96 TBranchElement *element = static_cast<TBranchElement 96 TBranchElement *element = static_cast<TBranchElement*>(branch); 97 97 const char *className = element->GetClonesName(); 98 98 Int_t size = element->GetMaximum(); … … 145 145 146 146 //------------------------------------------------------------------------------ 147
Note:
See TracChangeset
for help on using the changeset viewer.