CMS 3D CMS Logo

QcdPhotonsDQM.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * \author Michael B. Anderson, University of Wisconsin Madison
5  */
6 
8 
12 
16 
18 
20 
21 // Physics Objects
24 
25 // Vertex
27 
28 // For removing ECAL Spikes
33 
36 
37 // geometry
38 //#include "Geometry/CaloGeometry/interface/CaloGeometry.h"
39 //#include "Geometry/Records/interface/CaloGeometryRecord.h"
40 //#include "Geometry/CaloEventSetup/interface/CaloTopologyRecord.h"
41 //#include "Geometry/CaloGeometry/interface/CaloCellGeometry.h"
42 //#include "Geometry/CaloGeometry/interface/CaloSubdetectorGeometry.h"
43 //#include "Geometry/EcalAlgo/interface/EcalPreshowerGeometry.h"
44 
45 // Math stuff
48 
49 #include <vector>
50 
51 #include <string>
52 #include <cmath>
53 using namespace std;
54 using namespace edm;
55 using namespace reco;
56 
58  // Get parameters from configuration file
59  theTriggerPathToPass_ = parameters.getParameter<string>("triggerPathToPass");
60  thePlotTheseTriggersToo_ = parameters.getParameter<vector<string> >("plotTheseTriggersToo");
61  theJetCollectionLabel_ = parameters.getParameter<InputTag>("jetCollection");
62  trigTagToken_ = consumes<edm::TriggerResults>(parameters.getUntrackedParameter<edm::InputTag>("trigTag"));
63  thePhotonCollectionToken_ = consumes<reco::PhotonCollection>(parameters.getParameter<InputTag>("photonCollection"));
64  theJetCollectionToken_ = consumes<edm::View<reco::Jet> >(parameters.getParameter<InputTag>("jetCollection"));
65  theVertexCollectionToken_ = consumes<reco::VertexCollection>(parameters.getParameter<InputTag>("vertexCollection"));
66  theMinJetPt_ = parameters.getParameter<double>("minJetPt");
67  theMinPhotonEt_ = parameters.getParameter<double>("minPhotonEt");
68  theRequirePhotonFound_ = parameters.getParameter<bool>("requirePhotonFound");
69  thePlotPhotonMaxEt_ = parameters.getParameter<double>("plotPhotonMaxEt");
70  thePlotPhotonMaxEta_ = parameters.getParameter<double>("plotPhotonMaxEta");
71  thePlotJetMaxEta_ = parameters.getParameter<double>("plotJetMaxEta");
72  theBarrelRecHitTag_ = parameters.getParameter<InputTag>("barrelRecHitTag");
73  theEndcapRecHitTag_ = parameters.getParameter<InputTag>("endcapRecHitTag");
74  theBarrelRecHitToken_ = consumes<EcalRecHitCollection>(parameters.getParameter<InputTag>("barrelRecHitTag"));
75  theEndcapRecHitToken_ = consumes<EcalRecHitCollection>(parameters.getParameter<InputTag>("endcapRecHitTag"));
76 
77  // coverity says...
78  h_deltaEt_photon_jet = nullptr;
79  h_deltaPhi_jet_jet2 = nullptr;
80  h_deltaPhi_photon_jet = nullptr;
81  h_deltaPhi_photon_jet2 = nullptr;
82  h_deltaR_jet_jet2 = nullptr;
83  h_deltaR_photon_jet2 = nullptr;
84  h_jet2_eta = nullptr;
85  h_jet2_pt = nullptr;
86  h_jet2_ptOverPhotonEt = nullptr;
87  h_jet_count = nullptr;
88  h_jet_eta = nullptr;
89  h_jet_pt = nullptr;
90  h_photon_count_bar = nullptr;
91  h_photon_count_end = nullptr;
92  h_photon_et = nullptr;
93  h_photon_et_beforeCuts = nullptr;
94  h_photon_et_jetco = nullptr;
95  h_photon_et_jetcs = nullptr;
96  h_photon_et_jetfo = nullptr;
97  h_photon_et_jetfs = nullptr;
98  h_photon_eta = nullptr;
99  h_triggers_passed = nullptr;
100 }
101 
103 
105  logTraceName = "QcdPhotonAnalyzer";
106 
107  LogTrace(logTraceName) << "Parameters initialization";
108 
109  ibooker.setCurrentFolder("Physics/QcdPhotons"); // Use folder with name of PAG
110 
111  std::stringstream aStringStream;
112  std::string aString;
113  aStringStream << theMinJetPt_;
114  aString = aStringStream.str();
115 
116  // Monitor of triggers passed
117  int numOfTriggersToMonitor = thePlotTheseTriggersToo_.size();
118  h_triggers_passed = ibooker.book1D(
119  "triggers_passed", "Events passing these trigger paths", numOfTriggersToMonitor, 0, numOfTriggersToMonitor);
120  for (int i = 0; i < numOfTriggersToMonitor; i++) {
121  h_triggers_passed->setBinLabel(i + 1, thePlotTheseTriggersToo_[i]);
122  }
123 
124  // Keep the number of plots and number of bins to a minimum!
125  h_photon_et_beforeCuts = ibooker.book1D(
126  "photon_et_beforeCuts", "#gamma with highest E_{T};E_{T}(#gamma) (GeV)", 20, 0., thePlotPhotonMaxEt_);
127  h_photon_et =
128  ibooker.book1D("photon_et", "#gamma with highest E_{T};E_{T}(#gamma) (GeV)", 20, 0., thePlotPhotonMaxEt_);
129  h_photon_eta = ibooker.book1D(
130  "photon_eta", "#gamma with highest E_{T};#eta(#gamma)", 40, -thePlotPhotonMaxEta_, thePlotPhotonMaxEta_);
131  h_photon_count_bar = ibooker.book1D(
132  "photon_count_bar", "Number of #gamma's passing selection (Barrel);Number of #gamma's", 8, -0.5, 7.5);
133  h_photon_count_end = ibooker.book1D(
134  "photon_count_end", "Number of #gamma's passing selection (Endcap);Number of #gamma's", 8, -0.5, 7.5);
135  h_jet_pt =
136  ibooker.book1D("jet_pt",
137  "Jet with highest p_{T} (from " + theJetCollectionLabel_.label() + ");p_{T}(1^{st} jet) (GeV)",
138  20,
139  0.,
140  thePlotPhotonMaxEt_);
141  h_jet_eta = ibooker.book1D("jet_eta",
142  "Jet with highest p_{T} (from " + theJetCollectionLabel_.label() + ");#eta(1^{st} jet)",
143  20,
144  -thePlotJetMaxEta_,
145  thePlotJetMaxEta_);
146  h_deltaPhi_photon_jet =
147  ibooker.book1D("deltaPhi_photon_jet",
148  "#Delta#phi between Highest E_{T} #gamma and jet;#Delta#phi(#gamma,1^{st} jet)",
149  20,
150  0,
151  3.1415926);
152  h_deltaPhi_jet_jet2 = ibooker.book1D("deltaPhi_jet_jet2",
153  "#Delta#phi between Highest E_{T} jet and 2^{nd} "
154  "jet;#Delta#phi(1^{st} jet,2^{nd} jet)",
155  20,
156  0,
157  3.1415926);
158  h_deltaEt_photon_jet = ibooker.book1D("deltaEt_photon_jet",
159  "(E_{T}(#gamma)-p_{T}(jet))/E_{T}(#gamma) when #Delta#phi(#gamma,1^{st} "
160  "jet) > 2.8;#DeltaE_{T}(#gamma,1^{st} jet)/E_{T}(#gamma)",
161  20,
162  -1.0,
163  1.0);
164  h_jet_count =
165  ibooker.book1D("jet_count",
166  "Number of " + theJetCollectionLabel_.label() + " (p_{T} > " + aString + " GeV);Number of Jets",
167  8,
168  -0.5,
169  7.5);
170  h_jet2_pt = ibooker.book1D(
171  "jet2_pt",
172  "Jet with 2^{nd} highest p_{T} (from " + theJetCollectionLabel_.label() + ");p_{T}(2^{nd} jet) (GeV)",
173  20,
174  0.,
175  thePlotPhotonMaxEt_);
176  h_jet2_eta =
177  ibooker.book1D("jet2_eta",
178  "Jet with 2^{nd} highest p_{T} (from " + theJetCollectionLabel_.label() + ");#eta(2^{nd} jet)",
179  20,
180  -thePlotJetMaxEta_,
181  thePlotJetMaxEta_);
182  h_jet2_ptOverPhotonEt = ibooker.book1D(
183  "jet2_ptOverPhotonEt", "p_{T}(2^{nd} highest jet) / E_{T}(#gamma);p_{T}(2^{nd} Jet)/E_{T}(#gamma)", 20, 0.0, 4.0);
184  h_deltaPhi_photon_jet2 = ibooker.book1D("deltaPhi_photon_jet2",
185  "#Delta#phi between Highest E_{T} #gamma and 2^{nd} "
186  "highest jet;#Delta#phi(#gamma,2^{nd} jet)",
187  20,
188  0,
189  3.1415926);
190  h_deltaR_jet_jet2 = ibooker.book1D(
191  "deltaR_jet_jet2", "#DeltaR between Highest Jet and 2^{nd} Highest;#DeltaR(1^{st} jet,2^{nd} jet)", 30, 0, 6.0);
192  h_deltaR_photon_jet2 = ibooker.book1D("deltaR_photon_jet2",
193  "#DeltaR between Highest E_{T} #gamma and 2^{nd} "
194  "jet;#DeltaR(#gamma, 2^{nd} jet)",
195  30,
196  0,
197  6.0);
198 
199  // Photon Et for different jet configurations
200  Float_t bins_et[] = {15, 20, 30, 50, 80};
201  int num_bins_et = 4;
202  h_photon_et_jetcs = ibooker.book1D("photon_et_jetcs",
203  "#gamma with highest E_{T} (#eta(jet)<1.45, "
204  "#eta(#gamma)#eta(jet)>0);E_{T}(#gamma) (GeV)",
205  num_bins_et,
206  bins_et);
207  h_photon_et_jetco = ibooker.book1D("photon_et_jetco",
208  "#gamma with highest E_{T} (#eta(jet)<1.45, "
209  "#eta(#gamma)#eta(jet)<0);E_{T}(#gamma) (GeV)",
210  num_bins_et,
211  bins_et);
212  h_photon_et_jetfs = ibooker.book1D("photon_et_jetfs",
213  "#gamma with highest E_{T} (1.55<#eta(jet)<2.5, "
214  "#eta(#gamma)#eta(jet)>0);E_{T}(#gamma) (GeV)",
215  num_bins_et,
216  bins_et);
217  h_photon_et_jetfo = ibooker.book1D("photon_et_jetfo",
218  "#gamma with highest E_{T} (1.55<#eta(jet)<2.5, "
219  "#eta(#gamma)#eta(jet)<0);E_{T}(#gamma) (GeV)",
220  num_bins_et,
221  bins_et);
222 
223  auto setSumw2 = [](MonitorElement* me) {
224  if (me->getTH1F()->GetSumw2N() == 0) {
225  me->enableSumw2();
226  }
227  };
228 
229  setSumw2(h_photon_et_jetcs);
230  setSumw2(h_photon_et_jetco);
231  setSumw2(h_photon_et_jetfs);
232  setSumw2(h_photon_et_jetfo);
233 }
234 
235 void QcdPhotonsDQM::analyze(const Event& iEvent, const EventSetup& iSetup) {
236  LogTrace(logTraceName) << "Analysis of event # ";
237 
239  // Did event pass HLT paths?
240  Handle<TriggerResults> HLTresults;
241  iEvent.getByToken(trigTagToken_, HLTresults);
242  if (!HLTresults.isValid()) {
243  // LogWarning("") << ">>> TRIGGER collection does not exist !!!";
244  return;
245  }
246  const edm::TriggerNames& trigNames = iEvent.triggerNames(*HLTresults);
247 
248  bool passed_HLT = false;
249 
250  // See if event passed trigger paths
251  // increment that bin in the trigger plot
252  for (unsigned int i = 0; i < thePlotTheseTriggersToo_.size(); i++) {
253  passed_HLT = false;
254  for (unsigned int ti = 0; (ti < trigNames.size()) && !passed_HLT; ++ti) {
255  size_t pos = trigNames.triggerName(ti).find(thePlotTheseTriggersToo_[i]);
256  if (pos == 0)
257  passed_HLT = HLTresults->accept(ti);
258  }
259  if (passed_HLT)
260  h_triggers_passed->Fill(i);
261  }
262 
263  // grab photons
265  iEvent.getByToken(thePhotonCollectionToken_, photonCollection);
266 
267  // If photon collection is empty, exit
268  if (!photonCollection.isValid())
269  return;
270 
271  // Quit if the event did not pass the HLT path we care about
272  passed_HLT = false;
273  {
274  // bool found=false;
275  for (unsigned int ti = 0; ti < trigNames.size(); ++ti) {
276  size_t pos = trigNames.triggerName(ti).find(theTriggerPathToPass_);
277  if (pos == 0) {
278  passed_HLT = HLTresults->accept(ti);
279  // found=true;
280  break;
281  }
282  }
283 
284  // Assumption: reco photons are ordered by Et
285  for (PhotonCollection::const_iterator recoPhoton = photonCollection->begin(); recoPhoton != photonCollection->end();
286  recoPhoton++) {
287  // stop looping over photons once we get to too low Et
288  if (recoPhoton->et() < theMinPhotonEt_)
289  break;
290 
291  h_photon_et_beforeCuts->Fill(recoPhoton->et());
292  break; // leading photon only
293  }
294 
295  if (!passed_HLT) {
296  return;
297  }
298  }
299 
301 
302  // std::cout << "\tpassed main trigger (" << theTriggerPathToPass_ << ")" <<
303  // std::endl;
304 
306  // Does event have valid vertex?
307  // Get the primary event vertex
308  Handle<VertexCollection> vertexHandle;
309  iEvent.getByToken(theVertexCollectionToken_, vertexHandle);
310  VertexCollection vertexCollection = *(vertexHandle.product());
311  // double vtx_ndof = -1.0;
312  // double vtx_z = 0.0;
313  // bool vtx_isFake = true;
314  // if (vertexCollection.size()>0) {
315  // vtx_ndof = vertexCollection.begin()->ndof();
316  // vtx_z = vertexCollection.begin()->z();
317  // vtx_isFake = false;
318  //}
319  // if (vtx_isFake || fabs(vtx_z)>15 || vtx_ndof<4) return;
320 
321  int nvvertex = 0;
322  for (unsigned int i = 0; i < vertexCollection.size(); ++i) {
323  if (vertexCollection[i].isValid())
324  nvvertex++;
325  }
326  if (nvvertex == 0)
327  return;
328 
330 
331  // std::cout << "\tpassed vertex selection" << std::endl;
332 
334  // Did the event pass certain L1 Technical Trigger bits?
335  // It's probably beam halo
336  // TODO: ADD code
338 
339  // For finding spikes
340  Handle<EcalRecHitCollection> EBReducedRecHits;
341  iEvent.getByToken(theBarrelRecHitToken_, EBReducedRecHits);
342  Handle<EcalRecHitCollection> EEReducedRecHits;
343  iEvent.getByToken(theEndcapRecHitToken_, EEReducedRecHits);
344  EcalClusterLazyTools lazyTool(iEvent, iSetup, theBarrelRecHitToken_, theEndcapRecHitToken_);
345 
346  // Find the highest et "decent" photon
347  float photon_et = -9.0;
348  float photon_eta = -9.0;
349  float photon_phi = -9.0;
350  bool photon_passPhotonID = false;
351  bool found_lead_pho = false;
352  int photon_count_bar = 0;
353  int photon_count_end = 0;
354  // False Assumption: reco photons are ordered by Et
355  // find the photon with highest et
356  auto pho_maxet = std::max_element(
357  photonCollection->begin(),
358  photonCollection->end(),
359  [](const PhotonCollection::value_type& a, const PhotonCollection::value_type& b) { return a.et() < b.et(); });
360  if (pho_maxet != photonCollection->end() && pho_maxet->et() >= theMinPhotonEt_) {
361  /*
362  // Ignore ECAL Spikes
363  const reco::CaloClusterPtr seed = pho_maxet->superCluster()->seed();
364  DetId id = lazyTool.getMaximum(*seed).first; // Cluster shape variables
365  // float time = -999., outOfTimeChi2 = -999., chi2 = -999.; // UNUSED
366  int flags=-1, severity = -1;
367  const EcalRecHitCollection & rechits = ( pho_maxet->isEB() ?
368  *EBReducedRecHits : *EEReducedRecHits);
369  EcalRecHitCollection::const_iterator it = rechits.find( id );
370  if( it != rechits.end() ) {
371  // time = it->time(); // UNUSED
372  // outOfTimeChi2 = it->outOfTimeChi2(); // UNUSED
373  // chi2 = it->chi2(); // UNUSED
374  flags = it->recoFlag();
375 
376  edm::ESHandle<EcalSeverityLevelAlgo> sevlv;
377  iSetup.get<EcalSeverityLevelAlgoRcd>().get(sevlv);
378  severity = sevlv->severityLevel( id, rechits);
379  }
380  bool isNotSpike = ((pho_maxet->isEB() && (severity!=3 && severity!=4 ) &&
381  (flags != 2) ) || pho_maxet->isEE());
382  if (!isNotSpike) continue; // move on to next photon
383  // END of determining ECAL Spikes
384  */
385 
386  bool pho_current_passPhotonID = false;
387  bool pho_current_isEB = pho_maxet->isEB();
388  bool pho_current_isEE = pho_maxet->isEE();
389 
390  if (pho_current_isEB && (pho_maxet->sigmaIetaIeta() < 0.01 || pho_maxet->hadronicOverEm() < 0.05)) {
391  // Photon object in barrel passes photon ID
392  pho_current_passPhotonID = true;
393  photon_count_bar++;
394  } else if (pho_current_isEE && (pho_maxet->hadronicOverEm() < 0.05)) {
395  // Photon object in endcap passes photon ID
396  pho_current_passPhotonID = true;
397  photon_count_end++;
398  }
399 
400  if (!found_lead_pho) {
401  found_lead_pho = true;
402  photon_passPhotonID = pho_current_passPhotonID;
403  photon_et = pho_maxet->et();
404  photon_eta = pho_maxet->eta();
405  photon_phi = pho_maxet->phi();
406  }
407  }
408 
409  // If user requires a photon to be found, but none is, return.
410  // theRequirePhotonFound should pretty much always be set to 'True'
411  // except when running on qcd monte carlo just to see the jets.
412  if (theRequirePhotonFound_ && (!photon_passPhotonID || photon_et < theMinPhotonEt_))
413  return;
414 
416  // Find the highest et jet
418  iEvent.getByToken(theJetCollectionToken_, jetCollection);
419  if (!jetCollection.isValid())
420  return;
421 
422  float jet_pt = -8.0;
423  float jet_eta = -8.0;
424  float jet_phi = -8.0;
425  int jet_count = 0;
426  float jet2_pt = -9.0;
427  float jet2_eta = -9.0;
428  float jet2_phi = -9.0;
429  // Assumption: jets are ordered by Et
430  for (unsigned int i_jet = 0; i_jet < jetCollection->size(); i_jet++) {
431  const Jet* jet = &jetCollection->at(i_jet);
432 
433  float jet_current_pt = jet->pt();
434 
435  // don't care about jets that overlap with the lead photon
436  if (deltaR(jet->eta(), jet->phi(), photon_eta, photon_phi) < 0.5)
437  continue;
438  // stop looping over jets once we get to too low Et
439  if (jet_current_pt < theMinJetPt_)
440  break;
441 
442  jet_count++;
443  if (jet_current_pt > jet_pt) {
444  jet2_pt = jet_pt; // 2nd highest jet get's et from current highest
445  jet2_eta = jet_eta;
446  jet2_phi = jet_phi;
447  jet_pt = jet_current_pt; // current highest jet gets et from the new highest
448  jet_eta = jet->eta();
449  jet_phi = jet->phi();
450  } else if (jet_current_pt > jet2_pt) {
451  jet2_pt = jet_current_pt;
452  jet2_eta = jet->eta();
453  jet2_phi = jet->phi();
454  }
455  }
457 
459  // Fill histograms if a jet found
460  // NOTE: if a photon was required to be found, but wasn't
461  // we wouldn't have made it to this point in the code
462  if (jet_pt > 0.0) {
463  // Photon Plots
464  h_photon_et->Fill(photon_et);
465  h_photon_eta->Fill(photon_eta);
466  h_photon_count_bar->Fill(photon_count_bar);
467  h_photon_count_end->Fill(photon_count_end);
468 
469  // Photon Et hists for different orientations to the jet
470  if (fabs(photon_eta) < 1.45 && photon_passPhotonID) { // Lead photon is in barrel
471  if (fabs(jet_eta) < 1.45) { // jet is in barrel
472  if (photon_eta * jet_eta > 0) {
473  h_photon_et_jetcs->Fill(photon_et);
474  } else {
475  h_photon_et_jetco->Fill(photon_et);
476  }
477  } else if (jet_eta > 1.55 && jet_eta < 2.5) { // jet is in endcap
478  if (photon_eta * jet_eta > 0) {
479  h_photon_et_jetfs->Fill(photon_et);
480  } else {
481  h_photon_et_jetfo->Fill(photon_et);
482  }
483  }
484  } // END of Lead Photon is in Barrel
485 
486  // Jet Plots
487  h_jet_pt->Fill(jet_pt);
488  h_jet_eta->Fill(jet_eta);
489  h_jet_count->Fill(jet_count);
490  h_deltaPhi_photon_jet->Fill(abs(deltaPhi(photon_phi, jet_phi)));
491  if (abs(deltaPhi(photon_phi, jet_phi)) > 2.8)
492  h_deltaEt_photon_jet->Fill((photon_et - jet_pt) / photon_et);
493 
494  // 2nd Highest Jet Plots
495  if (jet2_pt > 0.0) {
496  h_jet2_pt->Fill(jet2_pt);
497  h_jet2_eta->Fill(jet2_eta);
498  h_jet2_ptOverPhotonEt->Fill(jet2_pt / photon_et);
499  h_deltaPhi_photon_jet2->Fill(abs(deltaPhi(photon_phi, jet2_phi)));
500  h_deltaPhi_jet_jet2->Fill(abs(deltaPhi(jet_phi, jet2_phi)));
501  h_deltaR_jet_jet2->Fill(deltaR(jet_eta, jet_phi, jet2_eta, jet2_phi));
502  h_deltaR_photon_jet2->Fill(deltaR(photon_eta, photon_phi, jet2_eta, jet2_phi));
503  }
504  }
505  // End of Filling histograms
507 }
508 
509 // Local Variables:
510 // show-trailing-whitespace: t
511 // truncate-lines: t
512 // End:
dqm::impl::MonitorElement
Definition: MonitorElement.h:98
Handle.h
mps_fire.i
i
Definition: mps_fire.py:355
MessageLogger.h
edm::Handle::product
T const * product() const
Definition: Handle.h:70
trigNames
static const char *const trigNames[]
Definition: EcalDumpRaw.cc:57
ESHandle.h
EcalSeverityLevelAlgoRcd.h
edm::Run
Definition: Run.h:45
edm
HLT enums.
Definition: AlignableModifier.h:19
reco::VertexCollection
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
pos
Definition: PixelAliasList.h:18
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
QcdPhotonsDQM::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Get the analysis.
Definition: QcdPhotonsDQM.cc:235
DQMStore.h
Jet.h
EcalClusterLazyTools.h
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::Handle
Definition: AssociativeIterator.h:50
parameters
parameters
Definition: BeamSpot_PayloadInspector.cc:14
EcalCondObjectContainer.h
deltaR.h
Photon.h
QcdPhotonsDQM::bookHistograms
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: QcdPhotonsDQM.cc:104
Jet
Definition: Jet.py:1
SiPixelRawToDigiRegional_cfi.deltaPhi
deltaPhi
Definition: SiPixelRawToDigiRegional_cfi.py:9
Service.h
jetfilter_cfi.jetCollection
jetCollection
Definition: jetfilter_cfi.py:4
b
double b
Definition: hdecay.h:118
EcalClusterLazyTools
EcalSeverityLevelAlgo.h
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
Vertex.h
edm::ParameterSet
Definition: ParameterSet.h:36
a
double a
Definition: hdecay.h:119
Event.h
TriggerNames.h
iEvent
int iEvent
Definition: GenABIO.cc:224
dqm::impl::MonitorElement::setBinLabel
virtual void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
Definition: MonitorElement.cc:771
edm::EventSetup
Definition: EventSetup.h:57
reco::JetExtendedAssociation::value_type
Container::value_type value_type
Definition: JetExtendedAssociation.h:30
std
Definition: JetResolutionObject.h:76
QcdPhotonsDQM::QcdPhotonsDQM
QcdPhotonsDQM(const edm::ParameterSet &)
Constructor.
Definition: QcdPhotonsDQM.cc:57
spclusmultinvestigator_cfi.vertexCollection
vertexCollection
Definition: spclusmultinvestigator_cfi.py:4
metsig::jet
Definition: SignAlgoResolutions.h:47
edm::TriggerNames
Definition: TriggerNames.h:55
EventSetup.h
edm::HLTGlobalStatus::accept
bool accept() const
Has at least one path accepted the event?
Definition: HLTGlobalStatus.h:49
dqm::implementation::IBooker
Definition: DQMStore.h:43
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:671
ParameterSet.h
ExoticaDQM_cfi.photonCollection
photonCollection
Definition: ExoticaDQM_cfi.py:17
hlt_dqm_clientPB-live_cfg.me
me
Definition: hlt_dqm_clientPB-live_cfg.py:56
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
QcdPhotonsDQM::~QcdPhotonsDQM
~QcdPhotonsDQM() override
Destructor.
Definition: QcdPhotonsDQM.cc:102
QcdPhotonsDQM.h
edm::InputTag
Definition: InputTag.h:15
deltaPhi.h
dqm::implementation::IBooker::book1D
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98