CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PhotonAnalyzer.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 //
4 
6 
7 
18 using namespace std;
19 
20 
22 {
23 
24  fName_ = pset.getUntrackedParameter<string>("Name");
25  verbosity_ = pset.getUntrackedParameter<int>("Verbosity");
26 
27  prescaleFactor_ = pset.getUntrackedParameter<int>("prescaleFactor",1);
28 
29  photon_token_ = consumes<vector<reco::Photon> >(pset.getParameter<edm::InputTag>("phoProducer"));
30 
31  barrelRecHit_token_ = consumes<edm::SortedCollection<EcalRecHit,edm::StrictWeakOrdering<EcalRecHit> > >(pset.getParameter<edm::InputTag>("barrelRecHitProducer"));
32 
33  PhotonIDLoose_token_ = consumes<edm::ValueMap<bool> >(pset.getParameter<edm::InputTag>("photonIDLoose"));
34  PhotonIDTight_token_ = consumes<edm::ValueMap<bool> >(pset.getParameter<edm::InputTag>("photonIDTight"));
35 
36  endcapRecHit_token_ = consumes<edm::SortedCollection<EcalRecHit,edm::StrictWeakOrdering<EcalRecHit> > >(pset.getParameter<edm::InputTag>("endcapRecHitProducer"));
37 
38  triggerEvent_token_ = consumes<trigger::TriggerEvent>(pset.getParameter<edm::InputTag>("triggerEvent"));
39 
40  minPhoEtCut_ = pset.getParameter<double>("minPhoEtCut");
41  invMassEtCut_ = pset.getParameter<double>("invMassEtCut");
42 
43  cutStep_ = pset.getParameter<double>("cutStep");
44  numberOfSteps_ = pset.getParameter<int>("numberOfSteps");
45 
46  useBinning_ = pset.getParameter<bool>("useBinning");
47  useTriggerFiltering_ = pset.getParameter<bool>("useTriggerFiltering");
48 
49  minimalSetOfHistos_ = pset.getParameter<bool>("minimalSetOfHistos");
50  excludeBkgHistos_ = pset.getParameter<bool>("excludeBkgHistos");
51 
52  standAlone_ = pset.getParameter<bool>("standAlone");
53  outputFileName_ = pset.getParameter<string>("OutputFileName");
54 
55  isolationStrength_ = pset.getParameter<int>("isolationStrength");
56 
57  isHeavyIon_ = pset.getUntrackedParameter<bool>("isHeavyIon",false);
58 
59  parameters_ = pset;
60 
61  histo_index_photons_ = 0;
62  histo_index_conversions_ = 0;
63  histo_index_efficiency_ = 0;
64  histo_index_invMass_ = 0;
65 }
66 
67 
68 
70 
71 
73 {
74 
75  nEvt_=0;
76  nEntry_=0;
77 
78  dbe_ = 0;
80 
81 
82 
83  double eMin = parameters_.getParameter<double>("eMin");
84  double eMax = parameters_.getParameter<double>("eMax");
85  int eBin = parameters_.getParameter<int>("eBin");
86 
87  double etMin = parameters_.getParameter<double>("etMin");
88  double etMax = parameters_.getParameter<double>("etMax");
89  int etBin = parameters_.getParameter<int>("etBin");
90 
91  double sumMin = parameters_.getParameter<double>("sumMin");
92  double sumMax = parameters_.getParameter<double>("sumMax");
93  int sumBin = parameters_.getParameter<int>("sumBin");
94 
95  double etaMin = parameters_.getParameter<double>("etaMin");
96  double etaMax = parameters_.getParameter<double>("etaMax");
97  int etaBin = parameters_.getParameter<int>("etaBin");
98 
99  double phiMin = parameters_.getParameter<double>("phiMin");
100  double phiMax = parameters_.getParameter<double>("phiMax");
101  int phiBin = parameters_.getParameter<int>("phiBin");
102 
103  double r9Min = parameters_.getParameter<double>("r9Min");
104  double r9Max = parameters_.getParameter<double>("r9Max");
105  int r9Bin = parameters_.getParameter<int>("r9Bin");
106 
107  double hOverEMin = parameters_.getParameter<double>("hOverEMin");
108  double hOverEMax = parameters_.getParameter<double>("hOverEMax");
109  int hOverEBin = parameters_.getParameter<int>("hOverEBin");
110 
111  double xMin = parameters_.getParameter<double>("xMin");
112  double xMax = parameters_.getParameter<double>("xMax");
113  int xBin = parameters_.getParameter<int>("xBin");
114 
115  double yMin = parameters_.getParameter<double>("yMin");
116  double yMax = parameters_.getParameter<double>("yMax");
117  int yBin = parameters_.getParameter<int>("yBin");
118 
119  double numberMin = parameters_.getParameter<double>("numberMin");
120  double numberMax = parameters_.getParameter<double>("numberMax");
121  int numberBin = parameters_.getParameter<int>("numberBin");
122 
123  double zMin = parameters_.getParameter<double>("zMin");
124  double zMax = parameters_.getParameter<double>("zMax");
125  int zBin = parameters_.getParameter<int>("zBin");
126 
127  double rMin = parameters_.getParameter<double>("rMin");
128  double rMax = parameters_.getParameter<double>("rMax");
129  int rBin = parameters_.getParameter<int>("rBin");
130 
131  double dPhiTracksMin = parameters_.getParameter<double>("dPhiTracksMin");
132  double dPhiTracksMax = parameters_.getParameter<double>("dPhiTracksMax");
133  int dPhiTracksBin = parameters_.getParameter<int>("dPhiTracksBin");
134 
135  double dEtaTracksMin = parameters_.getParameter<double>("dEtaTracksMin");
136  double dEtaTracksMax = parameters_.getParameter<double>("dEtaTracksMax");
137  int dEtaTracksBin = parameters_.getParameter<int>("dEtaTracksBin");
138 
139  double sigmaIetaMin = parameters_.getParameter<double>("sigmaIetaMin");
140  double sigmaIetaMax = parameters_.getParameter<double>("sigmaIetaMax");
141  int sigmaIetaBin = parameters_.getParameter<int>("sigmaIetaBin");
142 
143  double eOverPMin = parameters_.getParameter<double>("eOverPMin");
144  double eOverPMax = parameters_.getParameter<double>("eOverPMax");
145  int eOverPBin = parameters_.getParameter<int>("eOverPBin");
146 
147  double chi2Min = parameters_.getParameter<double>("chi2Min");
148  double chi2Max = parameters_.getParameter<double>("chi2Max");
149  int chi2Bin = parameters_.getParameter<int>("chi2Bin");
150 
151 
152  int reducedEtBin = etBin/4;
153  int reducedEtaBin = etaBin/4;
154  int reducedSumBin = sumBin/4;
155  int reducedR9Bin = r9Bin/4;
156 
157 
158  parts_.push_back("AllEcal");
159  parts_.push_back("Barrel");
160  parts_.push_back("Endcaps");
161 
162  types_.push_back("All");
163  types_.push_back("GoodCandidate");
164  if (!excludeBkgHistos_) types_.push_back("Background");
165 
166 
167 
169 
170  if (dbe_) {
171 
172  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer");
173 
174  //int values stored in MEs to keep track of how many histograms are in each folder
175  totalNumberOfHistos_efficiencyFolder = dbe_->bookInt("numberOfHistogramsInEfficiencyFolder");
176  totalNumberOfHistos_photonsFolder = dbe_->bookInt("numberOfHistogramsInPhotonsFolder");
177  totalNumberOfHistos_conversionsFolder = dbe_->bookInt("numberOfHistogramsInConversionsFolder");
178  totalNumberOfHistos_invMassFolder = dbe_->bookInt("numberOfHistogramsInInvMassFolder");
179 
180 
181  //Efficiency histograms
182 
183  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer/Efficiencies");
184 
185  //don't number these histograms with the "bookHisto" method, since they'll be erased in the offline client
186  h_phoEta_Loose_ = dbe_->book1D("phoEtaLoose","Loose Photon #eta",etaBin,etaMin,etaMax);
187  h_phoEta_Tight_ = dbe_->book1D("phoEtaTight","Tight Photon #eta",etaBin,etaMin,etaMax);
188  h_phoEt_Loose_ = dbe_->book1D("phoEtLoose", "Loose Photon E_{T}",etBin,etMin,etMax);
189  h_phoEt_Tight_ = dbe_->book1D("phoEtTight", "Tight Photon E_{T}",etBin,etMin,etMax);
190 
191 
192  h_phoEta_preHLT_ = dbe_->book1D("phoEtaPreHLT", "Photon #eta: before HLT",etaBin,etaMin,etaMax);
193  h_phoEta_postHLT_ = dbe_->book1D("phoEtaPostHLT","Photon #eta: after HLT",etaBin,etaMin,etaMax);
194  h_phoEt_preHLT_ = dbe_->book1D("phoEtPreHLT", "Photon E_{T}: before HLT",etBin,etMin,etMax);
195  h_phoEt_postHLT_ = dbe_->book1D("phoEtPostHLT", "Photon E_{T}: after HLT",etBin,etMin,etMax);
196 
197  h_convEta_Loose_ = dbe_->book1D("convEtaLoose","Converted Loose Photon #eta",etaBin,etaMin,etaMax);
198  h_convEta_Tight_ = dbe_->book1D("convEtaTight","Converted Tight Photon #eta",etaBin,etaMin,etaMax);
199  h_convEt_Loose_ = dbe_->book1D("convEtLoose", "Converted Loose Photon E_{T}",etBin,etMin,etMax);
200  h_convEt_Tight_ = dbe_->book1D("convEtTight", "Converted Tight Photon E_{T}",etBin,etMin,etMax);
201 
202  h_phoEta_Vertex_ = dbe_->book1D("phoEtaVertex","Converted Photons before valid vertex cut: #eta",etaBin,etaMin,etaMax);
203 
204 
205  vector<MonitorElement*> temp1DVectorEta;
206  vector<MonitorElement*> temp1DVectorPhi;
207  vector<vector<MonitorElement*> > temp2DVectorPhi;
208 
209 
210  for(int cut = 0; cut != numberOfSteps_; ++cut){ //looping over Et cut values
211  for(uint type=0;type!=types_.size();++type){ //looping over isolation type
212  currentFolder_.str("");
213  currentFolder_ << "Egamma/PhotonAnalyzer/" << types_[type] << "Photons/Et above " << (cut+1)*cutStep_ << " GeV/Conversions";
214  dbe_->setCurrentFolder(currentFolder_.str());
215 
216  temp1DVectorEta.push_back(dbe_->book1D("phoConvEtaForEfficiency","Converted Photon #eta;#eta",etaBin,etaMin,etaMax));
217  for(uint part=0;part!=parts_.size();++part){
218  temp1DVectorPhi.push_back(dbe_->book1D("phoConvPhiForEfficiency"+parts_[part],"Converted Photon #phi;#phi",phiBin,phiMin,phiMax));
219  }
220  temp2DVectorPhi.push_back(temp1DVectorPhi);
221  temp1DVectorPhi.clear();
222  }
223  h_phoConvEtaForEfficiency_.push_back(temp1DVectorEta);
224  temp1DVectorEta.clear();
225  h_phoConvPhiForEfficiency_.push_back(temp2DVectorPhi);
226  temp2DVectorPhi.clear();
227  }
228 
229 
230 
231 
232  //Invariant mass plots
233 
234  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer/InvMass");
235 
236  h_invMassAllPhotons_ = bookHisto("invMassAllIsolatedPhotons","Two photon invariant mass: All isolated photons;M (GeV)",etBin,etMin,etMax);
237  h_invMassPhotonsEBarrel_ = bookHisto("invMassIsoPhotonsEBarrel", "Two photon invariant mass: isolated photons in barrel; M (GeV)",etBin,etMin,etMax);
238  h_invMassPhotonsEEndcap_ = bookHisto("invMassIsoPhotonsEEndcap", "Two photon invariant mass: isolated photons in endcap; M (GeV)",etBin,etMin,etMax);
239 
240  h_invMassZeroWithTracks_= bookHisto("invMassZeroWithTracks", "Two photon invariant mass: Neither has tracks;M (GeV)", etBin,etMin,etMax);
241  h_invMassOneWithTracks_ = bookHisto("invMassOneWithTracks", "Two photon invariant mass: Only one has tracks;M (GeV)", etBin,etMin,etMax);
242  h_invMassTwoWithTracks_ = bookHisto("invMassTwoWithTracks", "Two photon invariant mass: Both have tracks;M (GeV)", etBin,etMin,etMax);
243 
244 
246 
247  //ENERGY VARIABLES
248 
249  book3DHistoVector(h_phoE_, "1D","phoE","Energy;E (GeV)",eBin,eMin,eMax);
250  book3DHistoVector(h_phoEt_, "1D","phoEt","E_{T};E_{T} (GeV)", etBin,etMin,etMax);
251 
252  //NUMBER OF PHOTONS
253 
254  book3DHistoVector(h_nPho_, "1D","nPho","Number of Photons per Event;# #gamma",numberBin,numberMin,numberMax);
255 
256  //GEOMETRICAL VARIABLES
257 
258  //photon eta/phi
259  book2DHistoVector(h_phoEta_, "1D","phoEta","#eta;#eta",etaBin,etaMin,etaMax) ;
260  book3DHistoVector(h_phoPhi_, "1D","phoPhi","#phi;#phi",phiBin,phiMin,phiMax) ;
261 
262  //supercluster eta/phi
263  book2DHistoVector(h_scEta_, "1D","scEta","SuperCluster #eta;#eta",etaBin,etaMin,etaMax) ;
264  book3DHistoVector(h_scPhi_, "1D","scPhi","SuperCluster #phi;#phi",phiBin,phiMin,phiMax) ;
265 
266  //SHOWER SHAPE VARIABLES
267 
268  //r9
269  book3DHistoVector(h_r9_, "1D","r9","R9;R9",r9Bin,r9Min, r9Max);
270  book2DHistoVector(h_r9VsEt_, "2D","r9VsEt2D","R9 vs E_{T};E_{T} (GeV);R9",reducedEtBin,etMin,etMax,reducedR9Bin,r9Min,r9Max);
271  book2DHistoVector(p_r9VsEt_, "Profile","r9VsEt","Avg R9 vs E_{T};E_{T} (GeV);R9",etBin,etMin,etMax,r9Bin,r9Min,r9Max);
272  book2DHistoVector(h_r9VsEta_, "2D","r9VsEta2D","R9 vs #eta;#eta;R9",reducedEtaBin,etaMin,etaMax,reducedR9Bin,r9Min,r9Max);
273  book2DHistoVector(p_r9VsEta_, "Profile","r9VsEta","Avg R9 vs #eta;#eta;R9",etaBin,etaMin,etaMax,r9Bin,r9Min,r9Max);
274 
275  //sigma ieta ieta
276  book3DHistoVector(h_phoSigmaIetaIeta_, "1D","phoSigmaIetaIeta","#sigma_{i#etai#eta};#sigma_{i#etai#eta}",sigmaIetaBin,sigmaIetaMin,sigmaIetaMax);
277  book2DHistoVector(h_sigmaIetaIetaVsEta_, "2D","sigmaIetaIetaVsEta2D","#sigma_{i#etai#eta} vs #eta;#eta;#sigma_{i#etai#eta}",reducedEtaBin,etaMin,etaMax,sigmaIetaBin,sigmaIetaMin,sigmaIetaMax);
278  book2DHistoVector(p_sigmaIetaIetaVsEta_, "Profile","sigmaIetaIetaVsEta","Avg #sigma_{i#etai#eta} vs #eta;#eta;#sigma_{i#etai#eta}",etaBin,etaMin,etaMax,sigmaIetaBin,sigmaIetaMin,sigmaIetaMax);
279 
280  //e1x5
281  book2DHistoVector(h_e1x5VsEt_, "2D","e1x5VsEt2D","E1x5 vs E_{T};E_{T} (GeV);E1X5 (GeV)",reducedEtBin,etMin,etMax,reducedEtBin,etMin,etMax);
282  book2DHistoVector(p_e1x5VsEt_, "Profile","e1x5VsEt","Avg E1x5 vs E_{T};E_{T} (GeV);E1X5 (GeV)",etBin,etMin,etMax,etBin,etMin,etMax);
283  book2DHistoVector(h_e1x5VsEta_, "2D","e1x5VsEta2D","E1x5 vs #eta;#eta;E1X5 (GeV)",reducedEtaBin,etaMin,etaMax,reducedEtBin,etMin,etMax);
284  book2DHistoVector(p_e1x5VsEta_, "Profile","e1x5VsEta","Avg E1x5 vs #eta;#eta;E1X5 (GeV)",etaBin,etaMin,etaMax,etBin,etMin,etMax);
285 
286  //e2x5
287  book2DHistoVector(h_e2x5VsEt_, "2D","e2x5VsEt2D","E2x5 vs E_{T};E_{T} (GeV);E2X5 (GeV)",reducedEtBin,etMin,etMax,reducedEtBin,etMin,etMax);
288  book2DHistoVector(p_e2x5VsEt_, "Profile","e2x5VsEt","Avg E2x5 vs E_{T};E_{T} (GeV);E2X5 (GeV)",etBin,etMin,etMax,etBin,etMin,etMax);
289  book2DHistoVector(h_e2x5VsEta_, "2D","e2x5VsEta2D","E2x5 vs #eta;#eta;E2X5 (GeV)",reducedEtaBin,etaMin,etaMax,reducedEtBin,etMin,etMax);
290  book2DHistoVector(p_e2x5VsEta_, "Profile","e2x5VsEta","Avg E2x5 vs #eta;#eta;E2X5 (GeV)",etaBin,etaMin,etaMax,etBin,etMin,etMax);
291 
292  //r1x5
293  book2DHistoVector(h_r1x5VsEt_, "2D","r1x5VsEt2D","R1x5 vs E_{T};E_{T} (GeV);R1X5",reducedEtBin,etMin,etMax,reducedR9Bin,r9Min,r9Max);
294  book2DHistoVector(p_r1x5VsEt_, "Profile","r1x5VsEt","Avg R1x5 vs E_{T};E_{T} (GeV);R1X5",etBin,etMin,etMax,r9Bin,r9Min,r9Max);
295  book2DHistoVector(h_r1x5VsEta_, "2D","r1x5VsEta2D","R1x5 vs #eta;#eta;R1X5",reducedEtaBin,etaMin,etaMax,reducedR9Bin,r9Min,r9Max);
296  book2DHistoVector(p_r1x5VsEta_, "Profile","r1x5VsEta","Avg R1x5 vs #eta;#eta;R1X5",etaBin,etaMin,etaMax,r9Bin,r9Min,r9Max);
297 
298  //r2x5
299  book2DHistoVector( h_r2x5VsEt_ ,"2D","r2x5VsEt2D","R2x5 vs E_{T};E_{T} (GeV);R2X5",reducedEtBin,etMin,etMax,reducedR9Bin,r9Min,r9Max);
300  book2DHistoVector( p_r2x5VsEt_ ,"Profile","r2x5VsEt","Avg R2x5 vs E_{T};E_{T} (GeV);R2X5",etBin,etMin,etMax,r9Bin,r9Min,r9Max);
301  book2DHistoVector( h_r2x5VsEta_ ,"2D","r2x5VsEta2D","R2x5 vs #eta;#eta;R2X5",reducedEtaBin,etaMin,etaMax,reducedR9Bin,r9Min,r9Max);
302  book2DHistoVector( p_r2x5VsEta_ ,"Profile","r2x5VsEta","Avg R2x5 vs #eta;#eta;R2X5",etaBin,etaMin,etaMax,r9Bin,r9Min,r9Max);
303 
304  //maxEXtalOver3x3
305  book2DHistoVector( h_maxEXtalOver3x3VsEt_ ,"2D","maxEXtalOver3x3VsEt2D","(Max Xtal E)/E3x3 vs E_{T};E_{T} (GeV);(Max Xtal E)/E3x3",reducedEtBin,etMin,etMax,r9Bin,r9Min,r9Max);
306  book2DHistoVector( p_maxEXtalOver3x3VsEt_ ,"Profile","maxEXtalOver3x3VsEt","Avg (Max Xtal E)/E3x3 vs E_{T};E_{T} (GeV);(Max Xtal E)/E3x3",etBin,etMin,etMax,r9Bin,r9Min,r9Max);
307  book2DHistoVector( h_maxEXtalOver3x3VsEta_ ,"2D","maxEXtalOver3x3VsEta2D","(Max Xtal E)/E3x3 vs #eta;#eta;(Max Xtal E)/E3x3",reducedEtaBin,etaMin,etaMax,r9Bin,r9Min,r9Max);
308  book2DHistoVector( p_maxEXtalOver3x3VsEta_ ,"Profile","maxEXtalOver3x3VsEta","Avg (Max Xtal E)/E3x3 vs #eta;#eta;(Max Xtal E)/E3x3",etaBin,etaMin,etaMax,r9Bin,r9Min,r9Max);
309 
310 
311  //TRACK ISOLATION VARIABLES
312 
313  //nTrackIsolSolid
314  book2DHistoVector( h_nTrackIsolSolid_ ,"1D","nIsoTracksSolid","Number Of Tracks in the Solid Iso Cone;# tracks",numberBin,numberMin,numberMax);
315  book2DHistoVector( h_nTrackIsolSolidVsEt_ ,"2D","nIsoTracksSolidVsEt2D","Number Of Tracks in the Solid Iso Cone vs E_{T};E_{T};# tracks",reducedEtBin,etMin, etMax,numberBin,numberMin,numberMax);
316  book2DHistoVector( p_nTrackIsolSolidVsEt_ ,"Profile","nIsoTracksSolidVsEt","Avg Number Of Tracks in the Solid Iso Cone vs E_{T};E_{T};# tracks",etBin,etMin,etMax,numberBin,numberMin,numberMax);
317  book2DHistoVector( h_nTrackIsolSolidVsEta_ ,"2D","nIsoTracksSolidVsEta2D","Number Of Tracks in the Solid Iso Cone vs #eta;#eta;# tracks",reducedEtaBin,etaMin, etaMax,numberBin,numberMin,numberMax);
318  book2DHistoVector( p_nTrackIsolSolidVsEta_ ,"Profile","nIsoTracksSolidVsEta","Avg Number Of Tracks in the Solid Iso Cone vs #eta;#eta;# tracks",etaBin,etaMin, etaMax,numberBin,numberMin,numberMax);
319 
320  //nTrackIsolHollow
321  book2DHistoVector( h_nTrackIsolHollow_ ,"1D","nIsoTracksHollow","Number Of Tracks in the Hollow Iso Cone;# tracks",numberBin,numberMin,numberMax);
322  book2DHistoVector( h_nTrackIsolHollowVsEt_ ,"2D","nIsoTracksHollowVsEt2D","Number Of Tracks in the Hollow Iso Cone vs E_{T};E_{T};# tracks",reducedEtBin,etMin, etMax,numberBin,numberMin,numberMax);
323  book2DHistoVector( p_nTrackIsolHollowVsEt_ ,"Profile","nIsoTracksHollowVsEt","Avg Number Of Tracks in the Hollow Iso Cone vs E_{T};E_{T};# tracks",etBin,etMin,etMax,numberBin,numberMin,numberMax);
324  book2DHistoVector( h_nTrackIsolHollowVsEta_ ,"2D","nIsoTracksHollowVsEta2D","Number Of Tracks in the Hollow Iso Cone vs #eta;#eta;# tracks",reducedEtaBin,etaMin, etaMax,numberBin,numberMin,numberMax);
325  book2DHistoVector( p_nTrackIsolHollowVsEta_ ,"Profile","nIsoTracksHollowVsEta","Avg Number Of Tracks in the Hollow Iso Cone vs #eta;#eta;# tracks",etaBin,etaMin, etaMax,numberBin,numberMin,numberMax);
326 
327  //trackPtSumSolid
328  book2DHistoVector( h_trackPtSumSolid_ ,"1D","isoPtSumSolid","Track P_{T} Sum in the Solid Iso Cone;P_{T} (GeV)",sumBin,sumMin,sumMax);
329  book2DHistoVector( h_trackPtSumSolidVsEt_ ,"2D","isoPtSumSolidVsEt2D","Track P_{T} Sum in the Solid Iso Cone;E_{T} (GeV);P_{T} (GeV)",reducedEtBin,etMin, etMax,reducedSumBin,sumMin,sumMax);
330  book2DHistoVector( p_trackPtSumSolidVsEt_ ,"Profile","isoPtSumSolidVsEt","Avg Track P_{T} Sum in the Solid Iso Cone vs E_{T};E_{T} (GeV);P_{T} (GeV)",etBin,etMin,etMax,sumBin,sumMin,sumMax);
331  book2DHistoVector( h_trackPtSumSolidVsEta_ ,"2D","isoPtSumSolidVsEta2D","Track P_{T} Sum in the Solid Iso Cone;#eta;P_{T} (GeV)",reducedEtaBin,etaMin, etaMax,reducedSumBin,sumMin,sumMax);
332  book2DHistoVector( p_trackPtSumSolidVsEta_ ,"Profile","isoPtSumSolidVsEta","Avg Track P_{T} Sum in the Solid Iso Cone vs #eta;#eta;P_{T} (GeV)",etaBin,etaMin, etaMax,sumBin,sumMin,sumMax);
333 
334  //trackPtSumHollow
335  book2DHistoVector( h_trackPtSumHollow_ ,"1D","isoPtSumHollow","Track P_{T} Sum in the Hollow Iso Cone;P_{T} (GeV)",sumBin,sumMin,sumMax);
336  book2DHistoVector( h_trackPtSumHollowVsEt_ ,"2D","isoPtSumHollowVsEt2D","Track P_{T} Sum in the Hollow Iso Cone;E_{T} (GeV);P_{T} (GeV)",reducedEtBin,etMin, etMax,reducedSumBin,sumMin,sumMax);
337  book2DHistoVector( p_trackPtSumHollowVsEt_ ,"Profile","isoPtSumHollowVsEt","Avg Track P_{T} Sum in the Hollow Iso Cone vs E_{T};E_{T} (GeV);P_{T} (GeV)",etBin,etMin,etMax,sumBin,sumMin,sumMax);
338  book2DHistoVector( h_trackPtSumHollowVsEta_ ,"2D","isoPtSumHollowVsEta2D","Track P_{T} Sum in the Hollow Iso Cone;#eta;P_{T} (GeV)",reducedEtaBin,etaMin, etaMax,reducedSumBin,sumMin,sumMax);
339  book2DHistoVector( p_trackPtSumHollowVsEta_ ,"Profile","isoPtSumHollowVsEta","Avg Track P_{T} Sum in the Hollow Iso Cone vs #eta;#eta;P_{T} (GeV)",etaBin,etaMin, etaMax,sumBin,sumMin,sumMax);
340 
341 
342  //CALORIMETER ISOLATION VARIABLES
343 
344  //ecal sum
345  book2DHistoVector( h_ecalSum_ ,"1D","ecalSum","Ecal Sum in the Iso Cone;E (GeV)",sumBin,sumMin,sumMax);
346  book2DHistoVector( h_ecalSumEBarrel_,"1D","ecalSumEBarrel","Ecal Sum in the IsoCone for Barrel;E (GeV)",sumBin,sumMin,sumMax);
347  book2DHistoVector( h_ecalSumEEndcap_,"1D","ecalSumEEndcap","Ecal Sum in the IsoCone for Endcap;E (GeV)",sumBin,sumMin,sumMax);
348  book2DHistoVector( h_ecalSumVsEt_ ,"2D","ecalSumVsEt2D","Ecal Sum in the Iso Cone;E_{T} (GeV);E (GeV)",reducedEtBin,etMin, etMax,reducedSumBin,sumMin,sumMax);
349  book3DHistoVector( p_ecalSumVsEt_ ,"Profile","ecalSumVsEt","Avg Ecal Sum in the Iso Cone vs E_{T};E_{T} (GeV);E (GeV)",etBin,etMin, etMax,sumBin,sumMin,sumMax);
350  book2DHistoVector( h_ecalSumVsEta_ ,"2D","ecalSumVsEta2D","Ecal Sum in the Iso Cone;#eta;E (GeV)",reducedEtaBin,etaMin, etaMax,reducedSumBin,sumMin,sumMax);
351  book2DHistoVector( p_ecalSumVsEta_ ,"Profile","ecalSumVsEta","Avg Ecal Sum in the Iso Cone vs #eta;#eta;E (GeV)",etaBin,etaMin, etaMax,sumBin,sumMin,sumMax);
352 
353  //hcal sum
354  book2DHistoVector( h_hcalSum_ ,"1D","hcalSum","Hcal Sum in the Iso Cone;E (GeV)",sumBin,sumMin,sumMax);
355  book2DHistoVector( h_hcalSumEBarrel_,"1D","hcalSumEBarrel","Hcal Sum in the IsoCone for Barrel;E (GeV)",sumBin,sumMin,sumMax);
356  book2DHistoVector( h_hcalSumEEndcap_,"1D","hcalSumEEndcap","Hcal Sum in the IsoCone for Endcap;E (GeV)",sumBin,sumMin,sumMax);
357  book2DHistoVector( h_hcalSumVsEt_ ,"2D","hcalSumVsEt2D","Hcal Sum in the Iso Cone;E_{T} (GeV);E (GeV)",reducedEtBin,etMin, etMax,reducedSumBin,sumMin,sumMax);
358  book3DHistoVector( p_hcalSumVsEt_ ,"Profile","hcalSumVsEt","Avg Hcal Sum in the Iso Cone vs E_{T};E_{T} (GeV);E (GeV)",etBin,etMin, etMax,sumBin,sumMin,sumMax);
359  book2DHistoVector( h_hcalSumVsEta_ ,"2D","hcalSumVsEta2D","Hcal Sum in the Iso Cone;#eta;E (GeV)",reducedEtaBin,etaMin, etaMax,reducedSumBin,sumMin,sumMax);
360  book2DHistoVector( p_hcalSumVsEta_ ,"Profile","hcalSumVsEta","Avg Hcal Sum in the Iso Cone vs #eta;#eta;E (GeV)",etaBin,etaMin, etaMax,sumBin,sumMin,sumMax);
361 
362  //h over e
363  book3DHistoVector( h_hOverE_ ,"1D","hOverE","H/E;H/E",hOverEBin,hOverEMin,hOverEMax);
364  book2DHistoVector( p_hOverEVsEt_ ,"Profile","hOverEVsEt","Avg H/E vs Et;E_{T} (GeV);H/E",etBin,etMin,etMax,hOverEBin,hOverEMin,hOverEMax);
365  book2DHistoVector( p_hOverEVsEta_ ,"Profile","hOverEVsEta","Avg H/E vs #eta;#eta;H/E",etaBin,etaMin,etaMax,hOverEBin,hOverEMin,hOverEMax);
366  book3DHistoVector( h_h1OverE_ ,"1D","h1OverE","H/E for Depth 1;H/E",hOverEBin,hOverEMin,hOverEMax);
367  book3DHistoVector( h_h2OverE_ ,"1D","h2OverE","H/E for Depth 2;H/E",hOverEBin,hOverEMin,hOverEMax);
368 
369 
370  //OTHER VARIABLES
371 
372  //bad channel histograms
373  book2DHistoVector( h_phoEt_BadChannels_ ,"1D","phoEtBadChannels", "Fraction Containing Bad Channels: E_{T};E_{T} (GeV)",etBin,etMin,etMax);
374  book2DHistoVector( h_phoEta_BadChannels_ ,"1D","phoEtaBadChannels","Fraction Containing Bad Channels: #eta;#eta",etaBin,etaMin,etaMax);
375  book2DHistoVector( h_phoPhi_BadChannels_ ,"1D","phoPhiBadChannels","Fraction Containing Bad Channels: #phi;#phi",phiBin,phiMin,phiMax);
376 
377 
379 
380  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer/AllPhotons/Et Above 0 GeV/Conversions");
381 
382  //ENERGY VARIABLES
383 
384  book3DHistoVector( h_phoConvE_ ,"1D","phoConvE","E;E (GeV)",eBin,eMin,eMax);
385  book3DHistoVector( h_phoConvEt_ ,"1D","phoConvEt","E_{T};E_{T} (GeV)",etBin,etMin,etMax);
386 
387  //GEOMETRICAL VARIABLES
388 
389  book2DHistoVector( h_phoConvEta_ ,"1D","phoConvEta","#eta;#eta",etaBin,etaMin,etaMax);
390  book3DHistoVector( h_phoConvPhi_ ,"1D","phoConvPhi","#phi;#phi",phiBin,phiMin,phiMax);
391 
392  //NUMBER OF PHOTONS
393 
394  book3DHistoVector( h_nConv_ ,"1D","nConv","Number Of Conversions per Event ;# conversions",numberBin,numberMin,numberMax);
395 
396  //SHOWER SHAPE VARIABLES
397 
398  book3DHistoVector( h_phoConvR9_ ,"1D","phoConvR9","R9;R9",r9Bin,r9Min,r9Max);
399 
400  //TRACK RELATED VARIABLES
401 
402  book3DHistoVector( h_eOverPTracks_ ,"1D","eOverPTracks","E/P;E/P",eOverPBin,eOverPMin,eOverPMax);
403  book3DHistoVector( h_pOverETracks_ ,"1D","pOverETracks","P/E;P/E",eOverPBin,eOverPMin,eOverPMax);
404 
405  book3DHistoVector( h_dPhiTracksAtVtx_ ,"1D","dPhiTracksAtVtx", "#Delta#phi of Tracks at Vertex;#Delta#phi",dPhiTracksBin,dPhiTracksMin,dPhiTracksMax);
406  book3DHistoVector( h_dPhiTracksAtEcal_ ,"1D","dPhiTracksAtEcal", "Abs(#Delta#phi) of Tracks at Ecal;#Delta#phi",dPhiTracksBin,0.,dPhiTracksMax);
407  book3DHistoVector( h_dEtaTracksAtEcal_ ,"1D","dEtaTracksAtEcal", "#Delta#eta of Tracks at Ecal;#Delta#eta",dEtaTracksBin,dEtaTracksMin,dEtaTracksMax);
408 
409  book3DHistoVector( h_dCotTracks_ ,"1D","dCotTracks","#Deltacot(#theta) of Tracks;#Deltacot(#theta)",dEtaTracksBin,dEtaTracksMin,dEtaTracksMax);
410  book2DHistoVector( p_dCotTracksVsEta_ ,"Profile","dCotTracksVsEta","Avg #Deltacot(#theta) of Tracks vs #eta;#eta;#Deltacot(#theta)",etaBin,etaMin,etaMax,dEtaTracksBin,dEtaTracksMin,dEtaTracksMax);
411 
412  book2DHistoVector( p_nHitsVsEta_ ,"Profile","nHitsVsEta","Avg Number of Hits per Track vs #eta;#eta;# hits",etaBin,etaMin,etaMax,etaBin,0,16);
413 
414  book2DHistoVector( h_tkChi2_ ,"1D","tkChi2","#chi^{2} of Track Fitting;#chi^{2}",chi2Bin,chi2Min,chi2Max);
415  book2DHistoVector( p_tkChi2VsEta_ ,"Profile","tkChi2VsEta","Avg #chi^{2} of Track Fitting vs #eta;#eta;#chi^{2}",etaBin,etaMin,etaMax,chi2Bin,chi2Min,chi2Max);
416 
417  //VERTEX RELATED VARIABLES
418 
419  book2DHistoVector( h_convVtxRvsZ_ ,"2D","convVtxRvsZ","Vertex Position;Z (cm);R (cm)",500,zMin,zMax,rBin,rMin,rMax);
420  book2DHistoVector( h_convVtxZEndcap_ ,"1D","convVtxZEndcap", "Vertex Position: #eta > 1.5;Z (cm)",zBin,zMin,zMax);
421  book2DHistoVector( h_convVtxZ_ ,"1D","convVtxZ", "Vertex Position;Z (cm)",zBin,zMin,zMax);
422  book2DHistoVector( h_convVtxR_ ,"1D","convVtxR", "Vertex Position: #eta < 1;R (cm)",rBin,rMin,rMax);
423  book2DHistoVector( h_convVtxYvsX_ ,"2D","convVtxYvsX","Vertex Position: #eta < 1;X (cm);Y (cm)",xBin,xMin,xMax,yBin,yMin,yMax);
424 
425 
426 
427  book2DHistoVector( h_vertexChi2Prob_ ,"1D","vertexChi2Prob","#chi^{2} Probability of Vertex Fitting;#chi^{2}",100,0.,1.0);
428 
429 
430  }//end if(dbe_)
431 
432 
433 }//end BeginJob
434 
435 
436 
438 {
439  using namespace edm;
440 
441  if (nEvt_% prescaleFactor_ ) return;
442  nEvt_++;
443  LogInfo("PhotonAnalyzer") << "PhotonAnalyzer Analyzing event number: " << e.id() << " Global Counter " << nEvt_ <<"\n";
444 
445  // Get the trigger results
446  bool validTriggerEvent=true;
447  edm::Handle<trigger::TriggerEvent> triggerEventHandle;
448  trigger::TriggerEvent triggerEvent;
449  e.getByToken(triggerEvent_token_,triggerEventHandle);
450  if(!triggerEventHandle.isValid()) {
451  edm::LogInfo("PhotonAnalyzer") << "Error! Can't get the product: triggerEvent_" << endl;
452  validTriggerEvent=false;
453  }
454  if(validTriggerEvent) triggerEvent = *(triggerEventHandle.product());
455 
456  // Get the reconstructed photons
457  bool validPhotons=true;
458  Handle<reco::PhotonCollection> photonHandle;
459  reco::PhotonCollection photonCollection;
460  e.getByToken(photon_token_ , photonHandle);
461  if ( !photonHandle.isValid()) {
462  edm::LogInfo("PhotonAnalyzer") << "Error! Can't get the product: photon_token_" << endl;
463  validPhotons=false;
464  }
465  if(validPhotons) photonCollection = *(photonHandle.product());
466 
467  // Get the PhotonId objects
468  bool validloosePhotonID=true;
469  Handle<edm::ValueMap<bool> > loosePhotonFlag;
470  edm::ValueMap<bool> loosePhotonID;
471  e.getByToken(PhotonIDLoose_token_, loosePhotonFlag);
472  if ( !loosePhotonFlag.isValid()) {
473  edm::LogInfo("PhotonAnalyzer") << "Error! Can't get the product: PhotonIDLoose_token_" << endl;
474  validloosePhotonID=false;
475  }
476  if (validloosePhotonID) loosePhotonID = *(loosePhotonFlag.product());
477 
478  bool validtightPhotonID=true;
479  Handle<edm::ValueMap<bool> > tightPhotonFlag;
480  edm::ValueMap<bool> tightPhotonID;
481  e.getByToken(PhotonIDTight_token_, tightPhotonFlag);
482  if ( !tightPhotonFlag.isValid()) {
483  edm::LogInfo("PhotonAnalyzer") << "Error! Can't get the product: PhotonIDTight_token_" << endl;
484  validtightPhotonID=false;
485  }
486  if (validtightPhotonID) tightPhotonID = *(tightPhotonFlag.product());
487 
488 
489 
490  // Create array to hold #photons/event information
491  int nPho[100][3][3];
492 
493  for (int cut=0; cut!=100; ++cut){
494  for (unsigned int type=0; type!=types_.size(); ++type){
495  for (unsigned int part=0; part!=parts_.size(); ++part){
496  nPho[cut][type][part] = 0;
497  }
498  }
499  }
500  // Create array to hold #conversions/event information
501  int nConv[100][3][3];
502 
503  for (int cut=0; cut!=100; ++cut){
504  for (unsigned int type=0; type!=types_.size(); ++type){
505  for (unsigned int part=0; part!=parts_.size(); ++part){
506  nConv[cut][type][part] = 0;
507  }
508  }
509  }
510 
511 
512 
513  //Prepare list of photon-related HLT filter names
514 
515  vector<int> Keys;
516 
517  for(uint filterIndex=0;filterIndex<triggerEvent.sizeFilters();++filterIndex){ //loop over all trigger filters in event (i.e. filters passed)
518 
519  string label = triggerEvent.filterTag(filterIndex).label();
520 
521  if(label.find( "Photon" ) != string::npos ) { //get photon-related filters
522 
523  for(uint filterKeyIndex=0;filterKeyIndex<triggerEvent.filterKeys(filterIndex).size();++filterKeyIndex){ //loop over keys to objects passing this filter
524  Keys.push_back(triggerEvent.filterKeys(filterIndex)[filterKeyIndex]); //add keys to a vector for later reference
525  }
526 
527  }
528 
529  }
530 
531  // sort Keys vector in ascending order
532  // and erases duplicate entries from the vector
533  sort(Keys.begin(),Keys.end());
534  for ( uint i=0 ; i<Keys.size() ; )
535  {
536  if (i!=(Keys.size()-1))
537  {
538  if (Keys[i]==Keys[i+1]) Keys.erase(Keys.begin()+i+1) ;
539  else ++i ;
540  }
541  else ++i ;
542  }
543 
544  //We now have a vector of unique keys to TriggerObjects passing a photon-related filter
545 
546  int photonCounter = 0;
547 
549 
550  for( reco::PhotonCollection::const_iterator iPho = photonCollection.begin(); iPho != photonCollection.end(); iPho++) {
551 
552 
553  //for HLT efficiency plots
554 
555  h_phoEta_preHLT_->Fill((*iPho).eta());
556  h_phoEt_preHLT_->Fill( (*iPho).et());
557 
558 
559  double deltaR=1000.;
560  double deltaRMin=1000.;
561  double deltaRMax=0.05;//sets deltaR threshold for matching photons to trigger objects
562 
563 
564  for (vector<int>::const_iterator objectKey=Keys.begin();objectKey!=Keys.end();objectKey++){ //loop over keys to objects that fired photon triggers
565 
566  deltaR = reco::deltaR(triggerEvent.getObjects()[(*objectKey)].eta(),triggerEvent.getObjects()[(*objectKey)].phi(),(*iPho).superCluster()->eta(),(*iPho).superCluster()->phi());
567  if(deltaR < deltaRMin) deltaRMin = deltaR;
568 
569  }
570 
571  if(deltaRMin > deltaRMax) { //photon fails delta R cut
572  if(useTriggerFiltering_) continue; //throw away photons that haven't passed any photon filters
573  }
574 
575  if(deltaRMin <= deltaRMax) { //photon passes delta R cut
576  h_phoEta_postHLT_->Fill((*iPho).eta() );
577  h_phoEt_postHLT_->Fill( (*iPho).et() );
578  }
579 
580  if ((*iPho).et() < minPhoEtCut_) continue;
581 
582  nEntry_++;
583 
584  edm::Ref<reco::PhotonCollection> photonref(photonHandle, photonCounter);
585  photonCounter++;
586 
587  bool isLoosePhoton(false), isTightPhoton(false);
588  if ( !isHeavyIon_ ) {
589  isLoosePhoton = (loosePhotonID)[photonref];
590  isTightPhoton = (tightPhotonID)[photonref];
591  }
592 
593 
594  //find out which part of the Ecal contains the photon
595 
596  bool phoIsInBarrel=false;
597  bool phoIsInEndcap=false;
598  float etaPho = (*iPho).superCluster()->eta();
599  if ( fabs(etaPho) < 1.479 )
600  phoIsInBarrel=true;
601  else {
602  phoIsInEndcap=true;
603  }
604 
605  int part = 0;
606  if ( phoIsInBarrel ) part = 1;
607  if ( phoIsInEndcap ) part = 2;
608 
610  bool isIsolated=false;
611  if ( isolationStrength_ == 0) isIsolated = isLoosePhoton;
612  if ( isolationStrength_ == 1) isIsolated = isTightPhoton;
613 
614  int type=0;
615  if ( isIsolated ) type=1;
616  if ( !excludeBkgHistos_ && !isIsolated ) type=2;
617 
618 
619  //get rechit collection containing this photon
620  bool validEcalRecHits=true;
621  edm::Handle<EcalRecHitCollection> ecalRecHitHandle;
622  EcalRecHitCollection ecalRecHitCollection;
623  if ( phoIsInBarrel ) {
624  // Get handle to barrel rec hits
625  e.getByToken(barrelRecHit_token_, ecalRecHitHandle);
626  if (!ecalRecHitHandle.isValid()) {
627  edm::LogError("PhotonAnalyzer") << "Error! Can't get the product: barrelRecHit_token_";
628  validEcalRecHits=false;
629  }
630  }
631  else if ( phoIsInEndcap ) {
632  // Get handle to endcap rec hits
633  e.getByToken(endcapRecHit_token_, ecalRecHitHandle);
634  if (!ecalRecHitHandle.isValid()) {
635  edm::LogError("PhotonAnalyzer") << "Error! Can't get the product: endcapRecHit_token";
636  validEcalRecHits=false;
637  }
638  }
639  if (validEcalRecHits) ecalRecHitCollection = *(ecalRecHitHandle.product());
640 
641 
642  //if ((*iPho).isEBEEGap()) continue; //cut out gap photons
643 
644 
645  //filling histograms to make isolation efficiencies
646  if(isLoosePhoton){
647  h_phoEta_Loose_->Fill((*iPho).eta());
648  h_phoEt_Loose_->Fill( (*iPho).et() );
649  }
650  if(isTightPhoton){
651  h_phoEta_Tight_->Fill((*iPho).eta());
652  h_phoEt_Tight_->Fill( (*iPho).et() );
653  }
654 
655 
656 
657  for (int cut = 0; cut !=numberOfSteps_; ++cut) { //loop over different transverse energy cuts
658  double Et = (*iPho).et();
659  bool passesCuts = false;
660 
661  //sorting the photon into the right Et-dependant folder
662  if ( useBinning_ && Et > (cut+1)*cutStep_ && ( (Et < (cut+2)*cutStep_) | (cut == numberOfSteps_-1) ) ){
663  passesCuts = true;
664  }
665  else if ( !useBinning_ && Et > (cut+1)*cutStep_ ){
666  passesCuts = true;
667  }
668 
669  if (passesCuts){
670 
671  //filling isolation variable histograms
672 
673  //tracker isolation variables
674  fill2DHistoVector(h_nTrackIsolSolid_, (*iPho).nTrkSolidConeDR04(), cut,type);
675  fill2DHistoVector(h_nTrackIsolHollow_,(*iPho).nTrkHollowConeDR04(),cut,type);
676 
677  fill2DHistoVector(h_nTrackIsolSolidVsEta_, (*iPho).eta(),(*iPho).nTrkSolidConeDR04(), cut,type);
678  fill2DHistoVector(p_nTrackIsolSolidVsEta_, (*iPho).eta(),(*iPho).nTrkSolidConeDR04(), cut,type);
679  fill2DHistoVector(h_nTrackIsolHollowVsEta_,(*iPho).eta(),(*iPho).nTrkHollowConeDR04(),cut,type);
680  fill2DHistoVector(p_nTrackIsolHollowVsEta_,(*iPho).eta(),(*iPho).nTrkHollowConeDR04(),cut,type);
681 
682  fill2DHistoVector(h_nTrackIsolSolidVsEt_, (*iPho).et(), (*iPho).nTrkSolidConeDR04(), cut,type);
683  fill2DHistoVector(p_nTrackIsolSolidVsEt_, (*iPho).et(), (*iPho).nTrkSolidConeDR04(), cut,type);
684  fill2DHistoVector(h_nTrackIsolHollowVsEt_, (*iPho).et(), (*iPho).nTrkHollowConeDR04(),cut,type);
685  fill2DHistoVector(p_nTrackIsolHollowVsEt_, (*iPho).et(), (*iPho).nTrkHollowConeDR04(),cut,type);
686 
688  fill2DHistoVector(h_trackPtSumSolid_, (*iPho).trkSumPtSolidConeDR04(),cut,type);
689  fill2DHistoVector(h_trackPtSumHollow_,(*iPho).trkSumPtSolidConeDR04(),cut,type);
690 
691  fill2DHistoVector(h_trackPtSumSolidVsEta_, (*iPho).eta(),(*iPho).trkSumPtSolidConeDR04(), cut,type);
692  fill2DHistoVector(p_trackPtSumSolidVsEta_, (*iPho).eta(),(*iPho).trkSumPtSolidConeDR04(), cut,type);
693  fill2DHistoVector(h_trackPtSumHollowVsEta_,(*iPho).eta(),(*iPho).trkSumPtHollowConeDR04(),cut,type);
694  fill2DHistoVector(p_trackPtSumHollowVsEta_,(*iPho).eta(),(*iPho).trkSumPtHollowConeDR04(),cut,type);
695 
696  fill2DHistoVector(h_trackPtSumSolidVsEt_, (*iPho).et(), (*iPho).trkSumPtSolidConeDR04(), cut,type);
697  fill2DHistoVector(p_trackPtSumSolidVsEt_, (*iPho).et(), (*iPho).trkSumPtSolidConeDR04(), cut,type);
698  fill2DHistoVector(h_trackPtSumHollowVsEt_, (*iPho).et(), (*iPho).trkSumPtHollowConeDR04(),cut,type);
699  fill2DHistoVector(p_trackPtSumHollowVsEt_, (*iPho).et(), (*iPho).trkSumPtHollowConeDR04(),cut,type);
700  //calorimeter isolation variables
701 
702  fill2DHistoVector(h_ecalSum_,(*iPho).ecalRecHitSumEtConeDR04(),cut,type);
703  if(iPho->isEB()){fill2DHistoVector(h_ecalSumEBarrel_,(*iPho).ecalRecHitSumEtConeDR04(),cut,type);}
704  if(iPho->isEE()){fill2DHistoVector(h_ecalSumEEndcap_,(*iPho).ecalRecHitSumEtConeDR04(),cut,type);}
705  fill2DHistoVector(h_ecalSumVsEta_,(*iPho).eta(),(*iPho).ecalRecHitSumEtConeDR04(),cut,type);
706  fill2DHistoVector(p_ecalSumVsEta_,(*iPho).eta(),(*iPho).ecalRecHitSumEtConeDR04(),cut,type);
707  fill2DHistoVector(h_ecalSumVsEt_, (*iPho).et(), (*iPho).ecalRecHitSumEtConeDR04(),cut,type);
708  fill3DHistoVector(p_ecalSumVsEt_, (*iPho).et(), (*iPho).ecalRecHitSumEtConeDR04(),cut,type,part);
709 
711 
712  fill2DHistoVector(h_hcalSum_,(*iPho).hcalTowerSumEtConeDR04(),cut,type);
713  if(iPho->isEB()){fill2DHistoVector(h_hcalSumEBarrel_,(*iPho).hcalTowerSumEtConeDR04(),cut,type);}
714  if(iPho->isEE()){fill2DHistoVector(h_hcalSumEEndcap_,(*iPho).hcalTowerSumEtConeDR04(),cut,type);}
715  fill2DHistoVector(h_hcalSumVsEta_,(*iPho).eta(),(*iPho).hcalTowerSumEtConeDR04(),cut,type);
716  fill2DHistoVector(p_hcalSumVsEta_,(*iPho).eta(),(*iPho).hcalTowerSumEtConeDR04(),cut,type);
717  fill2DHistoVector(h_hcalSumVsEt_, (*iPho).et(), (*iPho).hcalTowerSumEtConeDR04(),cut,type);
718  fill3DHistoVector(p_hcalSumVsEt_, (*iPho).et(), (*iPho).hcalTowerSumEtConeDR04(),cut,type,part);
719 
720  fill3DHistoVector(h_hOverE_,(*iPho).hadronicOverEm(),cut,type,part);
721  fill2DHistoVector(p_hOverEVsEta_,(*iPho).eta(),(*iPho).hadronicOverEm(),cut,type);
722  fill2DHistoVector(p_hOverEVsEt_, (*iPho).et(), (*iPho).hadronicOverEm(),cut,type);
723 
724  fill3DHistoVector(h_h1OverE_,(*iPho).hadronicDepth1OverEm(),cut,type,part);
725  fill3DHistoVector(h_h2OverE_,(*iPho).hadronicDepth2OverEm(),cut,type,part);
726 
727  //filling photon histograms
728 
729  nPho[cut][0][0]++;
730  nPho[cut][0][part]++;
731  nPho[cut][type][0]++;
732  nPho[cut][type][part]++;
733 
734  //energy variables
735 
736  fill3DHistoVector(h_phoE_, (*iPho).energy(),cut,type,part);
737  fill3DHistoVector(h_phoEt_,(*iPho).et(), cut,type,part);
738 
739  //geometrical variables
740 
741  fill2DHistoVector(h_phoEta_,(*iPho).eta(),cut,type);
742  fill2DHistoVector(h_scEta_, (*iPho).superCluster()->eta(),cut,type);
743 
744  fill3DHistoVector(h_phoPhi_,(*iPho).phi(),cut,type,part);
745  fill3DHistoVector(h_scPhi_, (*iPho).superCluster()->phi(),cut,type,part);
746 
747  //shower shape variables
748 
749  fill3DHistoVector(h_r9_,(*iPho).r9(),cut,type,part);
750  fill2DHistoVector(h_r9VsEta_,(*iPho).eta(),(*iPho).r9(),cut,type);
751  fill2DHistoVector(p_r9VsEta_,(*iPho).eta(),(*iPho).r9(),cut,type);
752  fill2DHistoVector(h_r9VsEt_, (*iPho).et(), (*iPho).r9(),cut,type);
753  fill2DHistoVector(p_r9VsEt_, (*iPho).et(), (*iPho).r9(),cut,type);
754 
755  fill2DHistoVector(h_e1x5VsEta_,(*iPho).eta(),(*iPho).e1x5(),cut,type);
756  fill2DHistoVector(p_e1x5VsEta_,(*iPho).eta(),(*iPho).e1x5(),cut,type);
757  fill2DHistoVector(h_e1x5VsEt_, (*iPho).et(), (*iPho).e1x5(),cut,type);
758  fill2DHistoVector(p_e1x5VsEt_, (*iPho).et(), (*iPho).e1x5(),cut,type);
759 
760  fill2DHistoVector(h_e2x5VsEta_,(*iPho).eta(),(*iPho).e2x5(),cut,type);
761  fill2DHistoVector(p_e2x5VsEta_,(*iPho).eta(),(*iPho).e2x5(),cut,type);
762  fill2DHistoVector(h_e2x5VsEt_, (*iPho).et(), (*iPho).e2x5(),cut,type);
763  fill2DHistoVector(p_e2x5VsEt_, (*iPho).et(), (*iPho).e2x5(),cut,type);
764 
765  fill2DHistoVector(h_maxEXtalOver3x3VsEta_,(*iPho).eta(),(*iPho).maxEnergyXtal()/(*iPho).e3x3(),cut,type);
766  fill2DHistoVector(p_maxEXtalOver3x3VsEta_,(*iPho).eta(),(*iPho).maxEnergyXtal()/(*iPho).e3x3(),cut,type);
767  fill2DHistoVector(h_maxEXtalOver3x3VsEt_, (*iPho).et(), (*iPho).maxEnergyXtal()/(*iPho).e3x3(),cut,type);
768  fill2DHistoVector(p_maxEXtalOver3x3VsEt_, (*iPho).et(), (*iPho).maxEnergyXtal()/(*iPho).e3x3(),cut,type);
769 
770 
771  fill2DHistoVector(h_r1x5VsEta_,(*iPho).eta(),(*iPho).r1x5(),cut,type);
772  fill2DHistoVector(p_r1x5VsEta_,(*iPho).eta(),(*iPho).r1x5(),cut,type);
773  fill2DHistoVector(h_r1x5VsEt_, (*iPho).et(), (*iPho).r1x5(),cut,type);
774  fill2DHistoVector(p_r1x5VsEt_, (*iPho).et(), (*iPho).r1x5(),cut,type);
775 
776  fill2DHistoVector(h_r2x5VsEta_,(*iPho).eta(),(*iPho).r2x5(),cut,type);
777  fill2DHistoVector(p_r2x5VsEta_,(*iPho).eta(),(*iPho).r2x5(),cut,type);
778  fill2DHistoVector(h_r2x5VsEt_, (*iPho).et(), (*iPho).r2x5(),cut,type);
779  fill2DHistoVector(p_r2x5VsEt_, (*iPho).et(), (*iPho).r2x5(),cut,type);
780 
781  fill3DHistoVector(h_phoSigmaIetaIeta_,(*iPho).sigmaIetaIeta(),cut,type,part);
782  fill2DHistoVector(h_sigmaIetaIetaVsEta_,(*iPho).eta(),(*iPho).sigmaIetaIeta(),cut,type);
783  fill2DHistoVector(p_sigmaIetaIetaVsEta_,(*iPho).eta(),(*iPho).sigmaIetaIeta(),cut,type);
784 
785 
786 
787  //filling histograms for photons containing a bad ECAL channel
788 
789  bool atLeastOneDeadChannel=false;
790  for(reco::CaloCluster_iterator bcIt = (*iPho).superCluster()->clustersBegin();bcIt != (*iPho).superCluster()->clustersEnd(); ++bcIt) { //loop over basic clusters in SC
791  for(vector< pair<DetId, float> >::const_iterator rhIt = (*bcIt)->hitsAndFractions().begin();rhIt != (*bcIt)->hitsAndFractions().end(); ++rhIt) { //loop over rec hits in basic cluster
792 
793  for(EcalRecHitCollection::const_iterator it = ecalRecHitCollection.begin(); it != ecalRecHitCollection.end(); ++it) { //loop over all rec hits to find the right ones
794  if (rhIt->first == (*it).id() ) { //found the matching rechit
795  if ( (*it).recoFlag() == 9 ) { //has a bad channel
796  atLeastOneDeadChannel=true;
797  break;
798  }
799  }
800  }
801  }
802  }
803  if ( atLeastOneDeadChannel ) {
804  fill2DHistoVector(h_phoPhi_BadChannels_,(*iPho).phi(),cut,type);
805  fill2DHistoVector(h_phoEta_BadChannels_,(*iPho).eta(),cut,type);
806  fill2DHistoVector(h_phoEt_BadChannels_, (*iPho).et(), cut,type);
807  }
808 
809 
810  // filling conversion-related histograms
811  if((*iPho).hasConversionTracks()){
812  nConv[cut][0][0]++;
813  nConv[cut][0][part]++;
814  nConv[cut][type][0]++;
815  nConv[cut][type][part]++;
816  }
817 
818  //loop over conversions (don't forget, we're still inside the photon loop,
819  // i.e. these are all the conversions for this ONE photon, not for all the photons in the event)
820  reco::ConversionRefVector conversions = (*iPho).conversions();
821  for (unsigned int iConv=0; iConv<conversions.size(); iConv++) {
822 
823  reco::ConversionRef aConv=conversions[iConv];
824 
825  if ( aConv->nTracks() <2 ) continue;
826 
827  //fill histogram for denominator of vertex reconstruction efficiency plot
828  if(cut==0) h_phoEta_Vertex_->Fill(aConv->refittedPairMomentum().eta());
829 
830  if ( !(aConv->conversionVertex().isValid()) ) continue;
831 
832  float chi2Prob = ChiSquaredProbability( aConv->conversionVertex().chi2(), aConv->conversionVertex().ndof() );
833 
834  if(chi2Prob<0.0005) continue;
835 
836  fill2DHistoVector(h_vertexChi2Prob_,chi2Prob,cut,type);
837 
838 
839 
840  fill3DHistoVector(h_phoConvE_, (*iPho).energy(),cut,type,part);
841  fill3DHistoVector(h_phoConvEt_,(*iPho).et(),cut,type,part);
842  fill3DHistoVector(h_phoConvR9_,(*iPho).r9(),cut,type,part);
843 
844  if (cut==0 && isLoosePhoton){
845  h_convEta_Loose_->Fill((*iPho).eta());
846  h_convEt_Loose_->Fill( (*iPho).et() );
847  }
848  if (cut==0 && isTightPhoton){
849  h_convEta_Tight_->Fill((*iPho).eta());
850  h_convEt_Tight_->Fill( (*iPho).et() );
851  }
852 
853  fill2DHistoVector(h_phoConvEta_,aConv->refittedPairMomentum().eta(),cut,type);
854  fill3DHistoVector(h_phoConvPhi_,aConv->refittedPairMomentum().phi(),cut,type,part);
855 
856 
857  //we use the photon position because we'll be dividing it by a photon histogram (not a conversion histogram)
858  fill2DHistoVector(h_phoConvEtaForEfficiency_,(*iPho).eta(),cut,type);
859  fill3DHistoVector(h_phoConvPhiForEfficiency_,(*iPho).phi(),cut,type,part);
860 
861 
862  //vertex histograms
863  double convR= sqrt(aConv->conversionVertex().position().perp2());
864  double scalar = aConv->conversionVertex().position().x()*aConv->refittedPairMomentum().x() + aConv->conversionVertex().position().y()*aConv->refittedPairMomentum().y();
865  if ( scalar < 0 ) convR= -convR;
866 
867  fill2DHistoVector(h_convVtxRvsZ_,aConv->conversionVertex().position().z(), convR,cut,type);//trying to "see" R-Z view of tracker
868  fill2DHistoVector(h_convVtxZ_,aConv->conversionVertex().position().z(), cut,type);
869 
870  if(fabs(aConv->caloCluster()[0]->eta()) > 1.5){//trying to "see" tracker endcaps
871  fill2DHistoVector(h_convVtxZEndcap_,aConv->conversionVertex().position().z(), cut,type);
872  }
873  else if(fabs(aConv->caloCluster()[0]->eta()) < 1){//trying to "see" tracker barrel
874  fill2DHistoVector(h_convVtxR_,convR,cut,type);
875  fill2DHistoVector(h_convVtxYvsX_,aConv->conversionVertex().position().x(),aConv->conversionVertex().position().y(),cut,type);
876  }
877 
878  const std::vector<edm::RefToBase<reco::Track> > tracks = aConv->tracks();
879 
880 
881  for (unsigned int i=0; i<tracks.size(); i++) {
882  fill2DHistoVector(h_tkChi2_,tracks[i]->normalizedChi2(),cut,type);
883  fill2DHistoVector(p_tkChi2VsEta_,aConv->caloCluster()[0]->eta(),tracks[i]->normalizedChi2(),cut,type);
884  fill2DHistoVector(p_dCotTracksVsEta_,aConv->caloCluster()[0]->eta(),aConv->pairCotThetaSeparation(),cut,type);
885  fill2DHistoVector(p_nHitsVsEta_,aConv->caloCluster()[0]->eta(),float(tracks[i]->numberOfValidHits()),cut,type);
886  }
887 
888  //calculating delta eta and delta phi of the two tracks
889 
890  float DPhiTracksAtVtx = -99;
891  float dPhiTracksAtEcal= -99;
892  float dEtaTracksAtEcal= -99;
893 
894  float phiTk1= aConv->tracksPin()[0].phi();
895  float phiTk2= aConv->tracksPin()[1].phi();
896  DPhiTracksAtVtx = phiTk1-phiTk2;
897  DPhiTracksAtVtx = phiNormalization( DPhiTracksAtVtx );
898 
899  if (aConv->bcMatchingWithTracks()[0].isNonnull() && aConv->bcMatchingWithTracks()[1].isNonnull() ) {
900  float recoPhi1 = aConv->ecalImpactPosition()[0].phi();
901  float recoPhi2 = aConv->ecalImpactPosition()[1].phi();
902  float recoEta1 = aConv->ecalImpactPosition()[0].eta();
903  float recoEta2 = aConv->ecalImpactPosition()[1].eta();
904 
905  recoPhi1 = phiNormalization(recoPhi1);
906  recoPhi2 = phiNormalization(recoPhi2);
907 
908  dPhiTracksAtEcal = recoPhi1 -recoPhi2;
909  dPhiTracksAtEcal = phiNormalization( dPhiTracksAtEcal );
910  dEtaTracksAtEcal = recoEta1 -recoEta2;
911 
912  }
913 
914 
915  fill3DHistoVector(h_dPhiTracksAtVtx_,DPhiTracksAtVtx,cut,type,part);
916  fill3DHistoVector(h_dPhiTracksAtEcal_,fabs(dPhiTracksAtEcal),cut,type,part);
917  fill3DHistoVector(h_dEtaTracksAtEcal_, dEtaTracksAtEcal,cut,type,part);
918  fill3DHistoVector(h_eOverPTracks_,aConv->EoverPrefittedTracks(),cut,type,part);
919  fill3DHistoVector(h_pOverETracks_,1./aConv->EoverPrefittedTracks(),cut,type,part);
920  fill3DHistoVector(h_dCotTracks_,aConv->pairCotThetaSeparation(),cut,type,part);
921 
922 
923  }//end loop over conversions
924 
925  }//end loop over photons passing cuts
926  }//end loop over transverse energy cuts
927 
928 
929 
930 
931 
932  //make invariant mass plots
933 
934  if (isIsolated && iPho->et()>=invMassEtCut_){
935 
936  for (reco::PhotonCollection::const_iterator iPho2=iPho+1; iPho2!=photonCollection.end(); iPho2++){
937 
938  edm::Ref<reco::PhotonCollection> photonref2(photonHandle, photonCounter); //note: it's correct to use photonCounter and not photonCounter+1
939  //since it has already been incremented earlier
940 
941  bool isTightPhoton2(false), isLoosePhoton2(false);
942 
943  if ( !isHeavyIon_ ) {
944  isTightPhoton2 = (tightPhotonID)[photonref2];
945  isLoosePhoton2 = (loosePhotonID)[photonref2];
946  }
947 
948  bool isIsolated2=false;
949  if ( isolationStrength_ == 0) isIsolated2 = isLoosePhoton2;
950  if ( isolationStrength_ == 1) isIsolated2 = isTightPhoton2;
951 
952  reco::ConversionRefVector conversions = (*iPho).conversions();
953  reco::ConversionRefVector conversions2 = (*iPho2).conversions();
954 
955  if(isIsolated2 && iPho2->et()>=invMassEtCut_){
956 
957  math::XYZTLorentzVector p12 = iPho->p4()+iPho2->p4();
958  float gamgamMass2 = p12.Dot(p12);
959 
960 
961  h_invMassAllPhotons_ -> Fill(sqrt( gamgamMass2 ));
962  if(iPho->isEB() && iPho2->isEB()){h_invMassPhotonsEBarrel_ -> Fill(sqrt( gamgamMass2 ));}
963  if(iPho->isEE() || iPho2->isEE()){h_invMassPhotonsEEndcap_ -> Fill(sqrt( gamgamMass2 ));}
964 
965  if(conversions.size()!=0 && conversions[0]->nTracks() >= 2){
966  if(conversions2.size()!=0 && conversions2[0]->nTracks() >= 2) h_invMassTwoWithTracks_ -> Fill(sqrt( gamgamMass2 ));
967  else h_invMassOneWithTracks_ -> Fill(sqrt( gamgamMass2 ));
968  }
969  else if(conversions2.size()!=0 && conversions2[0]->nTracks() >= 2) h_invMassOneWithTracks_ -> Fill(sqrt( gamgamMass2 ));
970  else h_invMassZeroWithTracks_ -> Fill(sqrt( gamgamMass2 ));
971  }
972 
973  }
974 
975  }
976 
977 
978 
979  }
980 
981 
982  //filling number of photons/conversions per event histograms
983  for (int cut = 0; cut !=numberOfSteps_; ++cut) {
984  for(uint type=0;type!=types_.size();++type){
985  for(uint part=0;part!=parts_.size();++part){
986  h_nPho_[cut][type][part]-> Fill (float(nPho[cut][type][part]));
987  h_nConv_[cut][type][part]-> Fill (float(nConv[cut][type][part]));
988  }
989  }
990  }
991 
992 }//End of Analyze method
993 
995 {
996  if(!standAlone_){
997 
998  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer");
999 
1000  //keep track of how many histos are in each folder
1001  totalNumberOfHistos_efficiencyFolder->Fill(histo_index_efficiency_);
1002  totalNumberOfHistos_invMassFolder->Fill(histo_index_invMass_);
1003  totalNumberOfHistos_photonsFolder->Fill(histo_index_photons_);
1004  totalNumberOfHistos_conversionsFolder->Fill(histo_index_conversions_);
1005 
1006  }
1007 
1008 }
1009 
1010 
1012 {
1013  //dbe_->showDirStructure();
1014  if(standAlone_){
1015  dbe_->setCurrentFolder("Egamma/PhotonAnalyzer");
1016 
1017  //keep track of how many histos are in each folder
1018  totalNumberOfHistos_efficiencyFolder->Fill(histo_index_efficiency_);
1019  totalNumberOfHistos_invMassFolder->Fill(histo_index_invMass_);
1020  totalNumberOfHistos_photonsFolder->Fill(histo_index_photons_);
1021  totalNumberOfHistos_conversionsFolder->Fill(histo_index_conversions_);
1022 
1023 
1024  dbe_->save(outputFileName_);
1025  }
1026 
1027 
1028 }
1029 
1031 
1032 
1033 
1035 {
1036  const float PI = 3.1415927;
1037  const float TWOPI = 2.0*PI;
1038 
1039  if(phi > PI) {phi = phi - TWOPI;}
1040  if(phi < -PI) {phi = phi + TWOPI;}
1041 
1042  return phi;
1043 }
1044 
1045 
1046 void PhotonAnalyzer::fill2DHistoVector(vector<vector<MonitorElement*> >& histoVector,double x, double y, int cut, int type){
1047 
1048  histoVector[cut][0]->Fill(x,y);
1049  if(histoVector[cut].size()>1) histoVector[cut][type]->Fill(x,y); //don't try to fill 2D histos that are only in the "AllPhotons" folder
1050 
1051 }
1052 
1053 void PhotonAnalyzer::fill2DHistoVector(vector<vector<MonitorElement*> >& histoVector, double x, int cut, int type){
1054 
1055  histoVector[cut][0]->Fill(x);
1056  histoVector[cut][type]->Fill(x);
1057 
1058 }
1059 
1060 void PhotonAnalyzer::fill3DHistoVector(vector<vector<vector<MonitorElement*> > >& histoVector,double x, int cut, int type, int part){
1061 
1062  histoVector[cut][0][0]->Fill(x);
1063  histoVector[cut][0][part]->Fill(x);
1064  histoVector[cut][type][0]->Fill(x);
1065  histoVector[cut][type][part]->Fill(x);
1066 
1067 }
1068 
1069 void PhotonAnalyzer::fill3DHistoVector(vector<vector<vector<MonitorElement*> > >& histoVector,double x, double y, int cut, int type, int part){
1070 
1071  histoVector[cut][0][0]->Fill(x,y);
1072  histoVector[cut][0][part]->Fill(x,y);
1073  histoVector[cut][type][0]->Fill(x,y);
1074  histoVector[cut][type][part]->Fill(x,y);
1075 
1076 }
1077 
1078 
1079 MonitorElement* PhotonAnalyzer::bookHisto(string histoName, string title, int bin, double min, double max)
1080 {
1081 
1082  int histo_index = 0;
1083  stringstream histo_number_stream;
1084 
1085  //determining which folder we're in
1086  if(dbe_->pwd().find( "InvMass" ) != string::npos){
1087  histo_index_invMass_++;
1088  histo_index = histo_index_invMass_;
1089  }
1090  if(dbe_->pwd().find( "Efficiencies" ) != string::npos){
1091  histo_index_efficiency_++;
1092  histo_index = histo_index_efficiency_;
1093  }
1094 
1095  histo_number_stream << "h_";
1096  if(histo_index<10) histo_number_stream << "0";
1097  histo_number_stream << histo_index;
1098 
1099  return dbe_->book1D(histo_number_stream.str()+"_"+histoName,title,bin,min,max);
1100 
1101 }
1102 
1103 
1104 void PhotonAnalyzer::book2DHistoVector(vector<vector<MonitorElement*> > &temp2DVector,
1105  string histoType, string histoName, string title,
1106  int xbin, double xmin,double xmax,
1107  int ybin, double ymin, double ymax)
1108 {
1109  int histo_index = 0;
1110 
1111  vector<MonitorElement*> temp1DVector;
1112 // vector<vector<MonitorElement*> > temp2DVector;
1113 
1114  //determining which folder we're in
1115  bool conversionPlot = false;
1116  if(dbe_->pwd().find( "Conversions" ) != string::npos) conversionPlot = true;
1117  bool TwoDPlot = false;
1118  if(histoName.find( "2D" ) != string::npos) TwoDPlot = true;
1119 
1120  if(conversionPlot){
1121  histo_index_conversions_++;
1122  histo_index = histo_index_conversions_;
1123  }
1124  else{
1125  histo_index_photons_++;
1126  histo_index = histo_index_photons_;
1127  }
1128 
1129  stringstream histo_number_stream;
1130  histo_number_stream << "h_";
1131  if(histo_index<10) histo_number_stream << "0";
1132  histo_number_stream << histo_index << "_";
1133 
1134 
1135 
1136  for(int cut = 0; cut != numberOfSteps_; ++cut){ //looping over Et cut values
1137 
1138  for(uint type=0;type!=types_.size();++type){ //looping over isolation type
1139 
1140  currentFolder_.str("");
1141  currentFolder_ << "Egamma/PhotonAnalyzer/" << types_[type] << "Photons/Et above " << (cut+1)*cutStep_ << " GeV";
1142  if(conversionPlot) currentFolder_ << "/Conversions";
1143 
1144  dbe_->setCurrentFolder(currentFolder_.str());
1145 
1146  string kind;
1147  if(conversionPlot) kind = " Conversions: ";
1148  else kind = " Photons: ";
1149 
1150  if(histoType=="1D") temp1DVector.push_back(dbe_->book1D( histo_number_stream.str()+histoName,types_[type]+kind+title,xbin,xmin,xmax));
1151  else if(histoType=="2D"){
1152  if((TwoDPlot && type==0) || !TwoDPlot){//only book the 2D plots in the "AllPhotons" folder
1153  temp1DVector.push_back(dbe_->book2D( histo_number_stream.str()+histoName,types_[type]+kind+title,xbin,xmin,xmax,ybin,ymin,ymax));
1154  }
1155  }
1156  else if(histoType=="Profile") temp1DVector.push_back(dbe_->bookProfile( histo_number_stream.str()+histoName,types_[type]+kind+title,xbin,xmin,xmax,ybin,ymin,ymax,""));
1157  else cout << "bad histoType\n";
1158  }
1159 
1160  temp2DVector.push_back(temp1DVector);
1161  temp1DVector.clear();
1162  }
1163 
1164 // return temp2DVector;
1165 
1166 }
1167 
1168 
1169 void PhotonAnalyzer::book3DHistoVector(vector<vector<vector<MonitorElement*> > > &temp3DVector,
1170  string histoType, string histoName, string title,
1171  int xbin, double xmin,double xmax,
1172  int ybin, double ymin, double ymax)
1173 {
1174 
1175 
1176  int histo_index = 0;
1177 
1178  vector<MonitorElement*> temp1DVector;
1179  vector<vector<MonitorElement*> > temp2DVector;
1180 // vector<vector<vector<MonitorElement*> > > temp3DVector;
1181 
1182 
1183  //determining which folder we're in
1184  bool conversionPlot = false;
1185  if(dbe_->pwd().find( "Conversions" ) != string::npos) conversionPlot = true;
1186 
1187 
1188  if(conversionPlot){
1189  histo_index_conversions_++;
1190  histo_index = histo_index_conversions_;
1191  }
1192  else{
1193  histo_index_photons_++;
1194  histo_index = histo_index_photons_;
1195  }
1196 
1197 
1198 
1199  stringstream histo_number_stream;
1200  histo_number_stream << "h_";
1201  if(histo_index<10) histo_number_stream << "0";
1202  histo_number_stream << histo_index << "_";
1203 
1204  for(int cut = 0; cut != numberOfSteps_; ++cut){ //looping over Et cut values
1205 
1206  for(uint type=0;type!=types_.size();++type){ //looping over isolation type
1207 
1208  for(uint part=0;part!=parts_.size();++part){ //looping over different parts of the ecal
1209 
1210  currentFolder_.str("");
1211  currentFolder_ << "Egamma/PhotonAnalyzer/" << types_[type] << "Photons/Et above " << (cut+1)*cutStep_ << " GeV";
1212  if(conversionPlot) currentFolder_ << "/Conversions";
1213 
1214  dbe_->setCurrentFolder(currentFolder_.str());
1215 
1216  string kind;
1217  if(conversionPlot) kind = " Conversions: ";
1218  else kind = " Photons: ";
1219 
1220  if(histoType=="1D") temp1DVector.push_back(dbe_->book1D( histo_number_stream.str()+histoName+parts_[part],types_[type]+kind+parts_[part]+": "+title,xbin,xmin,xmax));
1221  else if(histoType=="2D") temp1DVector.push_back(dbe_->book2D( histo_number_stream.str()+histoName+parts_[part],types_[type]+kind+parts_[part]+": "+title,xbin,xmin,xmax,ybin,ymin,ymax));
1222  else if(histoType=="Profile") temp1DVector.push_back(dbe_->bookProfile( histo_number_stream.str()+histoName+parts_[part],types_[type]+kind+parts_[part]+": "+title,xbin,xmin,xmax,ybin,ymin,ymax,""));
1223  else cout << "bad histoType\n";
1224 
1225 
1226  }
1227 
1228  temp2DVector.push_back(temp1DVector);
1229  temp1DVector.clear();
1230  }
1231 
1232  temp3DVector.push_back(temp2DVector);
1233  temp2DVector.clear();
1234  }
1235 
1236  // return temp3DVector;
1237 }
virtual void endJob()
type
Definition: HCALResponse.h:21
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
virtual void beginJob()
The single EDProduct to be saved for each event (AOD case)
Definition: TriggerEvent.h:25
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:872
#define PI
MonitorElement * bookHisto(std::string histoName, std::string title, int bin, double min, double max)
double deltaRMax
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
tuple yBin
Definition: cuy.py:891
std::vector< EcalRecHit >::const_iterator const_iterator
#define TWOPI
EgammaCoreTools.
void fill3DHistoVector(std::vector< std::vector< std::vector< MonitorElement * > > > &histoVector, double x, int cut, int type, int part)
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
void fill2DHistoVector(std::vector< std::vector< MonitorElement * > > &histoVector, double x, int cut, int type)
const T & max(const T &a, const T &b)
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
T sqrt(T t)
Definition: SSEVec.h:48
auto deltaR(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:30
float ChiSquaredProbability(double chiSquared, double nrDOF)
void save(const std::string &filename, const std::string &path="", const std::string &pattern="", const std::string &rewrite="", const uint32_t run=0, SaveReferenceTag ref=SaveWithReference, int minStatus=dqm::qstatus::STATUS_OK, const std::string &fileupdate="RECREATE")
Definition: DQMStore.cc:2296
MonitorElement * bookProfile(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, const char *option="s")
Definition: DQMStore.cc:1186
bool isValid() const
Definition: HandleBase.h:76
float phiNormalization(float &a)
void book3DHistoVector(std::vector< std::vector< std::vector< MonitorElement * > > > &toFill, std::string histoType, std::string histoName, std::string title, int xbin, double xmin, double xmax, int ybin=1, double ymin=1, double ymax=2)
DQMStore * dbe_
const_iterator end() const
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
virtual ~PhotonAnalyzer()
virtual void endRun(const edm::Run &, const edm::EventSetup &)
tuple tracks
Definition: testEve_cfg.py:39
std::vector< size_type > Keys
part
Definition: HCALResponse.h:20
virtual void analyze(const edm::Event &, const edm::EventSetup &)
std::vector< Photon > PhotonCollection
collectin of Photon objects
Definition: PhotonFwd.h:9
T const * product() const
Definition: Handle.h:81
edm::EventID id() const
Definition: EventBase.h:56
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
tuple cout
Definition: gather_cfg.py:121
Definition: DDAxes.h:10
MonitorElement * bookInt(const char *name)
Book int.
Definition: DQMStore.cc:779
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:1000
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
tuple size
Write out results.
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:584
PhotonAnalyzer(const edm::ParameterSet &)
const_iterator begin() const
Definition: Run.h:41
const std::string & pwd(void) const
Definition: DQMStore.cc:556
double scalar(const CLHEP::HepGenMatrix &m)
Return the matrix as a scalar. Raise an assertion if the matris is not .
Definition: matutil.cc:183
void book2DHistoVector(std::vector< std::vector< MonitorElement * > > &toFill, std::string histoType, std::string histoName, std::string title, int xbin, double xmin, double xmax, int ybin=1, double ymin=1, double ymax=2)
Definition: DDAxes.h:10