1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
|
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DQMOffline/Trigger/plugins/TriggerDQMBase.h"
#include "CommonTools/TriggerUtils/interface/GenericTriggerEventFlag.h"
#include "DataFormats/METReco/interface/PFMET.h"
#include "DataFormats/METReco/interface/PFMETCollection.h"
#include "DataFormats/METReco/interface/MET.h"
#include "DataFormats/METReco/interface/METCollection.h"
#include "DataFormats/JetReco/interface/PFJet.h"
#include "DataFormats/BTauReco/interface/JetTag.h"
#include "DataFormats/Common/interface/TriggerResults.h"
#include "DataFormats/HLTReco/interface/TriggerObject.h"
#include "DataFormats/HLTReco/interface/TriggerEvent.h"
#include "DataFormats/HLTReco/interface/TriggerEventWithRefs.h"
#include "DataFormats/HLTReco/interface/TriggerEventWithRefs.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "DataFormats/Common/interface/ValueMap.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonSelectors.h"
#include "DataFormats/EgammaCandidates/interface/Electron.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/Conversion.h"
#include "CommonTools/Egamma/interface/ConversionTools.h"
#include <limits>
#include <algorithm>
class LepHTMonitor : public DQMEDAnalyzer, public TriggerDQMBase {
public:
typedef dqm::reco::MonitorElement MonitorElement;
typedef dqm::reco::DQMStore DQMStore;
LepHTMonitor(const edm::ParameterSet &ps);
~LepHTMonitor() throw() override;
protected:
void bookHistograms(DQMStore::IBooker &ibooker, const edm::Run &, const edm::EventSetup &) override;
void analyze(const edm::Event &e, const edm::EventSetup &eSetup) override;
private:
edm::InputTag theElectronTag_;
edm::EDGetTokenT<edm::View<reco::GsfElectron> > theElectronCollection_;
edm::InputTag theElectronVIDTag_;
edm::EDGetTokenT<edm::ValueMap<bool> > theElectronVIDMap_;
edm::InputTag theMuonTag_;
edm::EDGetTokenT<reco::MuonCollection> theMuonCollection_;
edm::InputTag thePfMETTag_;
edm::EDGetTokenT<reco::PFMETCollection> thePfMETCollection_;
edm::InputTag thePfJetTag_;
edm::EDGetTokenT<reco::PFJetCollection> thePfJetCollection_;
edm::InputTag theJetTagTag_;
edm::EDGetTokenT<reco::JetTagCollection> theJetTagCollection_;
edm::InputTag theVertexCollectionTag_;
edm::EDGetTokenT<reco::VertexCollection> theVertexCollection_;
edm::InputTag theConversionCollectionTag_;
edm::EDGetTokenT<reco::ConversionCollection> theConversionCollection_;
edm::InputTag theBeamSpotTag_;
edm::EDGetTokenT<reco::BeamSpot> theBeamSpot_;
std::unique_ptr<GenericTriggerEventFlag> num_genTriggerEventFlag_;
std::unique_ptr<GenericTriggerEventFlag> den_lep_genTriggerEventFlag_;
std::unique_ptr<GenericTriggerEventFlag> den_HT_genTriggerEventFlag_;
const std::string folderName_;
const bool requireValidHLTPaths_;
bool hltPathsAreValid_;
int muonIDlevel_;
double jetPtCut_;
double jetEtaCut_;
double metCut_;
double htCut_;
double nmusCut_;
double nelsCut_;
double lep_pt_plateau_;
double lep_counting_threshold_;
double lep_iso_cut_;
double lep_eta_cut_;
double lep_d0_cut_b_;
double lep_dz_cut_b_;
double lep_d0_cut_e_;
double lep_dz_cut_e_;
std::vector<double> ptbins_;
std::vector<double> htbins_;
int nbins_eta_;
int nbins_phi_;
int nbins_npv_;
float etabins_min_;
float etabins_max_;
float phibins_min_;
float phibins_max_;
float npvbins_min_;
float npvbins_max_;
// Histograms
MonitorElement *h_pfHTTurnOn_num_;
MonitorElement *h_pfHTTurnOn_den_;
MonitorElement *h_lepPtTurnOn_num_;
MonitorElement *h_lepPtTurnOn_den_;
MonitorElement *h_lepEtaTurnOn_num_;
MonitorElement *h_lepEtaTurnOn_den_;
MonitorElement *h_lepPhiTurnOn_num_;
MonitorElement *h_lepPhiTurnOn_den_;
MonitorElement *h_lepEtaPhiTurnOn_num_;
MonitorElement *h_lepEtaPhiTurnOn_den_;
MonitorElement *h_NPVTurnOn_num_;
MonitorElement *h_NPVTurnOn_den_;
};
namespace {
//Offline electron definition
bool isGood(const reco::GsfElectron &el,
const reco::Vertex::Point &pv_position,
const reco::BeamSpot::Point &bs_position,
const edm::Handle<reco::ConversionCollection> &convs,
bool pass_id,
const double lep_counting_threshold,
const double lep_iso_cut,
const double lep_eta_cut,
const double d0_cut_b,
const double dz_cut_b,
const double d0_cut_e,
const double dz_cut_e) {
//Electron ID
if (!pass_id)
return false;
//pT
if (el.pt() < lep_counting_threshold || std::abs(el.superCluster()->eta()) > lep_eta_cut)
return false;
//Isolation
auto const &iso = el.pfIsolationVariables();
const float absiso =
iso.sumChargedHadronPt + std::max(0.0, iso.sumNeutralHadronEt + iso.sumPhotonEt - 0.5 * iso.sumPUPt);
const float relisowithdb = absiso / el.pt();
if (relisowithdb > lep_iso_cut)
return false;
//Conversion matching
bool pass_conversion = false;
if (convs.isValid()) {
pass_conversion = !ConversionTools::hasMatchedConversion(el, *convs, bs_position);
} else {
edm::LogError("LepHTMonitor") << "Electron conversion matching failed.\n";
}
if (!pass_conversion)
return false;
//Impact parameter
float d0 = 999., dz = 999.;
if (el.gsfTrack().isNonnull()) {
d0 = -(el.gsfTrack()->dxy(pv_position));
dz = el.gsfTrack()->dz(pv_position);
} else {
edm::LogError("LepHTMonitor") << "Could not read electron.gsfTrack().\n";
return false;
}
float etasc = el.superCluster()->eta();
if (std::abs(etasc) > 1.479) { //Endcap
if (std::abs(d0) > d0_cut_e || std::abs(dz) > dz_cut_e)
return false;
} else { //Barrel
if (std::abs(d0) > d0_cut_b || std::abs(dz) > dz_cut_b)
return false;
}
return true;
}
//Offline muon definition
bool isGood(const reco::Muon &mu,
const reco::Vertex &pv,
const double lep_counting_threshold,
const double lep_iso_cut,
const double lep_eta_cut,
const double d0_cut,
const double dz_cut,
int muonIDlevel) {
const reco::Vertex::Point &pv_position = pv.position();
// Muon pt and eta acceptance
if (mu.pt() < lep_counting_threshold || std::abs(mu.eta()) > lep_eta_cut)
return false;
// Muon isolation
auto const &iso = mu.pfIsolationR04();
const float absiso =
iso.sumChargedHadronPt + std::max(0.0, iso.sumNeutralHadronEt + iso.sumPhotonEt - 0.5 * iso.sumPUPt);
const float relisowithdb = absiso / mu.pt();
if (relisowithdb > lep_iso_cut)
return false;
// Muon ID
bool pass_id = false;
if (muonIDlevel == 1)
pass_id = muon::isLooseMuon(mu);
else if (muonIDlevel == 3)
pass_id = muon::isTightMuon(mu, pv);
else
pass_id = muon::isMediumMuon(mu);
if (!pass_id)
return false;
// Muon impact parameter
float d0 = std::abs(mu.muonBestTrack()->dxy(pv_position));
float dz = std::abs(mu.muonBestTrack()->dz(pv_position));
if (d0 > d0_cut || dz > dz_cut)
return false;
return true;
}
} // namespace
LepHTMonitor::LepHTMonitor(const edm::ParameterSet &ps)
: theElectronTag_(ps.getParameter<edm::InputTag>("electronCollection")),
theElectronCollection_(consumes<edm::View<reco::GsfElectron> >(theElectronTag_)),
theElectronVIDTag_(ps.getParameter<edm::InputTag>("electronVID")),
theElectronVIDMap_(consumes<edm::ValueMap<bool> >(theElectronVIDTag_)),
theMuonTag_(ps.getParameter<edm::InputTag>("muonCollection")),
theMuonCollection_(consumes<reco::MuonCollection>(theMuonTag_)),
thePfMETTag_(ps.getParameter<edm::InputTag>("pfMetCollection")),
thePfMETCollection_(consumes<reco::PFMETCollection>(thePfMETTag_)),
thePfJetTag_(ps.getParameter<edm::InputTag>("pfJetCollection")),
thePfJetCollection_(consumes<reco::PFJetCollection>(thePfJetTag_)),
theJetTagTag_(ps.getParameter<edm::InputTag>("jetTagCollection")),
theJetTagCollection_(consumes<reco::JetTagCollection>(theJetTagTag_)),
theVertexCollectionTag_(ps.getParameter<edm::InputTag>("vertexCollection")),
theVertexCollection_(consumes<reco::VertexCollection>(theVertexCollectionTag_)),
theConversionCollectionTag_(ps.getParameter<edm::InputTag>("conversionCollection")),
theConversionCollection_(consumes<reco::ConversionCollection>(theConversionCollectionTag_)),
theBeamSpotTag_(ps.getParameter<edm::InputTag>("beamSpot")),
theBeamSpot_(consumes<reco::BeamSpot>(theBeamSpotTag_)),
num_genTriggerEventFlag_(new GenericTriggerEventFlag(
ps.getParameter<edm::ParameterSet>("numGenericTriggerEventPSet"), consumesCollector(), *this)),
den_lep_genTriggerEventFlag_(new GenericTriggerEventFlag(
ps.getParameter<edm::ParameterSet>("den_lep_GenericTriggerEventPSet"), consumesCollector(), *this)),
den_HT_genTriggerEventFlag_(new GenericTriggerEventFlag(
ps.getParameter<edm::ParameterSet>("den_HT_GenericTriggerEventPSet"), consumesCollector(), *this)),
folderName_(ps.getParameter<std::string>("folderName")),
requireValidHLTPaths_(ps.getParameter<bool>("requireValidHLTPaths")),
hltPathsAreValid_(false),
muonIDlevel_(ps.getUntrackedParameter<int>("muonIDlevel")),
jetPtCut_(ps.getUntrackedParameter<double>("jetPtCut")),
jetEtaCut_(ps.getUntrackedParameter<double>("jetEtaCut")),
metCut_(ps.getUntrackedParameter<double>("metCut")),
htCut_(ps.getUntrackedParameter<double>("htCut")),
nmusCut_(ps.getUntrackedParameter<double>("nmus")),
nelsCut_(ps.getUntrackedParameter<double>("nels")),
lep_pt_plateau_(ps.getUntrackedParameter<double>("leptonPtPlateau")),
lep_counting_threshold_(ps.getUntrackedParameter<double>("leptonCountingThreshold")),
lep_iso_cut_(ps.getUntrackedParameter<double>("lepIsoCut")),
lep_eta_cut_(ps.getUntrackedParameter<double>("lepEtaCut")),
lep_d0_cut_b_(ps.getUntrackedParameter<double>("lep_d0_cut_b")),
lep_dz_cut_b_(ps.getUntrackedParameter<double>("lep_dz_cut_b")),
lep_d0_cut_e_(ps.getUntrackedParameter<double>("lep_d0_cut_e")),
lep_dz_cut_e_(ps.getUntrackedParameter<double>("lep_dz_cut_e")),
ptbins_(ps.getParameter<std::vector<double> >("ptbins")),
htbins_(ps.getParameter<std::vector<double> >("htbins")),
nbins_eta_(ps.getUntrackedParameter<int>("nbins_eta")),
nbins_phi_(ps.getUntrackedParameter<int>("nbins_phi")),
nbins_npv_(ps.getUntrackedParameter<int>("nbins_npv")),
etabins_min_(ps.getUntrackedParameter<double>("etabins_min")),
etabins_max_(ps.getUntrackedParameter<double>("etabins_max")),
phibins_min_(ps.getUntrackedParameter<double>("phibins_min")),
phibins_max_(ps.getUntrackedParameter<double>("phibins_max")),
npvbins_min_(ps.getUntrackedParameter<double>("npvbins_min")),
npvbins_max_(ps.getUntrackedParameter<double>("npvbins_max")),
h_pfHTTurnOn_num_(nullptr),
h_pfHTTurnOn_den_(nullptr),
h_lepPtTurnOn_num_(nullptr),
h_lepPtTurnOn_den_(nullptr),
h_lepEtaTurnOn_num_(nullptr),
h_lepEtaTurnOn_den_(nullptr),
h_lepPhiTurnOn_num_(nullptr),
h_lepPhiTurnOn_den_(nullptr),
h_NPVTurnOn_num_(nullptr),
h_NPVTurnOn_den_(nullptr) {
edm::LogInfo("LepHTMonitor") << "Constructor LepHTMonitor::LepHTMonitor\n";
}
LepHTMonitor::~LepHTMonitor() throw() {
if (num_genTriggerEventFlag_) {
num_genTriggerEventFlag_.reset();
}
if (den_lep_genTriggerEventFlag_) {
den_lep_genTriggerEventFlag_.reset();
}
if (den_HT_genTriggerEventFlag_) {
den_HT_genTriggerEventFlag_.reset();
}
}
void LepHTMonitor::bookHistograms(DQMStore::IBooker &ibooker, const edm::Run &iRun, const edm::EventSetup &iSetup) {
// Initialize trigger flags
if (num_genTriggerEventFlag_ && num_genTriggerEventFlag_->on()) {
num_genTriggerEventFlag_->initRun(iRun, iSetup);
}
if (den_lep_genTriggerEventFlag_ && den_lep_genTriggerEventFlag_->on()) {
den_lep_genTriggerEventFlag_->initRun(iRun, iSetup);
}
if (den_HT_genTriggerEventFlag_ && den_HT_genTriggerEventFlag_->on()) {
den_HT_genTriggerEventFlag_->initRun(iRun, iSetup);
}
// check if every HLT path specified in numerator and denominator has a valid match in the HLT Menu
hltPathsAreValid_ = ((num_genTriggerEventFlag_ && num_genTriggerEventFlag_->on() &&
num_genTriggerEventFlag_->allHLTPathsAreValid()) &&
((den_lep_genTriggerEventFlag_ && den_lep_genTriggerEventFlag_->on() &&
den_lep_genTriggerEventFlag_->allHLTPathsAreValid()) ||
(den_HT_genTriggerEventFlag_ && den_HT_genTriggerEventFlag_->on() &&
den_HT_genTriggerEventFlag_->allHLTPathsAreValid())));
// if valid HLT paths are required,
// create DQM outputs only if all paths are valid
if (requireValidHLTPaths_ and (not hltPathsAreValid_)) {
return;
}
// book at beginRun
ibooker.cd();
ibooker.setCurrentFolder("HLT/SUSY/LepHT/" + folderName_);
bool is_mu = false;
bool is_ele = false;
if (theElectronTag_.label().empty() and not theMuonTag_.label().empty()) {
is_mu = true;
} else if (not theElectronTag_.label().empty() and theMuonTag_.label().empty()) {
is_ele = true;
}
// Cosmetic axis names
std::string lepton = "lepton", Lepton = "Lepton";
if (is_mu && !is_ele) {
lepton = "muon";
Lepton = "Muon";
} else if (is_ele && !is_mu) {
lepton = "electron";
Lepton = "Electron";
}
//Convert to vfloat for picky TH1F constructor
vector<float> f_ptbins;
f_ptbins.reserve(ptbins_.size());
for (double ptbin : ptbins_)
f_ptbins.push_back(static_cast<float>(ptbin));
vector<float> f_htbins;
f_htbins.reserve(htbins_.size());
for (double htbin : htbins_)
f_htbins.push_back(static_cast<float>(htbin));
//num and den hists to be divided in harvesting step to make turn on curves
h_pfHTTurnOn_num_ =
ibooker.book1D("pfHTTurnOn_num", "Numerator;Offline H_{T} [GeV];", f_htbins.size() - 1, f_htbins.data());
h_pfHTTurnOn_den_ =
ibooker.book1D("pfHTTurnOn_den", "Denominator;Offline H_{T} [GeV];", f_htbins.size() - 1, f_htbins.data());
h_lepPtTurnOn_num_ = ibooker.book1D("lepPtTurnOn_num",
("Numerator;Offline " + lepton + " p_{T} [GeV];").c_str(),
f_ptbins.size() - 1,
f_ptbins.data());
h_lepPtTurnOn_den_ = ibooker.book1D("lepPtTurnOn_den",
("Denominator;Offline " + lepton + " p_{T} [GeV];").c_str(),
f_ptbins.size() - 1,
f_ptbins.data());
h_lepEtaTurnOn_num_ =
ibooker.book1D("lepEtaTurnOn_num", "Numerator;Offline lepton #eta;", nbins_eta_, etabins_min_, etabins_max_);
h_lepEtaTurnOn_den_ =
ibooker.book1D("lepEtaTurnOn_den", "Denominator;Offline lepton #eta;", nbins_eta_, etabins_min_, etabins_max_);
h_lepPhiTurnOn_num_ =
ibooker.book1D("lepPhiTurnOn_num", "Numerator;Offline lepton #phi;", nbins_phi_, phibins_min_, phibins_max_);
h_lepPhiTurnOn_den_ =
ibooker.book1D("lepPhiTurnOn_den", "Denominator;Offline lepton #phi;", nbins_phi_, phibins_min_, phibins_max_);
h_lepEtaPhiTurnOn_num_ = ibooker.book2D("lepEtaPhiTurnOn_num",
"Numerator;Offline lepton #eta;Offline lepton #phi;",
nbins_eta_ / 2,
etabins_min_,
etabins_max_,
nbins_phi_ / 2,
phibins_min_,
phibins_max_);
h_lepEtaPhiTurnOn_den_ = ibooker.book2D("lepEtaPhiTurnOn_den",
"Denominator;Offline lepton #eta;Offline lepton #phi;",
nbins_eta_ / 2,
etabins_min_,
etabins_max_,
nbins_phi_ / 2,
phibins_min_,
phibins_max_);
h_NPVTurnOn_num_ = ibooker.book1D("NPVTurnOn_num", "Numerator;N_{PV};", nbins_npv_, npvbins_min_, npvbins_max_);
h_NPVTurnOn_den_ = ibooker.book1D("NPVTurnOn_den", "Denominator;N_{PV};", nbins_npv_, npvbins_min_, npvbins_max_);
ibooker.cd();
}
void LepHTMonitor::analyze(const edm::Event &e, const edm::EventSetup &eSetup) {
// if valid HLT paths are required,
// analyze event only if all paths are valid
if (requireValidHLTPaths_ and (not hltPathsAreValid_)) {
return;
}
// Find whether main and auxilliary triggers fired
bool hasFired = false;
bool hasFiredAuxiliary = false;
bool hasFiredLeptonAuxiliary = false;
if (den_lep_genTriggerEventFlag_->on() && den_lep_genTriggerEventFlag_->accept(e, eSetup))
hasFiredLeptonAuxiliary = true;
if (den_HT_genTriggerEventFlag_->on() && den_HT_genTriggerEventFlag_->accept(e, eSetup))
hasFiredAuxiliary = true;
if (num_genTriggerEventFlag_->on() && num_genTriggerEventFlag_->accept(e, eSetup))
hasFired = true;
if (!(hasFiredAuxiliary || hasFiredLeptonAuxiliary))
return;
int npv = 0;
//Vertex
edm::Handle<reco::VertexCollection> VertexCollection;
if (not theVertexCollectionTag_.label().empty()) {
e.getByToken(theVertexCollection_, VertexCollection);
if (!VertexCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid VertexCollection: " << theVertexCollectionTag_.label() << '\n';
} else
npv = VertexCollection->size();
}
//Get electron ID map
edm::Handle<edm::ValueMap<bool> > ele_id_decisions;
if (not theElectronVIDTag_.label().empty()) {
e.getByToken(theElectronVIDMap_, ele_id_decisions);
if (!ele_id_decisions.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid Electron VID map: " << theElectronVIDTag_.label() << '\n';
}
}
//Conversions
edm::Handle<reco::ConversionCollection> ConversionCollection;
if (not theConversionCollectionTag_.label().empty()) {
e.getByToken(theConversionCollection_, ConversionCollection);
if (!ConversionCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid ConversionCollection: " << theConversionCollectionTag_.label()
<< '\n';
}
}
//Beam Spot
edm::Handle<reco::BeamSpot> BeamSpot;
if (not theBeamSpotTag_.label().empty()) {
e.getByToken(theBeamSpot_, BeamSpot);
if (!BeamSpot.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid BeamSpot: " << theBeamSpotTag_.label() << '\n';
}
}
//MET
edm::Handle<reco::PFMETCollection> pfMETCollection;
if (not thePfMETTag_.label().empty()) {
e.getByToken(thePfMETCollection_, pfMETCollection);
if (!pfMETCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid PFMETCollection: " << thePfMETTag_.label() << '\n';
}
}
//Jets
edm::Handle<reco::PFJetCollection> pfJetCollection;
if (not thePfJetTag_.label().empty()) {
e.getByToken(thePfJetCollection_, pfJetCollection);
if (!pfJetCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid PFJetCollection: " << thePfJetTag_.label() << '\n';
}
}
//Electron
edm::Handle<edm::View<reco::GsfElectron> > ElectronCollection;
if (not theElectronTag_.label().empty()) {
e.getByToken(theElectronCollection_, ElectronCollection);
if (!ElectronCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid GsfElectronCollection: " << theElectronTag_.label() << '\n';
}
}
//Muon
edm::Handle<reco::MuonCollection> MuonCollection;
if (not theMuonTag_.label().empty()) {
e.getByToken(theMuonCollection_, MuonCollection);
if (!MuonCollection.isValid()) {
edm::LogWarning("LepHTMonitor") << "Invalid MuonCollection: " << theMuonTag_.label() << '\n';
}
}
//Get offline HT
double pfHT = -1.0;
if (pfJetCollection.isValid()) {
pfHT = 0.0;
for (auto const &pfjet : *pfJetCollection) {
if (pfjet.pt() < jetPtCut_)
continue;
if (std::abs(pfjet.eta()) > jetEtaCut_)
continue;
pfHT += pfjet.pt();
}
}
//Get offline MET
double pfMET = -1.0;
if (pfMETCollection.isValid() && !pfMETCollection->empty()) {
pfMET = pfMETCollection->front().et();
}
//Find offline leptons and keep track of pt,eta of leading and trailing leptons
double lep_max_pt = -1.0;
double lep_eta = 0;
double lep_phi = 0;
double trailing_ele_eta = 0;
double trailing_ele_phi = 0;
double trailing_mu_eta = 0;
double trailing_mu_phi = 0;
double min_ele_pt = -1.0;
double min_mu_pt = -1.0;
int nels = 0;
int nmus = 0;
if (VertexCollection.isValid() && !VertexCollection->empty()) { //for quality checks
//Try to find a reco electron
if (ElectronCollection.isValid() && ConversionCollection.isValid() && BeamSpot.isValid() &&
ele_id_decisions.isValid()) {
size_t index = 0;
for (auto const &electron : *ElectronCollection) {
const auto el = ElectronCollection->ptrAt(index);
bool pass_id = (*ele_id_decisions)[el];
if (isGood(electron,
VertexCollection->front().position(),
BeamSpot->position(),
ConversionCollection,
pass_id,
lep_counting_threshold_,
lep_iso_cut_,
lep_eta_cut_,
lep_d0_cut_b_,
lep_dz_cut_b_,
lep_d0_cut_e_,
lep_dz_cut_e_)) {
if (electron.pt() > lep_max_pt) {
lep_max_pt = electron.pt();
lep_eta = electron.eta();
lep_phi = electron.phi();
}
if (electron.pt() < min_ele_pt || min_ele_pt < 0) {
min_ele_pt = electron.pt();
trailing_ele_eta = electron.eta();
trailing_ele_phi = electron.phi();
}
nels++;
}
index++;
}
}
//Try to find a reco muon
if (MuonCollection.isValid()) {
for (auto const &muon : *MuonCollection) {
if (isGood(muon,
VertexCollection->front(),
lep_counting_threshold_,
lep_iso_cut_,
lep_eta_cut_,
lep_d0_cut_b_,
lep_dz_cut_b_,
muonIDlevel_)) {
if (muon.pt() > lep_max_pt) {
lep_max_pt = muon.pt();
lep_eta = muon.eta();
lep_phi = muon.phi();
}
if (muon.pt() < min_mu_pt || min_mu_pt < 0) {
min_mu_pt = muon.pt();
trailing_mu_eta = muon.eta();
trailing_mu_phi = muon.phi();
}
nmus++;
}
}
}
}
//Fill single lepton triggers with leading lepton pT
float lep_pt = lep_max_pt;
//For dilepton triggers, use trailing rather than leading lepton
if (nmusCut_ >= 2) {
lep_pt = min_mu_pt;
lep_eta = trailing_mu_eta;
lep_phi = trailing_mu_phi;
}
if (nelsCut_ >= 2) {
lep_pt = min_ele_pt;
lep_eta = trailing_ele_eta;
lep_phi = trailing_ele_phi;
}
if (nelsCut_ >= 1 && nmusCut_ >= 1) {
if (min_ele_pt < min_mu_pt) {
lep_pt = min_ele_pt;
lep_eta = trailing_ele_eta;
lep_phi = trailing_ele_phi;
} else {
lep_pt = min_mu_pt;
lep_eta = trailing_mu_eta;
lep_phi = trailing_mu_phi;
}
}
const bool nleps_cut = nels >= nelsCut_ && nmus >= nmusCut_;
bool lep_plateau = lep_pt > lep_pt_plateau_ || lep_pt_plateau_ < 0.0;
//Fill lepton pT and eta histograms
if (hasFiredLeptonAuxiliary || !e.isRealData()) {
if (nleps_cut && (pfMET > metCut_ || metCut_ < 0.0) && (pfHT > htCut_ || htCut_ < 0.0)) {
if (h_lepPtTurnOn_den_) {
if (lep_pt > ptbins_.back())
lep_pt = ptbins_.back() - 1; //Overflow protection
h_lepPtTurnOn_den_->Fill(lep_pt);
}
if (h_lepPtTurnOn_num_ && hasFired)
h_lepPtTurnOn_num_->Fill(lep_pt);
if (lep_plateau) {
//Fill Eta and Phi histograms for leptons above pT threshold
if (h_lepEtaTurnOn_den_)
h_lepEtaTurnOn_den_->Fill(lep_eta);
if (h_lepEtaTurnOn_num_ && hasFired)
h_lepEtaTurnOn_num_->Fill(lep_eta);
if (h_lepPhiTurnOn_den_)
h_lepPhiTurnOn_den_->Fill(lep_phi);
if (h_lepPhiTurnOn_num_ && hasFired)
h_lepPhiTurnOn_num_->Fill(lep_phi);
if (h_lepEtaPhiTurnOn_den_)
h_lepEtaPhiTurnOn_den_->Fill(lep_eta, lep_phi);
if (h_lepEtaPhiTurnOn_num_ && hasFired)
h_lepEtaPhiTurnOn_num_->Fill(lep_eta, lep_phi);
//Fill NPV histograms
if (h_NPVTurnOn_den_)
h_NPVTurnOn_den_->Fill(npv);
if (h_NPVTurnOn_num_ && hasFired)
h_NPVTurnOn_num_->Fill(npv);
}
}
}
//Fill HT turn-on histograms
if (hasFiredAuxiliary || !e.isRealData()) {
if (nleps_cut && lep_plateau) {
if (h_pfHTTurnOn_den_) {
if (pfHT > htbins_.back())
pfHT = htbins_.back() - 1; //Overflow protection
h_pfHTTurnOn_den_->Fill(pfHT);
}
if (h_pfHTTurnOn_num_ && hasFired)
h_pfHTTurnOn_num_->Fill(pfHT);
}
}
}
DEFINE_FWK_MODULE(LepHTMonitor);
|