CMS 3D CMS Logo

SingleTopTChannelLeptonDQM_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
43  edm::ParameterSet sources = cfg.getParameter<edm::ParameterSet>("sources");
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")) {
57  edm::ParameterSet elecExtras = cfg.getParameter<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")) {
82  edm::ParameterSet pvExtras = cfg.getParameter<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")) {
86  pvSelect_.reset(new StringCutObjectSelector<reco::Vertex>(pvExtras.getParameter<std::string>("select")));
87  }
88  }
89  // muonExtras are optional; they may be omitted or empty
90  if (cfg.existsAs<edm::ParameterSet>("muonExtras")) {
91  edm::ParameterSet muonExtras = cfg.getParameter<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")) {
95  muonSelect_.reset(new StringCutObjectSelector<pat::Muon>(muonExtras.getParameter<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")) {
107  edm::ParameterSet jetExtras = cfg.getParameter<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")) {
115  edm::ParameterSet jetID = jetExtras.getParameter<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")) {
130  edm::ParameterSet triggerExtras = cfg.getParameter<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")) {
139  edm::ParameterSet massExtras = cfg.getParameter<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")) {
150  edm::ParameterSet monitoring = cfg.getParameter<edm::ParameterSet>("monitoring");
151  if (monitoring.getParameter<std::string>("verbosity") == "DEBUG")
152  verbosity_ = DEBUG;
153  if (monitoring.getParameter<std::string>("verbosity") == "VERBOSE")
155  if (monitoring.getParameter<std::string>("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 
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 
214  // W mass transverse estimate mu
215  hists_["MTWm_"] = ibooker.book1D("MTWm", "M_{T}^{W}(#mu)", 60, 0., 300.);
216  // Top mass transverse estimate mu
217  hists_["mMTT_"] = ibooker.book1D("mMTT", "M_{T}^{t}(#mu)", 50, 0., 500.);
218 
219  // W mass transverse estimate e
220  hists_["MTWe_"] = ibooker.book1D("MTWe", "M_{T}^{W}(e)", 60, 0., 300.);
221  // Top mass transverse estimate e
222  hists_["eMTT_"] = ibooker.book1D("eMTT", "M_{T}^{t}(e)", 50, 0., 500.);
223 
224  // set bin labels for trigger monitoring
226 
227  if (verbosity_ == STANDARD)
228  return;
229 
230  // --- [VERBOSE] --- //
231  // eta of the leading muon
232  hists_["muonEta_"] = ibooker.book1D("MuonEta", "#eta(#mu TightId,TightIso)", 30, -3., 3.);
233  // relative isolation of the candidate muon (depending on the decay channel)
234  hists_["muonPhi_"] = ibooker.book1D("MuonPhi", "#phi(#mu TightId,TightIso)", 40, -4., 4.);
235  hists_["muonRelIso_"] = ibooker.book1D("MuonRelIso", "Iso_{Rel}(#mu TightId) (#Delta#beta Corrected)", 50, 0., 1.);
236 
237  // eta of the leading electron
238  hists_["elecEta_"] = ibooker.book1D("ElecEta", "#eta(e TightId, TightIso)", 30, -3., 3.);
239  hists_["elecPhi_"] = ibooker.book1D("ElecPhi", "#phi(e TightId, TightIso)", 40, -4., 4.);
240  // std isolation variable of the leading electron
241  hists_["elecRelIso_"] = ibooker.book1D("ElecRelIso", "Iso_{Rel}(e TightId)", 50, 0., 1.);
242 
243  hists_["elecMultTight_"] = ibooker.book1D("ElecMultTight", "N_{TightIso,TightId}(e)", 10, 0., 10.);
244 
245  // multiplicity of btagged jets (for track counting high efficiency) with
246  // pt(L2L3)>30
247  //hists_["jetMultBEff_"] = ibooker.book1D("JetMultBEff",
248  // "N_{30}(TCHE)", 10, 0., 10.);
249  // btag discriminator for track counting high efficiency for jets with
250  // pt(L2L3)>30
251  //hists_["jetBDiscEff_"] = ibooker.book1D("JetBDiscEff",
252  // "Disc_{TCHE}(jet)", 100, 0., 10.);
253  // eta of the 1. leading jet (corrected to L2+L3)
254  hists_["jet1Eta_"] = ibooker.book1D("Jet1Eta", "#eta_{30,loose}(jet1)", 60, -3., 3.);
255  // pt of the 1. leading jet (corrected to L2+L3)
256  hists_["jet1Pt_"] = ibooker.book1D("Jet1Pt", "pt_{30,loose}(jet1)", 60, 0., 300.);
257  // eta of the 2. leading jet (corrected to L2+L3)
258  hists_["jet2Eta_"] = ibooker.book1D("Jet2Eta", "#eta_{30,loose}(jet2)", 60, -3., 3.);
259  // pt of the 2. leading jet (corrected to L2+L3)
260  hists_["jet2Pt_"] = ibooker.book1D("Jet2Pt", "pt_{30,loose}(jet2)", 60, 0., 300.);
261  // eta of the 3. leading jet (corrected to L2+L3)
262  //hists_["jet3Eta_"] = ibooker.book1D("Jet3Eta", "#eta_{30,loose}(jet3)", 60, -3., 3.);
263  // pt of the 3. leading jet (corrected to L2+L3)
264  //hists_["jet3Pt_"] = ibooker.book1D("Jet3Pt", "pt_{30,loose}(jet3)", 60, 0., 300.);
265  // eta of the 4. leading jet (corrected to L2+L3)
266  //hists_["jet4Eta_"] = ibooker.book1D("Jet4Eta", "#eta_{30,loose}(jet4)", 60, -3., 3.);
267  // pt of the 4. leading jet (corrected to L2+L3)
268  //hists_["jet4Pt_"] = ibooker.book1D("Jet4Pt", "pt_{30,loose}(jet4)", 60, 0., 300.);
269  // MET (tc)
270  hists_["slimmedMETsNoHF_"] = ibooker.book1D("slimmedMETsNoHF", "MET_{slimmedNoHF}", 40, 0., 200.);
271  // MET (pflow)
272  hists_["slimmedMETsPuppi_"] = ibooker.book1D("slimmedMETsPuppi", "MET_{slimmedPuppi}", 40, 0., 200.);
273  // dz for muons (to suppress cosmis)
274  hists_["muonDelZ_"] = ibooker.book1D("MuonDelZ", "d_{z}(#mu)", 50, -25., 25.);
275  // dxy for muons (to suppress cosmics)
276  hists_["muonDelXY_"] = ibooker.book2D("MuonDelXY", "d_{xy}(#mu)", 50, -0.1, 0.1, 50, -0.1, 0.1);
277 
278  // set axes titles for dxy for muons
279  hists_["muonDelXY_"]->setAxisTitle("x [cm]", 1);
280  hists_["muonDelXY_"]->setAxisTitle("y [cm]", 2);
281 
282  if (verbosity_ == VERBOSE)
283  return;
284 
285  // --- [DEBUG] --- //
286  // charged hadron isolation component of the candidate muon (depending on the
287  // decay channel)
288  hists_["muonChHadIso_"] = ibooker.book1D("MuonChHadIsoComp", "ChHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
289  // neutral hadron isolation component of the candidate muon (depending on the
290  // decay channel)
291  hists_["muonNeHadIso_"] = ibooker.book1D("MuonNeHadIsoComp", "NeHad_{IsoComponent}(#mu TightId)", 50, 0., 5.);
292  // photon isolation component of the candidate muon (depending on the decay
293  // channel)
294  hists_["muonPhIso_"] = ibooker.book1D("MuonPhIsoComp", "Photon_{IsoComponent}(#mu TightId)", 50, 0., 5.);
295  // charged hadron isolation component of the candidate electron (depending on
296  // the decay channel)
297  hists_["elecChHadIso_"] = ibooker.book1D("ElectronChHadIsoComp", "ChHad_{IsoComponent}(e TightId)", 50, 0., 5.);
298  // neutral hadron isolation component of the candidate electron (depending on
299  // the decay channel)
300  hists_["elecNeHadIso_"] = ibooker.book1D("ElectronNeHadIsoComp", "NeHad_{IsoComponent}(e TightId)", 50, 0., 5.);
301  // photon isolation component of the candidate electron (depending on the
302  // decay channel)
303  hists_["elecPhIso_"] = ibooker.book1D("ElectronPhIsoComp", "Photon_{IsoComponent}(e TightId)", 50, 0., 5.);
304  // multiplicity of btagged jets (for track counting high purity) with
305  // pt(L2L3)>30
306  //hists_["jetMultBPur_"] = ibooker.book1D("JetMultBPur",
307  // "N_{30}(TCHP)", 10, 0., 10.);
308  // btag discriminator for track counting high purity
309  //hists_["jetBDiscPur_"] = ibooker.book1D("JetBDiscPur",
310  // "Disc_{TCHP}(Jet)", 100, 0., 10.);
311  // multiplicity of btagged jets (for simple secondary vertex) with pt(L2L3)>30
312  //hists_["jetMultBVtx_"] = ibooker.book1D("JetMultBVtx",
313  // "N_{30}(SSVHE)", 10, 0., 10.);
314  // btag discriminator for simple secondary vertex
315  //hists_["jetBDiscVtx_"] = ibooker.book1D("JetBDiscVtx",
316  // "Disc_{SSVHE}(Jet)", 35, -1., 6.);
317  // multiplicity for combined secondary vertex
318  hists_["jetMultBCSVM_"] = ibooker.book1D("JetMultBCSVM", "N_{30}(CSVM)", 10, 0., 10.);
319  // btag discriminator for combined secondary vertex
320  hists_["jetBCSV_"] = ibooker.book1D("JetDiscCSV", "BJet Disc_{CSV}(JET)", 100, -1., 2.);
321  // pt of the 1. leading jet (uncorrected)
322  //hists_["jet1PtRaw_"] = ibooker.book1D("Jet1PtRaw", "pt_{Raw}(jet1)", 60, 0., 300.);
323  // pt of the 2. leading jet (uncorrected)
324  //hists_["jet2PtRaw_"] = ibooker.book1D("Jet2PtRaw", "pt_{Raw}(jet2)", 60, 0., 300.);
325  // pt of the 3. leading jet (uncorrected)
326  //hists_["jet3PtRaw_"] = ibooker.book1D("Jet3PtRaw", "pt_{Raw}(jet3)", 60, 0., 300.);
327  // pt of the 4. leading jet (uncorrected)
328  //hists_["jet4PtRaw_"] = ibooker.book1D("Jet4PtRaw", "pt_{Raw}(jet4)", 60, 0., 300.);
329  // selected events
330  hists_["eventLogger_"] = ibooker.book2D("EventLogger", "Logged Events", 9, 0., 9., 10, 0., 10.);
331 
332  // set axes titles for selected events
333  hists_["eventLogger_"]->getTH1()->SetOption("TEXT");
334  hists_["eventLogger_"]->setBinLabel(1, "Run", 1);
335  hists_["eventLogger_"]->setBinLabel(2, "Block", 1);
336  hists_["eventLogger_"]->setBinLabel(3, "Event", 1);
337  hists_["eventLogger_"]->setBinLabel(4, "pt_{L2L3}(jet1)", 1);
338  hists_["eventLogger_"]->setBinLabel(5, "pt_{L2L3}(jet2)", 1);
339  hists_["eventLogger_"]->setBinLabel(6, "pt_{L2L3}(jet3)", 1);
340  hists_["eventLogger_"]->setBinLabel(7, "pt_{L2L3}(jet4)", 1);
341  hists_["eventLogger_"]->setBinLabel(8, "M_{W}", 1);
342  hists_["eventLogger_"]->setBinLabel(9, "M_{Top}", 1);
343  hists_["eventLogger_"]->setAxisTitle("logged evts", 2);
344  return;
345  }
346 
348  // fetch trigger event if configured such
350 
352  if (!event.getByToken(triggerTable_, triggerTable))
353  return;
354  }
355 
356  /*
357  ------------------------------------------------------------
358 
359  Primary Vertex Monitoring
360 
361  ------------------------------------------------------------
362  */
363  // fill monitoring plots for primary verices
365  if (!event.getByToken(pvs_, pvs))
366  return;
367  const reco::Vertex& pver = pvs->front();
368 
369  unsigned int pvMult = 0;
370  if (pvs.isValid()) {
371  for (edm::View<reco::Vertex>::const_iterator pv = pvs->begin(); pv != pvs->end(); ++pv) {
372  bool isGood =
373  (!(pv->isFake()) && (pv->ndof() > 4.0) && (abs(pv->z()) < 24.0) && (abs(pv->position().Rho()) < 2.0));
374  if (!isGood)
375  continue;
376  pvMult++;
377  }
378  //std::cout<<" npv "<<testn<<endl;
379  }
380 
381  fill("pvMult_", pvMult);
382 
383  /*
384  ------------------------------------------------------------
385 
386  Run and Inst. Luminosity information (Inst. Lumi. filled now with a dummy
387  value=5.0)
388 
389  ------------------------------------------------------------
390  */
391 
392  //if (!event.eventAuxiliary().run()) return;
393 
394  //fill("RunNumb_", event.eventAuxiliary().run());
395 
396  //double dummy = 5.;
397  //fill("InstLumi_", dummy);
398 
399  /*
400  ------------------------------------------------------------
401 
402  Electron Monitoring
403 
404  ------------------------------------------------------------
405  */
406 
407  // fill monitoring plots for electrons
409  if (!event.getByToken(elecs_, elecs))
410  return;
411 
412  edm::Handle<double> _rhoHandle;
413  event.getByLabel(rhoTag, _rhoHandle);
414  //if (!event.getByToken(elecs_, elecs)) return;
415 
416  // check availability of electron id
418  if (!electronId_.isUninitialized()) {
419  if (!event.getByToken(electronId_, electronId))
420  return;
421  }
422 
423  // loop electron collection
424  unsigned int eMultIso = 0, eMult = 0;
425  std::vector<const pat::Electron*> isoElecs;
426 
428 
429  for (edm::View<pat::Electron>::const_iterator elec = elecs->begin(); elec != elecs->end(); ++elec) {
430  if (true) { //loose id
431  if (!elecSelect_ || (*elecSelect_)(*elec)) {
432  double el_ChHadIso = elec->pfIsolationVariables().sumChargedHadronPt;
433  double el_NeHadIso = elec->pfIsolationVariables().sumNeutralHadronEt;
434  double el_PhIso = elec->pfIsolationVariables().sumPhotonEt;
435 
436  double rho = _rhoHandle.isValid() ? (float)(*_rhoHandle) : 0;
437  double absEta = abs(elec->superCluster()->eta());
438  double eA = 0;
439  if (absEta < 1.000)
440  eA = 0.1703;
441  else if (absEta < 1.479)
442  eA = 0.1715;
443  else if (absEta < 2.000)
444  eA = 0.1213;
445  else if (absEta < 2.200)
446  eA = 0.1230;
447  else if (absEta < 2.300)
448  eA = 0.1635;
449  else if (absEta < 2.400)
450  eA = 0.1937;
451  else if (absEta < 5.000)
452  eA = 0.2393;
453 
454  double el_pfRelIso = (el_ChHadIso + max(0., el_NeHadIso + el_PhIso - rho * eA)) / elec->pt();
455 
456  ++eMult;
457 
458  if (eMult == 1) {
459  fill("elecRelIso_", el_pfRelIso);
460  fill("elecChHadIso_", el_ChHadIso);
461  fill("elecNeHadIso_", el_NeHadIso);
462  fill("elecPhIso_", el_PhIso);
463  }
464  //loose Iso
465  //if(!((el_pfRelIso<0.0994 && absEta<1.479)||(el_pfRelIso<0.107 && absEta>1.479)))continue;
466 
467  //tight Iso
468  if (!((el_pfRelIso < 0.0588 && absEta < 1.479) || (el_pfRelIso < 0.0571 && absEta > 1.479)))
469  continue;
470  ++eMultIso;
471 
472  if (eMultIso == 1) {
473  // restrict to the leading electron
474  e = *elec;
475 
476  fill("elecPt_", elec->pt());
477  fill("elecEta_", elec->eta());
478  fill("elecPhi_", elec->phi());
479  }
480  }
481  }
482  }
483  //fill("elecMult_", eMult);
484  fill("elecMultTight_", eMultIso);
485 
486  /*
487  ------------------------------------------------------------
488 
489  Muon Monitoring
490 
491  ------------------------------------------------------------
492  */
493 
494  // fill monitoring plots for muons
495  unsigned int mMult = 0, mTight = 0;
496 
498 
499  pat::Muon mu;
500 
502 
503  if (!event.getByToken(muons_, muons))
504  return;
505 
506  for (edm::View<pat::Muon>::const_iterator muon = muons->begin(); muon != muons->end(); ++muon) {
507  // restrict to globalMuons
508  if (muon->isGlobalMuon()) {
509  fill("muonDelZ_", muon->innerTrack()->vz()); // CB using inner track!
510  fill("muonDelXY_", muon->innerTrack()->vx(), muon->innerTrack()->vy());
511 
512  // apply preselection loose muon
513  if (!muonSelect_ || (*muonSelect_)(*muon)) {
514  //loose muon count
515  ++mMult;
516 
517  double chHadPt = muon->pfIsolationR04().sumChargedHadronPt;
518  double neHadEt = muon->pfIsolationR04().sumNeutralHadronEt;
519  double phoEt = muon->pfIsolationR04().sumPhotonEt;
520 
521  double pfRelIso = (chHadPt + max(0., neHadEt + phoEt - 0.5 * muon->pfIsolationR04().sumPUPt)) /
522  muon->pt(); // CB dBeta corrected iso!
523 
524  if (!(muon->isGlobalMuon() && muon->isPFMuon() && muon->globalTrack()->normalizedChi2() < 10. &&
525  muon->globalTrack()->hitPattern().numberOfValidMuonHits() > 0 && muon->numberOfMatchedStations() > 1 &&
526  fabs(muon->muonBestTrack()->dxy(pver.position())) < 0.2 &&
527  fabs(muon->muonBestTrack()->dz(pver.position())) < 0.5 &&
528  muon->innerTrack()->hitPattern().numberOfValidPixelHits() > 0 &&
529  muon->innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5))
530  continue;
531 
532  if (mMult == 1) {
533  // restrict to leading muon
534  fill("muonRelIso_", pfRelIso);
535  fill("muonChHadIso_", chHadPt);
536  fill("muonNeHadIso_", neHadEt);
537  fill("muonPhIso_", phoEt);
538  fill("muonRelIso_", pfRelIso);
539  }
540 
541  if (!(pfRelIso < 0.15))
542  continue;
543 
544  ++mTight;
545 
546  //tight id
547  if (mTight == 1) {
548  // restrict to leading muon
549  mu = *muon;
550  fill("muonPt_", muon->pt());
551  fill("muonEta_", muon->eta());
552  fill("muonPhi_", muon->phi());
553  }
554  }
555  }
556  }
557  fill("muonMult_", mMult); //loose
558  fill("muonMultTight_", mTight); //tight id & iso
559 
560  /*
561  ------------------------------------------------------------
562 
563  Jet Monitoring
564 
565  ------------------------------------------------------------
566  */
567 
568  // loop jet collection
569  std::vector<pat::Jet> correctedJets;
570  std::vector<double> JetTagValues;
571  pat::Jet TaggedJetCand;
572  vector<double> bJetDiscVal;
573 
574  unsigned int mult = 0, loosemult = 0, multBCSVM = 0;
575 
577  if (!event.getByToken(jets_, jets)) {
578  return;
579  }
580 
581  for (edm::View<pat::Jet>::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) {
582  // check jetID for calo jets
583  //unsigned int idx = jet - jets->begin();
584 
585  pat::Jet sel = *jet;
586 
587  if (jetSelect == nullptr)
589 
590  if (!(*jetSelect)(sel))
591  continue;
592  // if (!jetSelect(sel)) continue;
593 
594  // prepare jet to fill monitor histograms
595  pat::Jet monitorJet = *jet;
596 
597  ++mult;
598 
599  if (monitorJet.chargedHadronEnergyFraction() > 0 && monitorJet.chargedMultiplicity() > 0 &&
600  monitorJet.chargedEmEnergyFraction() < 0.99 && monitorJet.neutralHadronEnergyFraction() < 0.99 &&
601  monitorJet.neutralEmEnergyFraction() < 0.99 &&
602  (monitorJet.chargedMultiplicity() + monitorJet.neutralMultiplicity()) > 1) {
603  correctedJets.push_back(monitorJet);
604  ++loosemult; // determine jet multiplicity
605 
606  fill("jetBCSV_",
607  monitorJet.bDiscriminator(
608  "pfCombinedInclusiveSecondaryVertexV2BJetTags")); //hard coded discriminator and value right now.
609  if (monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags") > 0.89) {
610  if (multBCSVM == 0) {
611  TaggedJetCand = monitorJet;
612  bJetDiscVal.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
613  } else if (multBCSVM == 1) {
614  bJetDiscVal.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
615  if (bJetDiscVal[1] > bJetDiscVal[0])
616  TaggedJetCand = monitorJet;
617  }
618 
619  ++multBCSVM;
620  }
621 
622  // Fill a vector with Jet b-tag WP for later M3+1tag calculation: CSV
623  // tagger
624  JetTagValues.push_back(monitorJet.bDiscriminator("pfCombinedInclusiveSecondaryVertexV2BJetTags"));
625  // }
626  // fill pt (raw or L2L3) for the leading four jets
627  if (loosemult == 1) {
628  //cout<<" jet id= "<<monitorJet.chargedHadronEnergyFraction()<<endl;
629 
630  fill("jet1Pt_", monitorJet.pt());
631  //fill("jet1PtRaw_", jet->pt());
632  fill("jet1Eta_", monitorJet.eta());
633  };
634  if (loosemult == 2) {
635  fill("jet2Pt_", monitorJet.pt());
636  //fill("jet2PtRaw_", jet->pt());
637  fill("jet2Eta_", monitorJet.eta());
638  }
639  }
640  }
641  fill("jetMult_", mult);
642  fill("jetLooseMult_", loosemult);
643  fill("jetMultBCSVM_", multBCSVM);
644 
645  /*
646  ------------------------------------------------------------
647 
648  MET Monitoring
649 
650  ------------------------------------------------------------
651  */
652 
653  // fill monitoring histograms for met
654 
655  pat::MET mET;
656 
657  for (std::vector<edm::EDGetTokenT<edm::View<pat::MET>>>::const_iterator met_ = mets_.begin(); met_ != mets_.end();
658  ++met_) {
660  if (!event.getByToken(*met_, met))
661  continue;
662  if (met->begin() != met->end()) {
663  unsigned int idx = met_ - mets_.begin();
664  if (idx == 0)
665  fill("slimmedMETs_", met->begin()->et());
666  if (idx == 1)
667  fill("slimmedMETsNoHF_", met->begin()->et());
668  if (idx == 2)
669  fill("slimmedMETsPuppi_", met->begin()->et());
670  }
671  }
672 
673  /*
674  ------------------------------------------------------------
675 
676  Event Monitoring
677 
678  ------------------------------------------------------------
679  */
680 
681  // fill W boson and top mass estimates
682 
683  Calculate_miniAOD eventKinematics(MAXJETS, WMASS);
684  double wMass = eventKinematics.massWBoson(correctedJets);
685  double topMass = eventKinematics.massTopQuark(correctedJets);
686  if (wMass >= 0 && topMass >= 0) {
687  fill("massW_", wMass);
688  fill("massTop_", topMass);
689  }
690 
691  // Fill M3 with Btag (CSV Tight) requirement
692 
693  // if (!includeBTag_) return;
694  //if (correctedJets.size() != JetTagValues.size()) return;
695  //double btopMass =
696  // eventKinematics.massBTopQuark(correctedJets, JetTagValues, 0.89); //hard coded CSVv2 value
697 
698  //if (btopMass >= 0) fill("massBTop_", btopMass);
699 
700  // fill plots for trigger monitoring
701  if ((lowerEdge_ == -1. && upperEdge_ == -1.) || (lowerEdge_ < wMass && wMass < upperEdge_)) {
703  fill(event, *triggerTable, "trigger", triggerPaths_);
704  if (logged_ <= hists_.find("eventLogger_")->second->getNbinsY()) {
705  // log runnumber, lumi block, event number & some
706  // more pysics infomation for interesting events
707  fill("eventLogger_", 0.5, logged_ + 0.5, event.eventAuxiliary().run());
708  fill("eventLogger_", 1.5, logged_ + 0.5, event.eventAuxiliary().luminosityBlock());
709  fill("eventLogger_", 2.5, logged_ + 0.5, event.eventAuxiliary().event());
710  if (!correctedJets.empty())
711  fill("eventLogger_", 3.5, logged_ + 0.5, correctedJets[0].pt());
712  if (correctedJets.size() > 1)
713  fill("eventLogger_", 4.5, logged_ + 0.5, correctedJets[1].pt());
714  if (correctedJets.size() > 2)
715  fill("eventLogger_", 5.5, logged_ + 0.5, correctedJets[2].pt());
716  if (correctedJets.size() > 3)
717  fill("eventLogger_", 6.5, logged_ + 0.5, correctedJets[3].pt());
718 
719  fill("eventLogger_", 7.5, logged_ + 0.5, wMass);
720  fill("eventLogger_", 8.5, logged_ + 0.5, topMass);
721  ++logged_;
722  }
723  }
724 
725  if (multBCSVM != 0 && mTight == 1) {
726  double mtW = eventKinematics.tmassWBoson(&mu, mET, TaggedJetCand);
727  fill("MTWm_", mtW);
728  double MTT = eventKinematics.tmassTopQuark(&mu, mET, TaggedJetCand);
729  fill("mMTT_", MTT);
730  }
731 
732  if (multBCSVM != 0 && eMultIso == 1) {
733  double mtW = eventKinematics.tmassWBoson(&e, mET, TaggedJetCand);
734  fill("MTWe_", mtW);
735  double MTT = eventKinematics.tmassTopQuark(&e, mET, TaggedJetCand);
736  fill("eMTT_", MTT);
737  }
738  }
739 } // namespace SingleTopTChannelLepton_miniAOD
740 
742  : vertexSelect_(nullptr),
743  beamspot_(""),
744  beamspotSelect_(nullptr),
745  MuonStep(nullptr),
746  ElectronStep(nullptr),
747  PvStep(nullptr),
748  METStep(nullptr) {
749  JetSteps.clear();
750 
751  // configure preselection
752  edm::ParameterSet presel = cfg.getParameter<edm::ParameterSet>("preselection");
753  if (presel.existsAs<edm::ParameterSet>("trigger")) {
755  triggerTable__ = consumes<edm::TriggerResults>(trigger.getParameter<edm::InputTag>("src"));
756  triggerPaths_ = trigger.getParameter<std::vector<std::string>>("select");
757  }
758  if (presel.existsAs<edm::ParameterSet>("beamspot")) {
760  beamspot_ = beamspot.getParameter<edm::InputTag>("src");
761  beamspot__ = consumes<reco::BeamSpot>(beamspot.getParameter<edm::InputTag>("src"));
763  }
764 
765  // conifgure the selection
766  sel_ = cfg.getParameter<std::vector<edm::ParameterSet>>("selection");
767  setup_ = cfg.getParameter<edm::ParameterSet>("setup");
768  for (unsigned int i = 0; i < sel_.size(); ++i) {
769  selectionOrder_.push_back(sel_.at(i).getParameter<std::string>("label"));
771  std::make_pair(sel_.at(i),
772  std::unique_ptr<SingleTopTChannelLepton_miniAOD::MonitorEnsemble>(
774  selectionStep(selectionOrder_.back()).c_str(), setup_, consumesCollector())));
775  }
776  for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
777  ++selIt) {
778  std::string key = selectionStep(*selIt), type = objectType(*selIt);
779  if (selection_.find(key) != selection_.end()) {
780  if (type == "muons") {
782  }
783  if (type == "elecs") {
785  }
786  if (type == "pvs") {
788  }
789  if (type == "jets") {
792  }
793 
794  if (type == "met") {
796  }
797  }
798  }
799 }
801  edm::Run const&,
802  edm::EventSetup const&) {
803  for (auto selIt = selection_.begin(); selIt != selection_.end(); ++selIt) {
804  selIt->second.second->book(ibooker);
805  }
806 }
810  if (!event.getByToken(triggerTable__, triggerTable))
811  return;
812  if (!accept(event, *triggerTable, triggerPaths_))
813  return;
814  }
815  if (!beamspot__.isUninitialized()) {
817  if (!event.getByToken(beamspot__, beamspot))
818  return;
819  if (!(*beamspotSelect_)(*beamspot))
820  return;
821  }
822 
823  unsigned int passed = 0;
824  unsigned int nJetSteps = -1;
825 
826  for (std::vector<std::string>::const_iterator selIt = selectionOrder_.begin(); selIt != selectionOrder_.end();
827  ++selIt) {
828  std::string key = selectionStep(*selIt), type = objectType(*selIt);
829  if (selection_.find(key) != selection_.end()) {
830  if (type == "empty") {
831  selection_[key].second->fill(event, setup);
832  }
833  if (type == "muons" && MuonStep != nullptr) {
834  if (MuonStep->select(event)) {
835  ++passed;
836 
837  selection_[key].second->fill(event, setup);
838  } else
839  break;
840  }
841 
842  if (type == "elecs" && ElectronStep != nullptr) {
843  if (ElectronStep->select(event)) {
844  ++passed;
845  selection_[key].second->fill(event, setup);
846  } else
847  break;
848  }
849 
850  if (type == "pvs" && PvStep != nullptr) {
851  if (PvStep->selectVertex(event)) {
852  ++passed;
853  selection_[key].second->fill(event, setup);
854  } else
855  break;
856  }
857 
858  if (type == "jets") {
859  nJetSteps++;
860  if (JetSteps[nJetSteps] != nullptr) {
861  if (JetSteps[nJetSteps]->select(event, setup)) {
862  ++passed;
863  selection_[key].second->fill(event, setup);
864  } else
865  break;
866  }
867  }
868 
869  if (type == "met" && METStep != nullptr) {
870  if (METStep->select(event)) {
871  ++passed;
872  selection_[key].second->fill(event, setup);
873  } else
874  break;
875  }
876  }
877  }
878 }
879 
880 // Local Variables:
881 // show-trailing-whitespace: t
882 // truncate-lines: t
883 // End:
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jetSelect
std::unique_ptr< StringCutObjectSelector< pat::Jet > > jetSelect
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:128
PDWG_BPHSkim_cff.muons
muons
Definition: PDWG_BPHSkim_cff.py:47
Calculate_miniAOD::tmassTopQuark
double tmassTopQuark(pat::Muon *lep, const pat::MET &met, const pat::Jet &b)
calculate top quark transverse mass estimate
Definition: TopDQMHelpers.cc:203
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::elecSelect_
std::unique_ptr< StringCutObjectSelector< pat::Electron > > elecSelect_
extra selection on electrons
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:107
JetTag.h
CaloJet.h
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::pvs_
edm::EDGetTokenT< edm::View< reco::Vertex > > pvs_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:91
mps_fire.i
i
Definition: mps_fire.py:355
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
funct::false
false
Definition: Factorize.h:34
SingleTopTChannelLeptonDQM_miniAOD::PvStep
std::unique_ptr< SelectionStep< reco::Vertex > > PvStep
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:233
pat::Jet::bDiscriminator
float bDiscriminator(const std::string &theLabel) const
-— methods for accessing b-tagging info -—
muon
Definition: MuonCocktails.h:17
SingleTopTChannelLepton_miniAOD::WMASS
static const double WMASS
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:27
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
amptDefaultParameters_cff.mu
mu
Definition: amptDefaultParameters_cff.py:16
edm::Run
Definition: Run.h:45
edm::EDGetTokenT
Definition: EDGetToken.h:33
JetCorrector.h
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::triggerBinLabels
void triggerBinLabels(std::string channel, const std::vector< std::string > labels)
set configurable labels for trigger monitoring histograms
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:148
Muon.h
SingleTopTChannelLeptonDQM_miniAOD::ElectronStep
std::unique_ptr< SelectionStep< pat::Electron > > ElectronStep
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:232
singleTopDQM_cfi.select
select
Definition: singleTopDQM_cfi.py:50
PFJet.h
singleTopDQM_cfi.elecExtras
elecExtras
Definition: singleTopDQM_cfi.py:52
pat::Jet::neutralHadronEnergyFraction
float neutralHadronEnergyFraction() const
neutralHadronEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:404
SingleTopTChannelLeptonDQM_miniAOD::JetSteps
std::vector< std::unique_ptr< SelectionStep< pat::Jet > > > JetSteps
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:235
SingleTopTChannelLeptonDQM_miniAOD::selectionOrder_
std::vector< std::string > selectionOrder_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:223
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::eidCutValue_
double eidCutValue_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:103
edm::EDConsumerBase::consumesCollector
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
Definition: EDConsumerBase.cc:71
CalibrationSummaryClient_cfi.sources
sources
Definition: CalibrationSummaryClient_cfi.py:23
reco::Vertex::position
const Point & position() const
position
Definition: Vertex.h:114
HLTObjectsMonitor_cfi.beamspot
beamspot
Definition: HLTObjectsMonitor_cfi.py:11
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::electronId_
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:101
singleTopDQM_cfi.jets
jets
Definition: singleTopDQM_cfi.py:42
reco::LeafCandidate::pt
double pt() const final
transverse momentum
Definition: LeafCandidate.h:146
edm::ParameterSet::existsAs
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:160
pat::Muon
Analysis-level muon class.
Definition: Muon.h:51
topSingleLeptonDQM_PU_cfi.electronId
electronId
when omitted electron plots will be filled w/o cut on electronId
Definition: topSingleLeptonDQM_PU_cfi.py:39
HLT_2018_cff.muon
muon
Definition: HLT_2018_cff.py:10349
edm::Handle< edm::TriggerResults >
training_settings.idx
idx
Definition: training_settings.py:16
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::triggerTable_
edm::EDGetTokenT< edm::TriggerResults > triggerTable_
trigger table
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:93
dqmdumpme.first
first
Definition: dqmdumpme.py:55
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::hists_
std::map< std::string, MonitorElement * > hists_
histogram container
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:143
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jets_
edm::EDGetTokenT< edm::View< pat::Jet > > jets_
input sources for monitoring
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:88
BTaggingMonitor_cfi.met
met
Definition: BTaggingMonitor_cfi.py:84
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::book
void book(DQMStore::IBooker &ibooker)
book histograms in subdirectory directory
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:163
deltaR.h
JetCorrectionsRecord.h
accept
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:30
SingleTopTChannelLeptonDQM_miniAOD::selection_
std::map< std::string, std::pair< edm::ParameterSet, std::unique_ptr< SingleTopTChannelLepton_miniAOD::MonitorEnsemble > > > selection_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:230
pat::Jet
Analysis-level calorimeter jet class.
Definition: Jet.h:77
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::VERBOSE
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:33
SingleTopTChannelLeptonDQM_miniAOD::sel_
std::vector< edm::ParameterSet > sel_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:237
singleTopDQM_cfi.pvExtras
pvExtras
Definition: singleTopDQM_cfi.py:49
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
edm::EDGetTokenT::isUninitialized
bool isUninitialized() const
Definition: EDGetToken.h:70
singleTopDQM_cfi.muonExtras
muonExtras
Definition: singleTopDQM_cfi.py:56
SingleTopTChannelLeptonDQM_miniAOD::beamspot__
edm::EDGetTokenT< reco::BeamSpot > beamspot__
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:217
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::muonSelect_
std::unique_ptr< StringCutObjectSelector< pat::Muon > > muonSelect_
extra selection on muons
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:117
SingleTopTChannelLepton_miniAOD
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:20
beamspot
Definition: BeamSpotWrite2Txt.h:8
singleTopDQM_cfi.elecs
elecs
Definition: singleTopDQM_cfi.py:41
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jetSelect_
std::string jetSelect_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:127
SingleTopTChannelLeptonDQM_miniAOD::MuonStep
std::unique_ptr< SelectionStep< pat::Muon > > MuonStep
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:231
SingleTopTChannelLeptonDQM_miniAOD::objectType
std::string objectType(const std::string &label)
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:202
EDGetToken.h
SingleTopTChannelLeptonDQM_miniAOD::analyze
void analyze(const edm::Event &event, const edm::EventSetup &setup) override
do this during the event loop
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:807
pat::Jet::chargedMultiplicity
int chargedMultiplicity() const
chargedMultiplicity
Definition: Jet.h:746
SingleTopTChannelLeptonDQM_miniAOD::triggerPaths_
std::vector< std::string > triggerPaths_
trigger paths
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:211
SingleTopTChannelLeptonDQM_miniAOD::selectionStep
std::string selectionStep(const std::string &label)
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:205
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::STANDARD
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:33
singleTopDQM_cfi.massExtras
massExtras
Definition: singleTopDQM_cfi.py:70
edm::View
Definition: CaloClusterFwd.h:14
edm::ParameterSet
Definition: ParameterSet.h:36
EDConsumerBase.h
reco::LeafCandidate::eta
double eta() const final
momentum pseudorapidity
Definition: LeafCandidate.h:152
pat::Jet::neutralEmEnergyFraction
float neutralEmEnergyFraction() const
neutralEmEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:412
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::lowerEdge_
double lowerEdge_
mass window upper and lower edge
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:137
Calculate_miniAOD::massWBoson
double massWBoson(const std::vector< pat::Jet > &jets)
calculate W boson mass estimate
Definition: TopDQMHelpers.cc:165
Calculate_miniAOD
Definition: TopDQMHelpers.h:70
SingleTopTChannelLeptonDQM_miniAOD::beamspot_
edm::InputTag beamspot_
beamspot
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:216
SingleTopTChannelLeptonDQM_miniAOD::bookHistograms
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:800
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::directory_
std::string directory_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:145
pat::Jet::neutralMultiplicity
int neutralMultiplicity() const
neutralMultiplicity
Definition: Jet.h:466
MetAnalyzer.pv
def pv(vc)
Definition: MetAnalyzer.py:7
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jetCorrector_
std::string jetCorrector_
jetCorrector
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:120
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::label_
std::string label_
instance label
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:84
pat::MET
Analysis-level MET class.
Definition: MET.h:40
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::elecIso_
std::unique_ptr< StringCutObjectSelector< pat::Electron > > elecIso_
extra isolation criterion on electron
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:105
edm::EventSetup
Definition: EventSetup.h:57
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jetIDLabel_
edm::EDGetTokenT< reco::JetIDValueMap > jetIDLabel_
jetID as an extra selection type
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:122
MET.h
SingleTopTChannelLeptonDQM_miniAOD::setup_
edm::ParameterSet setup_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:238
Jet.h
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::logged_
int logged_
number of logged interesting events
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:140
FSQDQM_cfi.pvs
pvs
Definition: FSQDQM_cfi.py:12
SingleTopTChannelLeptonDQM_miniAOD::beamspotSelect_
std::unique_ptr< StringCutObjectSelector< reco::BeamSpot > > beamspotSelect_
string cut selector
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:219
looper.cfg
cfg
Definition: looper.py:297
Calculate_miniAOD::massTopQuark
double massTopQuark(const std::vector< pat::Jet > &jets)
calculate t-quark mass estimate
Definition: TopDQMHelpers.cc:171
pat::Jet::chargedEmEnergyFraction
float chargedEmEnergyFraction() const
chargedEmEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:408
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::DEBUG
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:33
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::muonIso_
std::unique_ptr< StringCutObjectSelector< pat::Muon > > muonIso_
extra isolation criterion on muon
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:114
cms::cuda::device::unique_ptr
std::unique_ptr< T, impl::DeviceDeleter > unique_ptr
Definition: device_unique_ptr.h:33
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::rhoTag
edm::InputTag rhoTag
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:98
type
type
Definition: HCALResponse.h:21
std
Definition: JetResolutionObject.h:76
singleTopDQM_cfi.jetExtras
jetExtras
Definition: singleTopDQM_cfi.py:60
pat::Jet::chargedHadronEnergyFraction
float chargedHadronEnergyFraction() const
chargedHadronEnergyFraction (relative to uncorrected jet energy)
Definition: Jet.h:400
singleTopDQM_cfi.monitoring
monitoring
Definition: singleTopDQM_cfi.py:46
metsig::jet
Definition: SignAlgoResolutions.h:47
edm::ValueMap< float >
dqm::implementation::IBooker::book2D
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:177
StringCutObjectSelector< pat::Electron >
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::verbosity_
Level verbosity_
verbosity level for booking
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:78
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::muons_
edm::EDGetTokenT< edm::View< pat::Muon > > muons_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:89
TriggerAnalyzer.passed
passed
Definition: TriggerAnalyzer.py:62
pseudoTop_cfi.wMass
wMass
Definition: pseudoTop_cfi.py:12
SingleTopTChannelLeptonDQM_miniAOD.h
SelectionStep
Templated helper class to allow a selection on a certain object collection.
Definition: TopDQMHelpers.h:237
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::upperEdge_
double upperEdge_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:137
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::jetIDSelect_
std::unique_ptr< StringCutObjectSelector< reco::JetID > > jetIDSelect_
extra jetID selection on calo jets
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:124
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::elecs_
edm::EDGetTokenT< edm::View< pat::Electron > > elecs_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:90
SingleTopTChannelLeptonDQM_miniAOD::METStep
std::unique_ptr< SelectionStep< pat::MET > > METStep
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:234
VarParsing.mult
mult
Definition: VarParsing.py:659
dqm::implementation::IBooker
Definition: DQMStore.h:43
Electron.h
edm::View::const_iterator
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
trigger
Definition: HLTPrescaleTableCond.h:8
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::mets_
std::vector< edm::EDGetTokenT< edm::View< pat::MET > > > mets_
considers a vector of METs
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:86
ConsumesCollector.h
pat::Electron
Analysis-level electron class.
Definition: Electron.h:51
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::triggerPaths_
std::vector< std::string > triggerPaths_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:96
EgammaValidation_Wenu_cff.sel
sel
Definition: EgammaValidation_Wenu_cff.py:33
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::pvSelect_
std::unique_ptr< StringCutObjectSelector< reco::Vertex > > pvSelect_
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:111
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
event
Definition: event.py:1
edm::Event
Definition: Event.h:73
crabWrapper.key
key
Definition: crabWrapper.py:19
edm::InputTag
Definition: InputTag.h:15
SingleTopTChannelLeptonDQM_miniAOD::triggerTable__
edm::EDGetTokenT< edm::TriggerResults > triggerTable__
trigger table
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:205
SingleTopTChannelLepton_miniAOD::MAXJETS
static const unsigned int MAXJETS
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:24
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
label
const char * label
Definition: PFTauDecayModeTools.cc:11
SingleTopTChannelLeptonDQM_miniAOD::SingleTopTChannelLeptonDQM_miniAOD
SingleTopTChannelLeptonDQM_miniAOD(const edm::ParameterSet &cfg)
default constructor
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:741
edm::TriggerResults
Definition: TriggerResults.h:35
reco::Vertex
Definition: Vertex.h:35
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
SingleTopTChannelLepton_miniAOD::MonitorEnsemble
Definition: SingleTopTChannelLeptonDQM_miniAOD.h:30
Calculate_miniAOD::tmassWBoson
double tmassWBoson(pat::Muon *lep, const pat::MET &met, const pat::Jet &b)
calculate W boson transverse mass estimate
Definition: TopDQMHelpers.cc:185
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
SingleTopTChannelLepton_miniAOD::MonitorEnsemble::fill
void fill(const edm::Event &event, const edm::EventSetup &setup)
fill monitor histograms with electronId and jetCorrections
Definition: SingleTopTChannelLeptonDQM_miniAOD.cc:347