CMS 3D CMS Logo

TopSingleLeptonDQM_miniAOD.cc
Go to the documentation of this file.
7 #include <iostream>
11 
16 
18 
19 using namespace std;
21 
22  // maximal number of leading jets
23  // to be used for top mass estimate
24  static const unsigned int MAXJETS = 4;
25  // nominal mass of the W boson to
26  // be used for the top mass estimate
27  static const double WMASS = 80.4;
28 
29  MonitorEnsemble::MonitorEnsemble(const char* label, const edm::ParameterSet& cfg, edm::ConsumesCollector&& iC)
30  : label_(label),
31  elecIso_(nullptr),
32  elecSelect_(nullptr),
33  pvSelect_(nullptr),
34  muonIso_(nullptr),
35  muonSelect_(nullptr),
36  jetIDSelect_(nullptr),
37  jetSelect(nullptr),
38  includeBTag_(false),
39  lowerEdge_(-1.),
40  upperEdge_(-1.),
41  logged_(0) {
42  // sources have to be given; this PSet is not optional
44  // muons_ = iC.consumes<edm::View<reco::PFCandidate> >(
45  // sources.getParameter<edm::InputTag>("muons"));
46 
47  muons_ = iC.consumes<edm::View<pat::Muon>>(sources.getParameter<edm::InputTag>("muons"));
48 
49  elecs_ = iC.consumes<edm::View<pat::Electron>>(sources.getParameter<edm::InputTag>("elecs"));
50  pvs_ = iC.consumes<edm::View<reco::Vertex>>(sources.getParameter<edm::InputTag>("pvs"));
51  jets_ = iC.consumes<edm::View<pat::Jet>>(sources.getParameter<edm::InputTag>("jets"));
52  for (edm::InputTag const& tag : sources.getParameter<std::vector<edm::InputTag>>("mets"))
53  mets_.push_back(iC.consumes<edm::View<pat::MET>>(tag));
54  // electronExtras are optional; they may be omitted or
55  // empty
56  if (cfg.existsAs<edm::ParameterSet>("elecExtras")) {
58  // select is optional; in case it's not found no
59  // selection will be applied
60  if (elecExtras.existsAs<std::string>("select")) {
62  }
63  // isolation is optional; in case it's not found no
64  // isolation will be applied
65  if (elecExtras.existsAs<std::string>("isolation")) {
66  elecIso_.reset(new StringCutObjectSelector<pat::Electron>(elecExtras.getParameter<std::string>("isolation")));
67  }
68 
69  if (elecExtras.existsAs<std::string>("rho")) {
70  rhoTag = elecExtras.getParameter<edm::InputTag>("rho");
71  }
72  // electronId is optional; in case it's not found the
73  // InputTag will remain empty
74  if (elecExtras.existsAs<edm::ParameterSet>("electronId")) {
75  edm::ParameterSet elecId = elecExtras.getParameter<edm::ParameterSet>("electronId");
76  electronId_ = iC.consumes<edm::ValueMap<float>>(elecId.getParameter<edm::InputTag>("src"));
77  eidCutValue_ = elecId.getParameter<double>("cutValue");
78  }
79  }
80  // pvExtras are opetional; they may be omitted or empty
81  if (cfg.existsAs<edm::ParameterSet>("pvExtras")) {
83  // select is optional; in case it's not found no
84  // selection will be applied
85  if (pvExtras.existsAs<std::string>("select")) {
87  }
88  }
89  // muonExtras are optional; they may be omitted or empty
90  if (cfg.existsAs<edm::ParameterSet>("muonExtras")) {
92  // select is optional; in case it's not found no
93  // selection will be applied
94  if (muonExtras.existsAs<std::string>("select")) {
96  }
97  // isolation is optional; in case it's not found no
98  // isolation will be applied
99  if (muonExtras.existsAs<std::string>("isolation")) {
100  muonIso_.reset(new StringCutObjectSelector<pat::Muon>(muonExtras.getParameter<std::string>("isolation")));
101  }
102  }
103 
104  // jetExtras are optional; they may be omitted or
105  // empty
106  if (cfg.existsAs<edm::ParameterSet>("jetExtras")) {
108  // jetCorrector is optional; in case it's not found
109  // the InputTag will remain empty
110  if (jetExtras.existsAs<std::string>("jetCorrector")) {
111  jetCorrector_ = jetExtras.getParameter<std::string>("jetCorrector");
112  }
113  // read jetID information if it exists
114  if (jetExtras.existsAs<edm::ParameterSet>("jetID")) {
116  jetIDLabel_ = iC.consumes<reco::JetIDValueMap>(jetID.getParameter<edm::InputTag>("label"));
118  }
119  // select is optional; in case it's not found no
120  // selection will be applied (only implemented for
121  // CaloJets at the moment)
122  if (jetExtras.existsAs<std::string>("select")) {
123  jetSelect_ = jetExtras.getParameter<std::string>("select");
125  }
126  }
127 
128  // triggerExtras are optional; they may be omitted or empty
129  if (cfg.existsAs<edm::ParameterSet>("triggerExtras")) {
131  triggerTable_ = iC.consumes<edm::TriggerResults>(triggerExtras.getParameter<edm::InputTag>("src"));
132  triggerPaths_ = triggerExtras.getParameter<std::vector<std::string>>("paths");
133  }
134 
135  // massExtras is optional; in case it's not found no mass
136  // window cuts are applied for the same flavor monitor
137  // histograms
138  if (cfg.existsAs<edm::ParameterSet>("massExtras")) {
140  lowerEdge_ = massExtras.getParameter<double>("lowerEdge");
141  upperEdge_ = massExtras.getParameter<double>("upperEdge");
142  }
143 
144  // setup the verbosity level for booking histograms;
145  // per default the verbosity level will be set to
146  // STANDARD. This will also be the chosen level in
147  // the case when the monitoring PSet is not found
149  if (cfg.existsAs<edm::ParameterSet>("monitoring")) {
151  if (monitoring.getParameter<std::string>("verbosity") == "DEBUG")
152  verbosity_ = DEBUG;
153  if (monitoring.getParameter<std::string>("verbosity") == "VERBOSE")
154  verbosity_ = VERBOSE;
155  if (monitoring.getParameter<std::string>("verbosity") == "STANDARD")
156  verbosity_ = STANDARD;
157  }
158  // and don't forget to do the histogram booking
159  directory_ = cfg.getParameter<std::string>("directory");
160  // book(ibooker);
161  }
162 
163  void MonitorEnsemble::book(DQMStore::IBooker& ibooker) {
164  // set up the current directory path
165  std::string current(directory_);
166  current += label_;
167  ibooker.setCurrentFolder(current);
168 
169  // determine number of bins for trigger monitoring
170  //unsigned int nPaths = triggerPaths_.size();
171 
172  // --- [STANDARD] --- //
173  // Run Number
174  //hists_["RunNumb_"] = ibooker.book1D("RunNumber", "Run Nr.", 1.e4, 1.5e5, 3.e5);
175  // instantaneous luminosity
176  //hists_["InstLumi_"] = ibooker.book1D("InstLumi", "Inst. Lumi.", 100, 0., 1.e3);
177  // number of selected primary vertices
178  hists_["pvMult_"] = ibooker.book1D("PvMult", "N_{good pvs}", 50, 0., 50.);
179  // pt of the leading muon
180  hists_["muonPt_"] = ibooker.book1D("MuonPt", "pt(#mu TightId, TightIso)", 40, 0., 200.);
181  // muon multiplicity before std isolation
182  hists_["muonMult_"] = ibooker.book1D("MuonMult", "N_{loose}(#mu)", 10, 0., 10.);
183  // muon multiplicity after std isolation
184  //hists_["muonMultIso_"] = ibooker.book1D("MuonMultIso",
185  // "N_{TightIso}(#mu)", 10, 0., 10.);
186 
187  hists_["muonMultTight_"] = ibooker.book1D("MuonMultTight", "N_{TightIso,TightId}(#mu)", 10, 0., 10.);
188 
189  // pt of the leading electron
190  hists_["elecPt_"] = ibooker.book1D("ElecPt", "pt(e TightId, TightIso)", 40, 0., 200.);
191  // electron multiplicity before std isolation
192  //hists_["elecMult_"] = ibooker.book1D("ElecMult", "N_{looseId}(e)", 10, 0., 10.);
193  // electron multiplicity after std isolation
194  //hists_["elecMultIso_"] = ibooker.book1D("ElecMultIso", "N_{Iso}(e)", 10, 0., 10.);
195  // multiplicity of jets with pt>20 (corrected to L2+L3)
196  hists_["jetMult_"] = ibooker.book1D("JetMult", "N_{30}(jet)", 10, 0., 10.);
197  hists_["jetLooseMult_"] = ibooker.book1D("JetLooseMult", "N_{30,loose}(jet)", 10, 0., 10.);
198 
199  // trigger efficiency estimates for single lepton triggers
200  //hists_["triggerEff_"] = ibooker.book1D("TriggerEff",
201  // "Eff(trigger)", nPaths, 0., nPaths);
202  // monitored trigger occupancy for single lepton triggers
203  //hists_["triggerMon_"] = ibooker.book1D("TriggerMon",
204  // "Mon(trigger)", nPaths, 0., nPaths);
205  // MET (calo)
206  hists_["slimmedMETs_"] = ibooker.book1D("slimmedMETs", "MET_{slimmed}", 40, 0., 200.);
207  // W mass estimate
208  hists_["massW_"] = ibooker.book1D("MassW", "M(W)", 60, 0., 300.);
209  // Top mass estimate
210  hists_["massTop_"] = ibooker.book1D("MassTop", "M(Top)", 50, 0., 500.);
211  // b-tagged Top mass
212  hists_["massBTop_"] = ibooker.book1D("MassBTop", "M(Top, 1 b-tag)", 50, 0., 500.);
213  // set bin labels for trigger monitoring
215 
216  if (verbosity_ == STANDARD)
217  return;
218 
219  // --- [VERBOSE] --- //
220  // eta of the leading muon
221  hists_["muonEta_"] = ibooker.book1D("MuonEta", "#eta(#mu TightId,TightIso)", 30, -3., 3.);
222  // relative isolation of the candidate muon (depending on the decay channel)
223  hists_["muonPhi_"] = ibooker.book1D("MuonPhi", "#phi(#mu TightId,TightIso)", 40, -4., 4.);
224  hists_["muonRelIso_"] = ibooker.book1D("MuonRelIso", "Iso_{Rel}(#mu TightId) (#Delta#beta Corrected)", 50, 0., 1.);
225 
226  // eta of the leading electron
227  hists_["elecEta_"] = ibooker.book1D("ElecEta", "#eta(e TightId, TightIso)", 30, -3., 3.);
228  hists_["elecPhi_"] = ibooker.book1D("ElecPhi", "#phi(e TightId, TightIso)", 40, -4., 4.);
229  // std isolation variable of the leading electron
230  hists_["elecRelIso_"] = ibooker.book1D("ElecRelIso", "Iso_{Rel}(e TightId)", 50, 0., 1.);
231 
232  hists_["elecMultTight_"] = ibooker.book1D("ElecMultTight", "N_{TightIso,TightId}(e)", 10, 0., 10.);
233 
234  // multiplicity of btagged jets (for track counting high efficiency) with
235  // pt(L2L3)>30
236  //hists_["jetMultBEff_"] = ibooker.book1D("JetMultBEff",
237  // "N_{30}(TCHE)", 10, 0., 10.);
238  // btag discriminator for track counting high efficiency for jets with
239  // pt(L2L3)>30
240  //hists_["jetBDiscEff_"] = ibooker.book1D("JetBDiscEff",
241  // "Disc_{TCHE}(jet)", 100, 0., 10.);
242  // eta of the 1. leading jet (corrected to L2+L3)
243  hists_["jet1Eta_"] = ibooker.book1D("Jet1Eta", "#eta_{30,loose}(jet1)", 60, -3., 3.);
244  // pt of the 1. leading jet (corrected to L2+L3)
245  hists_["jet1Pt_"] = ibooker.book1D("Jet1Pt", "pt_{30,loose}(jet1)", 60, 0., 300.);
246  // eta of the 2. leading jet (corrected to L2+L3)
247  hists_["jet2Eta_"] = ibooker.book1D("Jet2Eta", "#eta_{30,loose}(jet2)", 60, -3., 3.);
248  // pt of the 2. leading jet (corrected to L2+L3)
249  hists_["jet2Pt_"] = ibooker.book1D("Jet2Pt", "pt_{30,loose}(jet2)", 60, 0., 300.);
250  // eta of the 3. leading jet (corrected to L2+L3)
251  hists_["jet3Eta_"] = ibooker.book1D("Jet3Eta", "#eta_{30,loose}(jet3)", 60, -3., 3.);
252  // pt of the 3. leading jet (corrected to L2+L3)
253  hists_["jet3Pt_"] = ibooker.book1D("Jet3Pt", "pt_{30,loose}(jet3)", 60, 0., 300.);
254  // eta of the 4. leading jet (corrected to L2+L3)
255  hists_["jet4Eta_"] = ibooker.book1D("Jet4Eta", "#eta_{30,loose}(jet4)", 60, -3., 3.);
256  // pt of the 4. leading jet (corrected to L2+L3)
257  hists_["jet4Pt_"] = ibooker.book1D("Jet4Pt", "pt_{30,loose}(jet4)", 60, 0., 300.);
258  // MET (tc)
259  hists_["slimmedMETsNoHF_"] = ibooker.book1D("slimmedMETsNoHF", "MET_{slimmedNoHF}", 40, 0., 200.);
260  // MET (pflow)
261  hists_["slimmedMETsPuppi_"] = ibooker.book1D("slimmedMETsPuppi", "MET_{slimmedPuppi}", 40, 0., 200.);
262  // dz for muons (to suppress cosmis)
263  hists_["muonDelZ_"] = ibooker.book1D("MuonDelZ", "d_{z}(#mu)", 50, -25., 25.);
264  // dxy for muons (to suppress cosmics)
265  hists_["muonDelXY_"] = ibooker.book2D("MuonDelXY", "d_{xy}(#mu)", 50, -0.1, 0.1, 50, -0.1, 0.1);
266 
267  // set axes titles for dxy for muons
268  hists_["muonDelXY_"]->setAxisTitle("x [cm]", 1);
269  hists_["muonDelXY_"]->setAxisTitle("y [cm]", 2);
270 
271  if (verbosity_ == VERBOSE)
272  return;
273 
274  // --- [DEBUG] --- //
275  // charged hadron isolation component of the candidate muon (depending on the
276  // decay channel)
277  hists_["muonChHadIso_"] = ibooker.book1D("MuonChHadIsoComp", "ChHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
278  // neutral hadron isolation component of the candidate muon (depending on the
279  // decay channel)
280  hists_["muonNeHadIso_"] = ibooker.book1D("MuonNeHadIsoComp", "NeHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
281  // photon isolation component of the candidate muon (depending on the decay
282  // channel)
283  hists_["muonPhIso_"] = ibooker.book1D("MuonPhIsoComp", "Photon_{IsoComponent}(#mu TightId)", 50, 0., 5.);
284  // charged hadron isolation component of the candidate electron (depending on
285  // the decay channel)
286  hists_["elecChHadIso_"] = ibooker.book1D("ElectronChHadIsoComp", "ChHad_{IsoComponent}(e TightId)", 50, 0., 5.);
287  // neutral hadron isolation component of the candidate electron (depending on
288  // the decay channel)
289  hists_["elecNeHadIso_"] = ibooker.book1D("ElectronNeHadIsoComp", "NeHad_{IsoComponent}(e TightId)", 50, 0., 5.);
290  // photon isolation component of the candidate electron (depending on the
291  // decay channel)
292  hists_["elecPhIso_"] = ibooker.book1D("ElectronPhIsoComp", "Photon_{IsoComponent}(e TightId)", 50, 0., 5.);
293  // multiplicity of btagged jets (for track counting high purity) with
294  // pt(L2L3)>30
295  //hists_["jetMultBPur_"] = ibooker.book1D("JetMultBPur",
296  // "N_{30}(TCHP)", 10, 0., 10.);
297  // btag discriminator for track counting high purity
298  //hists_["jetBDiscPur_"] = ibooker.book1D("JetBDiscPur",
299  // "Disc_{TCHP}(Jet)", 100, 0., 10.);
300  // multiplicity of btagged jets (for simple secondary vertex) with pt(L2L3)>30
301  //hists_["jetMultBVtx_"] = ibooker.book1D("JetMultBVtx",
302  // "N_{30}(SSVHE)", 10, 0., 10.);
303  // btag discriminator for simple secondary vertex
304  //hists_["jetBDiscVtx_"] = ibooker.book1D("JetBDiscVtx",
305  // "Disc_{SSVHE}(Jet)", 35, -1., 6.);
306  // multiplicity for combined secondary vertex
307  hists_["jetMultBCSVM_"] = ibooker.book1D("JetMultBCSVM", "N_{30}(CSVM)", 10, 0., 10.);
308  // btag discriminator for combined secondary vertex
309  hists_["jetBCSV_"] = ibooker.book1D("JetDiscCSV", "BJet Disc_{CSV}(JET)", 100, -1., 2.);
310  // pt of the 1. leading jet (uncorrected)
311  //hists_["jet1PtRaw_"] = ibooker.book1D("Jet1PtRaw", "pt_{Raw}(jet1)", 60, 0., 300.);
312  // pt of the 2. leading jet (uncorrected)
313  //hists_["jet2PtRaw_"] = ibooker.book1D("Jet2PtRaw", "pt_{Raw}(jet2)", 60, 0., 300.);
314  // pt of the 3. leading jet (uncorrected)
315  //hists_["jet3PtRaw_"] = ibooker.book1D("Jet3PtRaw", "pt_{Raw}(jet3)", 60, 0., 300.);
316  // pt of the 4. leading jet (uncorrected)
317  //hists_["jet4PtRaw_"] = ibooker.book1D("Jet4PtRaw", "pt_{Raw}(jet4)", 60, 0., 300.);
318  // selected events
319  hists_["eventLogger_"] = ibooker.book2D("EventLogger", "Logged Events", 9, 0., 9., 10, 0., 10.);
320 
321  // set axes titles for selected events
322  hists_["eventLogger_"]->getTH1()->SetOption("TEXT");
323  hists_["eventLogger_"]->setBinLabel(1, "Run", 1);
324  hists_["eventLogger_"]->setBinLabel(2, "Block", 1);
325  hists_["eventLogger_"]->setBinLabel(3, "Event", 1);
326  hists_["eventLogger_"]->setBinLabel(4, "pt_{L2L3}(jet1)", 1);
327  hists_["eventLogger_"]->setBinLabel(5, "pt_{L2L3}(jet2)", 1);
328  hists_["eventLogger_"]->setBinLabel(6, "pt_{L2L3}(jet3)", 1);
329  hists_["eventLogger_"]->setBinLabel(7, "pt_{L2L3}(jet4)", 1);
330  hists_["eventLogger_"]->setBinLabel(8, "M_{W}", 1);
331  hists_["eventLogger_"]->setBinLabel(9, "M_{Top}", 1);
332  hists_["eventLogger_"]->setAxisTitle("logged evts", 2);
333  return;
334  }
335 
337  // fetch trigger event if configured such
339 
341  if (!event.getByToken(triggerTable_, triggerTable))
342  return;
343  }
344 
345  /*
346  ------------------------------------------------------------
347 
348  Primary Vertex Monitoring
349 
350  ------------------------------------------------------------
351  */
352  // fill monitoring plots for primary verices
354  if (!event.getByToken(pvs_, pvs))
355  return;
356  const reco::Vertex& pver = pvs->front();
357 
358  unsigned int pvMult = 0;
359  if (pvs.isValid()) {
360  for (edm::View<reco::Vertex>::const_iterator pv = pvs->begin(); pv != pvs->end(); ++pv) {
361  bool isGood =
362  (!(pv->isFake()) && (pv->ndof() > 4.0) && (abs(pv->z()) < 24.0) && (abs(pv->position().Rho()) < 2.0));
363  if (!isGood)
364  continue;
365  pvMult++;
366  }
367  //std::cout<<" npv "<<testn<<endl;
368  }
369 
370  fill("pvMult_", pvMult);
371 
372  /*
373  ------------------------------------------------------------
374 
375  Run and Inst. Luminosity information (Inst. Lumi. filled now with a dummy
376  value=5.0)
377 
378  ------------------------------------------------------------
379  */
380 
381  //if (!event.eventAuxiliary().run()) return;
382 
383  //fill("RunNumb_", event.eventAuxiliary().run());
384 
385  //double dummy = 5.;
386  //fill("InstLumi_", dummy);
387 
388  /*
389  ------------------------------------------------------------
390 
391  Electron Monitoring
392 
393  ------------------------------------------------------------
394  */
395 
396  // fill monitoring plots for electrons
398  if (!event.getByToken(elecs_, elecs))
399  return;
400 
401  edm::Handle<double> _rhoHandle;
402  event.getByLabel(rhoTag, _rhoHandle);
403  //if (!event.getByToken(elecs_, elecs)) return;
404 
405  // check availability of electron id
407  if (!electronId_.isUninitialized()) {
408  if (!event.getByToken(electronId_, electronId))
409  return;
410  }
411 
412  // loop electron collection
413  unsigned int eMultIso = 0, eMult = 0;
414  std::vector<const pat::Electron*> isoElecs;
415 
416  for (edm::View<pat::Electron>::const_iterator elec = elecs->begin(); elec != elecs->end(); ++elec) {
417  if (true) { //loose id
418  if (!elecSelect_ || (*elecSelect_)(*elec)) {
419  double el_ChHadIso = elec->pfIsolationVariables().sumChargedHadronPt;
420  double el_NeHadIso = elec->pfIsolationVariables().sumNeutralHadronEt;
421  double el_PhIso = elec->pfIsolationVariables().sumPhotonEt;
422 
423  double rho = _rhoHandle.isValid() ? (float)(*_rhoHandle) : 0;
424  double absEta = abs(elec->superCluster()->eta());
425  double eA = 0;
426  if (absEta < 1.000)
427  eA = 0.1703;
428  else if (absEta < 1.479)
429  eA = 0.1715;
430  else if (absEta < 2.000)
431  eA = 0.1213;
432  else if (absEta < 2.200)
433  eA = 0.1230;
434  else if (absEta < 2.300)
435  eA = 0.1635;
436  else if (absEta < 2.400)
437  eA = 0.1937;
438  else if (absEta < 5.000)
439  eA = 0.2393;
440 
441  double el_pfRelIso = (el_ChHadIso + max(0., el_NeHadIso + el_PhIso - rho * eA)) / elec->pt();
442 
443  ++eMult;
444 
445  if (eMult == 1) {
446  fill("elecRelIso_", el_pfRelIso);
447  fill("elecChHadIso_", el_ChHadIso);
448  fill("elecNeHadIso_", el_NeHadIso);
449  fill("elecPhIso_", el_PhIso);
450  }
451  //loose Iso
452  //if(!((el_pfRelIso<0.0994 && absEta<1.479)||(el_pfRelIso<0.107 && absEta>1.479)))continue;
453 
454  //tight Iso
455  if (!((el_pfRelIso < 0.0588 && absEta < 1.479) || (el_pfRelIso < 0.0571 && absEta > 1.479)))
456  continue;
457  ++eMultIso;
458 
459  if (eMultIso == 1) {
460  // restrict to the leading electron
461  fill("elecPt_", elec->pt());
462  fill("elecEta_", elec->eta());
463  fill("elecPhi_", elec->phi());
464  }
465  }
466  }
467  }
468  //fill("elecMult_", eMult);
469  fill("elecMultTight_", eMultIso);
470 
471  /*
472  ------------------------------------------------------------
473 
474  Muon Monitoring
475 
476  ------------------------------------------------------------
477  */
478 
479  // fill monitoring plots for muons
480  unsigned int mMult = 0, mTight = 0;
481 
484 
485  if (!event.getByToken(muons_, muons))
486  return;
487 
488  for (edm::View<pat::Muon>::const_iterator muon = muons->begin(); muon != muons->end(); ++muon) {
489  // restrict to globalMuons
490  if (muon->isGlobalMuon()) {
491  fill("muonDelZ_", muon->innerTrack()->vz()); // CB using inner track!
492  fill("muonDelXY_", muon->innerTrack()->vx(), muon->innerTrack()->vy());
493 
494  // apply preselection loose muon
495  if (!muonSelect_ || (*muonSelect_)(*muon)) {
496  //loose muon count
497  ++mMult;
498 
499  double chHadPt = muon->pfIsolationR04().sumChargedHadronPt;
500  double neHadEt = muon->pfIsolationR04().sumNeutralHadronEt;
501  double phoEt = muon->pfIsolationR04().sumPhotonEt;
502 
503  double pfRelIso = (chHadPt + max(0., neHadEt + phoEt - 0.5 * muon->pfIsolationR04().sumPUPt)) /
504  muon->pt(); // CB dBeta corrected iso!
505 
506  if (!(muon->isGlobalMuon() && muon->isPFMuon() && muon->globalTrack()->normalizedChi2() < 10. &&
507  muon->globalTrack()->hitPattern().numberOfValidMuonHits() > 0 && muon->numberOfMatchedStations() > 1 &&
508  fabs(muon->muonBestTrack()->dxy(pver.position())) < 0.2 &&
509  fabs(muon->muonBestTrack()->dz(pver.position())) < 0.5 &&
510  muon->innerTrack()->hitPattern().numberOfValidPixelHits() > 0 &&
511  muon->innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5))
512  continue;
513 
514  if (mMult == 1) {
515  // restrict to leading muon
516  fill("muonRelIso_", pfRelIso);
517  fill("muonChHadIso_", chHadPt);
518  fill("muonNeHadIso_", neHadEt);
519  fill("muonPhIso_", phoEt);
520  fill("muonRelIso_", pfRelIso);
521  }
522 
523  if (!(pfRelIso < 0.15))
524  continue;
525 
526  ++mTight;
527 
528  //tight id
529  if (mTight == 1) {
530  // restrict to leading muon
531 
532  fill("muonPt_", muon->pt());
533  fill("muonEta_", muon->eta());
534  fill("muonPhi_", muon->phi());
535  }
536  }
537  }
538  }
539  fill("muonMult_", mMult); //loose
540  fill("muonMultTight_", mTight); //tight id & iso
541 
542  /*
543  ------------------------------------------------------------
544 
545  Jet Monitoring
546 
547  ------------------------------------------------------------
548  */
549 
550  // loop jet collection
551  std::vector<pat::Jet> correctedJets;
552  std::vector<double> JetTagValues;
553  unsigned int mult = 0, loosemult = 0, multBCSVM = 0;
554 
556  if (!event.getByToken(jets_, jets)) {
557  return;
558  }
559 
560  for (edm::View<pat::Jet>::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) {
561  // check jetID for calo jets
562  //unsigned int idx = jet - jets->begin();
563 
564  pat::Jet sel = *jet;
565 
566  if (!(*jetSelect)(sel))
567  continue;
568  // if (!jetSelect(sel)) continue;
569 
570  // prepare jet to fill monitor histograms
571  pat::Jet monitorJet = *jet;
572 
573  ++mult;
574 
575  if (monitorJet.chargedHadronEnergyFraction() > 0 && monitorJet.chargedMultiplicity() > 0 &&
576  monitorJet.chargedEmEnergyFraction() < 0.99 && monitorJet.neutralHadronEnergyFraction() < 0.99 &&
577  monitorJet.neutralEmEnergyFraction() < 0.99 &&
578  (monitorJet.chargedMultiplicity() + monitorJet.neutralMultiplicity()) > 1) {
579  correctedJets.push_back(monitorJet);
580  ++loosemult; // determine jet multiplicity
581 
582  fill("jetBCSV_",
583  monitorJet.bDiscriminator(
584  "pfCombinedInclusiveSecondaryVertexV2BJetTags")); //hard coded discriminator and value right now.
585  if (monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags") > 0.89)
586  ++multBCSVM;
587 
588  // Fill a vector with Jet b-tag WP for later M3+1tag calculation: CSV
589  // tagger
590  JetTagValues.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
591  // }
592  // fill pt (raw or L2L3) for the leading four jets
593  if (loosemult == 1) {
594  //cout<<" jet id= "<<monitorJet.chargedHadronEnergyFraction()<<endl;
595 
596  fill("jet1Pt_", monitorJet.pt());
597  //fill("jet1PtRaw_", jet->pt());
598  fill("jet1Eta_", monitorJet.eta());
599  };
600  if (loosemult == 2) {
601  fill("jet2Pt_", monitorJet.pt());
602  //fill("jet2PtRaw_", jet->pt());
603  fill("jet2Eta_", monitorJet.eta());
604  }
605  if (loosemult == 3) {
606  fill("jet3Pt_", monitorJet.pt());
607  //fill("jet3PtRaw_", jet->pt());
608  fill("jet3Eta_", monitorJet.eta());
609  }
610  if (loosemult == 4) {
611  fill("jet4Pt_", monitorJet.pt());
612  //fill("jet4PtRaw_", jet->pt());
613  fill("jet4Eta_", monitorJet.eta());
614  }
615  }
616  }
617  fill("jetMult_", mult);
618  fill("jetLooseMult_", loosemult);
619  fill("jetMultBCSVM_", multBCSVM);
620 
621  /*
622  ------------------------------------------------------------
623 
624  MET Monitoring
625 
626  ------------------------------------------------------------
627  */
628 
629  // fill monitoring histograms for met
630  for (std::vector<edm::EDGetTokenT<edm::View<pat::MET>>>::const_iterator met_ = mets_.begin(); met_ != mets_.end();
631  ++met_) {
633  if (!event.getByToken(*met_, met))
634  continue;
635  if (met->begin() != met->end()) {
636  unsigned int idx = met_ - mets_.begin();
637  if (idx == 0)
638  fill("slimmedMETs_", met->begin()->et());
639  if (idx == 1)
640  fill("slimmedMETsNoHF_", met->begin()->et());
641  if (idx == 2)
642  fill("slimmedMETsPuppi_", met->begin()->et());
643  }
644  }
645 
646  /*
647  ------------------------------------------------------------
648 
649  Event Monitoring
650 
651  ------------------------------------------------------------
652  */
653 
654  // fill W boson and top mass estimates
655 
656  Calculate_miniAOD eventKinematics(MAXJETS, WMASS);
657  double wMass = eventKinematics.massWBoson(correctedJets);
658  double topMass = eventKinematics.massTopQuark(correctedJets);
659  if (wMass >= 0 && topMass >= 0) {
660  fill("massW_", wMass);
661  fill("massTop_", topMass);
662  }
663 
664  // Fill M3 with Btag (CSV Tight) requirement
665 
666  // if (!includeBTag_) return;
667  if (correctedJets.size() != JetTagValues.size())
668  return;
669  double btopMass = eventKinematics.massBTopQuark(correctedJets, JetTagValues, 0.89); //hard coded CSVv2 value
670 
671  if (btopMass >= 0)
672  fill("massBTop_", btopMass);
673 
674  // fill plots for trigger monitoring
675  if ((lowerEdge_ == -1. && upperEdge_ == -1.) || (lowerEdge_ < wMass && wMass < upperEdge_)) {
677  fill(event, *triggerTable, "trigger", triggerPaths_);
678  if (logged_ <= hists_.find("eventLogger_")->second->getNbinsY()) {
679  // log runnumber, lumi block, event number & some
680  // more pysics infomation for interesting events
681  fill("eventLogger_", 0.5, logged_ + 0.5, event.eventAuxiliary().run());
682  fill("eventLogger_", 1.5, logged_ + 0.5, event.eventAuxiliary().luminosityBlock());
683  fill("eventLogger_", 2.5, logged_ + 0.5, event.eventAuxiliary().event());
684  //if (correctedJets.size() > 0)
685  if (!correctedJets.empty())
686  fill("eventLogger_", 3.5, logged_ + 0.5, correctedJets[0].pt());
687  if (correctedJets.size() > 1)
688  fill("eventLogger_", 4.5, logged_ + 0.5, correctedJets[1].pt());
689  if (correctedJets.size() > 2)
690  fill("eventLogger_", 5.5, logged_ + 0.5, correctedJets[2].pt());
691  if (correctedJets.size() > 3)
692  fill("eventLogger_", 6.5, logged_ + 0.5, correctedJets[3].pt());
693  fill("eventLogger_", 7.5, logged_ + 0.5, wMass);
694  fill("eventLogger_", 8.5, logged_ + 0.5, topMass);
695  ++logged_;
696  }
697  }
698  }
699 } // namespace TopSingleLepton_miniAOD
700 
702  : vertexSelect_(nullptr),
703  beamspot_(""),
704  beamspotSelect_(nullptr),
705  MuonStep(nullptr),
706  ElectronStep(nullptr),
707  PvStep(nullptr),
708  METStep(nullptr) {
709  JetSteps.clear();
710 
711  // configure preselection
712  edm::ParameterSet presel = cfg.getParameter<edm::ParameterSet>("preselection");
713  if (presel.existsAs<edm::ParameterSet>("trigger")) {
715  triggerTable__ = consumes<edm::TriggerResults>(trigger.getParameter<edm::InputTag>("src"));
716  triggerPaths_ = trigger.getParameter<std::vector<std::string>>("select");
717  }
718  if (presel.existsAs<edm::ParameterSet>("beamspot")) {
720  beamspot_ = beamspot.getParameter<edm::InputTag>("src");
721  beamspot__ = consumes<reco::BeamSpot>(beamspot.getParameter<edm::InputTag>("src"));
723  }
724 
725  // conifgure the selection
726  sel_ = cfg.getParameter<std::vector<edm::ParameterSet>>("selection");
727  setup_ = cfg.getParameter<edm::ParameterSet>("setup");
728  for (unsigned int i = 0; i < sel_.size(); ++i) {
729  selectionOrder_.push_back(sel_.at(i).getParameter<std::string>("label"));
730  selection_[selectionStep(selectionOrder_.back())] = std::make_pair(
731  sel_.at(i),
732  std::unique_ptr<TopSingleLepton_miniAOD::MonitorEnsemble>(new TopSingleLepton_miniAOD::MonitorEnsemble(
733  selectionStep(selectionOrder_.back()).c_str(), setup_, consumesCollector())));
734  }
735  for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
736  ++selIt) {
737  std::string key = selectionStep(*selIt), type = objectType(*selIt);
738  if (selection_.find(key) != selection_.end()) {
739  if (type == "muons") {
741  }
742  if (type == "elecs") {
744  }
745  if (type == "pvs") {
747  }
748  if (type == "jets") {
749  JetSteps.push_back(std::unique_ptr<SelectionStep<pat::Jet>>(
751  }
752 
753  if (type == "met") {
755  }
756  }
757  }
758 }
760  for (auto selIt = selection_.begin(); selIt != selection_.end(); ++selIt) {
761  selIt->second.second->book(ibooker);
762  }
763 }
767  if (!event.getByToken(triggerTable__, triggerTable))
768  return;
769  if (!accept(event, *triggerTable, triggerPaths_))
770  return;
771  }
772  if (!beamspot__.isUninitialized()) {
774  if (!event.getByToken(beamspot__, beamspot))
775  return;
776  if (!(*beamspotSelect_)(*beamspot))
777  return;
778  }
779 
780  unsigned int passed = 0;
781  unsigned int nJetSteps = -1;
782 
783  for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
784  ++selIt) {
785  std::string key = selectionStep(*selIt), type = objectType(*selIt);
786  if (selection_.find(key) != selection_.end()) {
787  if (type == "empty") {
788  selection_[key].second->fill(event, setup);
789  }
790  if (type == "muons" && MuonStep != nullptr) {
791  if (MuonStep->select(event)) {
792  ++passed;
793 
794  selection_[key].second->fill(event, setup);
795  } else
796  break;
797  }
798 
799  if (type == "elecs" && ElectronStep != nullptr) {
800  if (ElectronStep->select(event)) {
801  ++passed;
802  selection_[key].second->fill(event, setup);
803  } else
804  break;
805  }
806 
807  if (type == "pvs" && PvStep != nullptr) {
808  if (PvStep->selectVertex(event)) {
809  ++passed;
810  selection_[key].second->fill(event, setup);
811  } else
812  break;
813  }
814 
815  if (type == "jets") {
816  nJetSteps++;
817  if (JetSteps[nJetSteps] != nullptr) {
818  if (JetSteps[nJetSteps]->select(event, setup)) {
819  ++passed;
820  selection_[key].second->fill(event, setup);
821  } else
822  break;
823  }
824  }
825 
826  if (type == "met" && METStep != nullptr) {
827  if (METStep->select(event)) {
828  ++passed;
829  selection_[key].second->fill(event, setup);
830  } else
831  break;
832  }
833  }
834  }
835 }
836 
837 // Local Variables:
838 // show-trailing-whitespace: t
839 // truncate-lines: t
840 // End:
type
Definition: HCALResponse.h:21
std::unique_ptr< StringCutObjectSelector< pat::Muon > > muonIso_
extra isolation criterion on muon
T getParameter(std::string const &) const
std::unique_ptr< StringCutObjectSelector< reco::JetID > > jetIDSelect_
extra jetID selection on calo jets
std::vector< edm::EDGetTokenT< edm::View< pat::MET > > > mets_
considers a vector of METs
float neutralHadronEnergyFraction() const
neutralHadronEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:404
std::unique_ptr< StringCutObjectSelector< pat::Muon > > muonSelect_
extra selection on muons
EventAuxiliary const & eventAuxiliary() const override
Definition: Event.h:93
double eta() const final
momentum pseudorapidity
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:160
std::unique_ptr< SelectionStep< reco::Vertex > > PvStep
std::string objectType(const std::string &label)
std::unique_ptr< StringCutObjectSelector< pat::Electron > > elecIso_
extra isolation criterion on electron
edm::EDGetTokenT< edm::View< pat::Jet > > jets_
input sources for monitoring
float chargedHadronEnergyFraction() const
chargedHadronEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:400
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label
void triggerBinLabels(std::string channel, const std::vector< std::string > labels)
set configurable labels for trigger monitoring histograms
#define nullptr
float chargedEmEnergyFraction() const
chargedEmEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:408
edm::EDGetTokenT< edm::View< pat::Electron > > elecs_
static const unsigned int MAXJETS
RunNumber_t run() const
double pt() const final
transverse momentum
std::unique_ptr< StringCutObjectSelector< reco::BeamSpot > > beamspotSelect_
string cut selector
int neutralMultiplicity() const
neutralMultiplicity
Definition: Jet.h:466
std::map< std::string, std::pair< edm::ParameterSet, std::unique_ptr< TopSingleLepton_miniAOD::MonitorEnsemble > > > selection_
float bDiscriminator(const std::string &theLabel) const
-— methods for accessing b-tagging info -—
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:30
const Point & position() const
position
Definition: Vertex.h:113
std::vector< edm::ParameterSet > sel_
std::vector< std::string > selectionOrder_
TopSingleLeptonDQM_miniAOD(const edm::ParameterSet &cfg)
default constructor
electronId
when omitted electron plots will be filled w/o cut on electronId
LuminosityBlockNumber_t luminosityBlock() const
char const * label
edm::EDGetTokenT< reco::BeamSpot > beamspot__
muonExtras
when omitted isolated electron multiplicity plot will be equi- valent to inclusive electron multiplic...
std::string selectionStep(const std::string &label)
std::unique_ptr< StringCutObjectSelector< pat::Jet > > jetSelect
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
std::unique_ptr< StringCutObjectSelector< reco::Vertex > > pvSelect_
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
edm::EDGetTokenT< edm::TriggerResults > triggerTable_
trigger table
def pv(vc)
Definition: MetAnalyzer.py:7
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
triggerExtras
[optional] : when omitted no mass window will be applied for the W mass befor filling the event monit...
std::map< std::string, MonitorElement * > hists_
histogram container
std::vector< std::string > triggerPaths_
trigger paths
std::unique_ptr< SelectionStep< pat::MET > > METStep
std::vector< std::unique_ptr< SelectionStep< pat::Jet > > > JetSteps
bool isValid() const
Definition: HandleBase.h:70
void analyze(const edm::Event &event, const edm::EventSetup &setup) override
do this during the event loop
std::unique_ptr< SelectionStep< pat::Muon > > MuonStep
edm::EDGetTokenT< edm::View< pat::Muon > > muons_
void fill(const edm::Event &event, const edm::EventSetup &setup)
fill monitor histograms with electronId and jetCorrections
edm::EDGetTokenT< edm::View< reco::Vertex > > pvs_
double lowerEdge_
mass window upper and lower edge
void book(DQMStore::IBooker &ibooker)
book histograms in subdirectory directory
Analysis-level calorimeter jet class.
Definition: Jet.h:77
int logged_
number of logged interesting events
Templated helper class to allow a selection on a certain object collection.
select
when omitted electron plots will be filled w/o cut on electronId electronId = cms.PSet( src = cms.InputTag("mvaTrigV0"), cutValue = cms.double(0.5) ), when omitted electron plots will be filled w/o additional pre- selection of the electron candidates
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
bool isUninitialized() const
Definition: EDGetToken.h:70
std::unique_ptr< StringCutObjectSelector< pat::Electron > > elecSelect_
extra selection on electrons
float neutralEmEnergyFraction() const
neutralEmEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:412
Level verbosity_
verbosity level for booking
std::unique_ptr< SelectionStep< pat::Electron > > ElectronStep
edm::EDGetTokenT< edm::TriggerResults > triggerTable__
trigger table
int chargedMultiplicity() const
chargedMultiplicity
Definition: Jet.h:746
EventNumber_t event() const
elecExtras
[optional] : when omitted all monitoring plots for primary vertices will be filled w/o extras pvExtra...
jetExtras
when omitted isolated muon multiplicity plot will be equi- valent to inclusive muon multiplicity plot...
Definition: event.py:1
Definition: Run.h:45
monitoring
[optional] : when omitted the verbosity level is set to STANDARD
edm::EDGetTokenT< reco::JetIDValueMap > jetIDLabel_
jetID as an extra selection type