Changeset 77e9ae1 in git for examples/CaloGrid.cpp
- Timestamp:
- Feb 12, 2019, 9:48:36 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, llp, master
- Children:
- 899b162
- Parents:
- 6455202
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/CaloGrid.cpp
r6455202 r77e9ae1 41 41 42 42 std::vector<std::string> calorimeters_; 43 std::map<std::string, std::set<std::pair<Double_t, Int_t> >> caloBinning_;43 std::map<std::string, std::set<std::pair<Double_t, Int_t> > > caloBinning_; 44 44 45 45 std::string s(argv[2]); … … 90 90 91 91 //first entry is eta bin, second is number of phi bins 92 set<pair<Double_t, Int_t> > caloBinning;92 set<pair<Double_t, Int_t> > caloBinning; 93 93 ExRootConfParam paramEtaBins, paramPhiBins; 94 94 ExRootConfParam param = confReader->GetParam(Form("%s::EtaPhiBins", calo->c_str())); … … 109 109 110 110 //loop over calo binning 111 std::set<std::pair<Double_t, Int_t> >::iterator it;111 std::set<std::pair<Double_t, Int_t> >::iterator it; 112 112 113 113 Int_t n = -1; … … 122 122 liney->Draw(); 123 123 124 set<std::pair<Double_t, Int_t> >::iterator it2 = it;124 set<std::pair<Double_t, Int_t> >::iterator it2 = it; 125 125 it2--; 126 126
Note:
See TracChangeset
for help on using the changeset viewer.