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
|
#include <string>
#include <vector>
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMOffline/Trigger/plugins/TriggerDQMBase.h"
#include "CommonTools/TriggerUtils/interface/GenericTriggerEventFlag.h"
#include "CommonTools/Utils/interface/StringCutObjectSelector.h"
#include "DataFormats/Math/interface/deltaR.h"
#include "DataFormats/METReco/interface/PFMET.h"
#include "DataFormats/METReco/interface/PFMETCollection.h"
#include "DataFormats/JetReco/interface/PFJet.h"
#include "DataFormats/JetReco/interface/PFJetCollection.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
#include "DataFormats/TrackReco/interface/Track.h"
#include "DataFormats/TrackReco/interface/TrackFwd.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include "DataFormats/EgammaCandidates/interface/Photon.h"
#include "DataFormats/EgammaCandidates/interface/PhotonFwd.h"
#include "DQMOffline/Trigger/plugins/METDQM.h"
#include "DQMOffline/Trigger/plugins/JetDQM.h"
#include "DQMOffline/Trigger/plugins/HTDQM.h"
#include "DQMOffline/Trigger/plugins/HMesonGammaDQM.h"
class ObjMonitor : public DQMEDAnalyzer, public TriggerDQMBase {
public:
typedef dqm::reco::MonitorElement MonitorElement;
typedef dqm::reco::DQMStore DQMStore;
ObjMonitor(const edm::ParameterSet&);
~ObjMonitor() throw() override;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
protected:
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
void analyze(edm::Event const& iEvent, edm::EventSetup const& iSetup) override;
private:
bool looseJetId(const double& abseta,
const double& NHF,
const double& NEMF,
const double& CHF,
const double& CEMF,
const unsigned& NumNeutralParticles,
const unsigned& CHM);
bool tightJetId(const double& abseta,
const double& NHF,
const double& NEMF,
const double& CHF,
const double& CEMF,
const unsigned& NumNeutralParticles,
const unsigned& CHM);
const std::string folderName_;
const bool requireValidHLTPaths_;
bool hltPathsAreValid_;
edm::EDGetTokenT<reco::PFMETCollection> metToken_;
edm::EDGetTokenT<reco::PFJetCollection> jetToken_;
edm::EDGetTokenT<reco::GsfElectronCollection> eleToken_;
edm::EDGetTokenT<reco::MuonCollection> muoToken_;
edm::EDGetTokenT<reco::PhotonCollection> phoToken_;
edm::EDGetTokenT<reco::TrackCollection> trkToken_;
//objects to plot
//add your own with corresponding switch
bool do_met_;
METDQM metDQM_;
bool do_jet_;
JetDQM jetDQM_;
bool do_ht_;
HTDQM htDQM_;
bool do_hmg_;
HMesonGammaDQM hmgDQM_;
std::unique_ptr<GenericTriggerEventFlag> num_genTriggerEventFlag_;
std::unique_ptr<GenericTriggerEventFlag> den_genTriggerEventFlag_;
StringCutObjectSelector<reco::MET, true> metSelection_;
StringCutObjectSelector<reco::PFJet, true> jetSelection_;
std::string jetId_;
StringCutObjectSelector<reco::PFJet, true> htjetSelection_;
StringCutObjectSelector<reco::GsfElectron, true> eleSelection_;
StringCutObjectSelector<reco::Muon, true> muoSelection_;
StringCutObjectSelector<reco::Photon, true> phoSelection_;
StringCutObjectSelector<reco::Track, true> trkSelection_;
unsigned njets_;
unsigned nelectrons_;
unsigned nmuons_;
unsigned nphotons_;
unsigned nmesons_;
};
ObjMonitor::ObjMonitor(const edm::ParameterSet& iConfig)
: folderName_(iConfig.getParameter<std::string>("FolderName")),
requireValidHLTPaths_(iConfig.getParameter<bool>("requireValidHLTPaths")),
hltPathsAreValid_(false),
metToken_(consumes<reco::PFMETCollection>(iConfig.getParameter<edm::InputTag>("met"))),
jetToken_(mayConsume<reco::PFJetCollection>(iConfig.getParameter<edm::InputTag>("jets"))),
eleToken_(mayConsume<reco::GsfElectronCollection>(iConfig.getParameter<edm::InputTag>("electrons"))),
muoToken_(mayConsume<reco::MuonCollection>(iConfig.getParameter<edm::InputTag>("muons"))),
phoToken_(mayConsume<reco::PhotonCollection>(iConfig.getParameter<edm::InputTag>("photons"))),
trkToken_(mayConsume<reco::TrackCollection>(iConfig.getParameter<edm::InputTag>("tracks"))),
do_met_(iConfig.getParameter<bool>("doMETHistos")),
do_jet_(iConfig.getParameter<bool>("doJetHistos")),
do_ht_(iConfig.getParameter<bool>("doHTHistos")),
do_hmg_(iConfig.getParameter<bool>("doHMesonGammaHistos")),
num_genTriggerEventFlag_(std::make_unique<GenericTriggerEventFlag>(
iConfig.getParameter<edm::ParameterSet>("numGenericTriggerEventPSet"), consumesCollector(), *this)),
den_genTriggerEventFlag_(std::make_unique<GenericTriggerEventFlag>(
iConfig.getParameter<edm::ParameterSet>("denGenericTriggerEventPSet"), consumesCollector(), *this)),
metSelection_(iConfig.getParameter<std::string>("metSelection")),
jetSelection_(iConfig.getParameter<std::string>("jetSelection")),
jetId_(iConfig.getParameter<std::string>("jetId")),
htjetSelection_(iConfig.getParameter<std::string>("htjetSelection")),
eleSelection_(iConfig.getParameter<std::string>("eleSelection")),
muoSelection_(iConfig.getParameter<std::string>("muoSelection")),
phoSelection_(iConfig.getParameter<std::string>("phoSelection")),
trkSelection_(iConfig.getParameter<std::string>("trkSelection")),
njets_(iConfig.getParameter<int>("njets")),
nelectrons_(iConfig.getParameter<int>("nelectrons")),
nmuons_(iConfig.getParameter<int>("nmuons")),
nphotons_(iConfig.getParameter<int>("nphotons")),
nmesons_(iConfig.getParameter<int>("nmesons")) {
if (do_met_) {
metDQM_.initialise(iConfig);
}
if (do_jet_) {
jetDQM_.initialise(iConfig);
}
if (do_ht_) {
htDQM_.initialise(iConfig);
}
if (do_hmg_) {
hmgDQM_.initialise(iConfig);
}
}
ObjMonitor::~ObjMonitor() throw() {
if (num_genTriggerEventFlag_) {
num_genTriggerEventFlag_.reset();
}
if (den_genTriggerEventFlag_) {
den_genTriggerEventFlag_.reset();
}
}
void ObjMonitor::bookHistograms(DQMStore::IBooker& ibooker, edm::Run const& iRun, edm::EventSetup const& iSetup) {
// Initialize the GenericTriggerEventFlag
if (num_genTriggerEventFlag_ && num_genTriggerEventFlag_->on())
num_genTriggerEventFlag_->initRun(iRun, iSetup);
if (den_genTriggerEventFlag_ && den_genTriggerEventFlag_->on())
den_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_ && den_genTriggerEventFlag_ && num_genTriggerEventFlag_->on() &&
den_genTriggerEventFlag_->on() && num_genTriggerEventFlag_->allHLTPathsAreValid() &&
den_genTriggerEventFlag_->allHLTPathsAreValid());
// if valid HLT paths are required,
// create DQM outputs only if all paths are valid
if (requireValidHLTPaths_ and (not hltPathsAreValid_)) {
return;
}
std::string currentFolder = folderName_;
ibooker.setCurrentFolder(currentFolder);
if (do_met_)
metDQM_.bookHistograms(ibooker);
if (do_jet_)
jetDQM_.bookHistograms(ibooker);
if (do_ht_)
htDQM_.bookHistograms(ibooker);
if (do_hmg_)
hmgDQM_.bookHistograms(ibooker);
}
void ObjMonitor::analyze(edm::Event const& iEvent, edm::EventSetup const& iSetup) {
// if valid HLT paths are required,
// analyze event only if all paths are valid
if (requireValidHLTPaths_ and (not hltPathsAreValid_)) {
return;
}
// Filter out events if Trigger Filtering is requested
if (den_genTriggerEventFlag_->on() && !den_genTriggerEventFlag_->accept(iEvent, iSetup))
return;
edm::Handle<reco::PFMETCollection> metHandle;
iEvent.getByToken(metToken_, metHandle);
reco::PFMET pfmet = metHandle->front();
if (!metSelection_(pfmet))
return;
float met = pfmet.pt();
float phi = pfmet.phi();
edm::Handle<reco::PFJetCollection> jetHandle;
iEvent.getByToken(jetToken_, jetHandle);
std::vector<reco::PFJet> jets;
std::vector<reco::PFJet> htjets;
if (jetHandle->size() < njets_)
return;
for (auto const& j : *jetHandle) {
if (jetSelection_(j)) {
if (jetId_ == "loose" || jetId_ == "tight") {
double abseta = abs(j.eta());
double NHF = j.neutralHadronEnergyFraction();
double NEMF = j.neutralEmEnergyFraction();
double CHF = j.chargedHadronEnergyFraction();
double CEMF = j.chargedEmEnergyFraction();
unsigned NumNeutralParticles = j.neutralMultiplicity();
unsigned CHM = j.chargedMultiplicity();
bool passId = (jetId_ == "loose" && looseJetId(abseta, NHF, NEMF, CHF, CEMF, NumNeutralParticles, CHM)) ||
(jetId_ == "tight" && tightJetId(abseta, NHF, NEMF, CHF, CEMF, NumNeutralParticles, CHM));
if (passId)
jets.push_back(j);
} else
jets.push_back(j);
}
if (htjetSelection_(j))
htjets.push_back(j);
}
if (jets.size() < njets_)
return;
edm::Handle<reco::GsfElectronCollection> eleHandle;
iEvent.getByToken(eleToken_, eleHandle);
std::vector<reco::GsfElectron> electrons;
if (eleHandle->size() < nelectrons_)
return;
for (auto const& e : *eleHandle) {
if (eleSelection_(e))
electrons.push_back(e);
}
if (electrons.size() < nelectrons_)
return;
edm::Handle<reco::MuonCollection> muoHandle;
iEvent.getByToken(muoToken_, muoHandle);
if (muoHandle->size() < nmuons_)
return;
std::vector<reco::Muon> muons;
for (auto const& m : *muoHandle) {
if (muoSelection_(m))
muons.push_back(m);
}
if (muons.size() < nmuons_)
return;
edm::Handle<reco::PhotonCollection> phoHandle;
iEvent.getByToken(phoToken_, phoHandle);
if (phoHandle->size() < nphotons_)
return;
std::vector<reco::Photon> photons;
for (auto const& m : *phoHandle) {
if (phoSelection_(m))
photons.push_back(m);
}
if (photons.size() < nphotons_)
return;
std::vector<TLorentzVector> passedMesons;
if (do_hmg_) {
edm::Handle<reco::TrackCollection> trkHandle;
iEvent.getByToken(trkToken_, trkHandle);
// find isolated mesons (phi or rho)
TLorentzVector t1, t2;
float hadronMassHyp[2] = {0.1396, 0.4937}; // pi or K mass
float loMassLim[2] = {0.5, 0.9}; // rho or phi mass
float hiMassLim[2] = {1.0, 1.11}; // rho or phi mass
for (size_t i = 0; i < trkHandle->size(); ++i) {
const reco::Track trk1 = trkHandle->at(i);
if (!trkSelection_(trk1))
continue;
for (size_t j = i + 1; j < trkHandle->size(); ++j) {
const reco::Track trk2 = trkHandle->at(j);
if (!trkSelection_(trk2))
continue;
if (trk1.charge() * trk2.charge() != -1)
continue;
for (unsigned hyp = 0; hyp < 2; ++hyp) {
t1.SetPtEtaPhiM(trk1.pt(), trk1.eta(), trk1.phi(), hadronMassHyp[hyp]);
t2.SetPtEtaPhiM(trk2.pt(), trk2.eta(), trk2.phi(), hadronMassHyp[hyp]);
TLorentzVector mesCand = t1 + t2;
// cuts
if (mesCand.M() < loMassLim[hyp] || mesCand.M() > hiMassLim[hyp])
continue; //mass
if (mesCand.Pt() < 35. || fabs(mesCand.Rapidity()) > 2.1)
continue; //pT eta
// isolation
float absIso = 0.;
for (size_t k = 0; k < trkHandle->size(); ++k) {
if (k == i || k == j)
continue;
const reco::Track trkN = trkHandle->at(k);
if (trkN.charge() == 0 || trkN.pt() < 0.5 || (trkN.dz() > 0.1) ||
deltaR(trkN.eta(), trkN.phi(), mesCand.Eta(), mesCand.Phi()) > 0.5)
continue;
absIso += trkN.pt();
}
if (absIso / mesCand.Pt() > 0.2)
continue;
passedMesons.push_back(mesCand);
}
}
}
if (passedMesons.size() < nmesons_)
return;
}
bool passNumCond = num_genTriggerEventFlag_->off() || num_genTriggerEventFlag_->accept(iEvent, iSetup);
int ls = iEvent.id().luminosityBlock();
if (do_met_)
metDQM_.fillHistograms(met, phi, ls, passNumCond);
if (do_jet_)
jetDQM_.fillHistograms(jets, pfmet, ls, passNumCond);
if (do_ht_)
htDQM_.fillHistograms(htjets, met, ls, passNumCond);
if (do_hmg_)
hmgDQM_.fillHistograms(photons, passedMesons, ls, passNumCond);
}
bool ObjMonitor::looseJetId(const double& abseta,
const double& NHF,
const double& NEMF,
const double& CHF,
const double& CEMF,
const unsigned& NumNeutralParticles,
const unsigned& CHM) {
if (abseta <= 2.7) {
unsigned NumConst = CHM + NumNeutralParticles;
return ((NumConst > 1 && NHF < 0.99 && NEMF < 0.99) &&
((abseta <= 2.4 && CHF > 0 && CHM > 0 && CEMF < 0.99) || abseta > 2.4));
} else if (abseta <= 3) {
return (NumNeutralParticles > 2 && NEMF > 0.01 && NHF < 0.98);
} else {
return NumNeutralParticles > 10 && NEMF < 0.90;
}
}
bool ObjMonitor::tightJetId(const double& abseta,
const double& NHF,
const double& NEMF,
const double& CHF,
const double& CEMF,
const unsigned& NumNeutralParticles,
const unsigned& CHM) {
if (abseta <= 2.7) {
unsigned NumConst = CHM + NumNeutralParticles;
return (NumConst > 1 && NHF < 0.90 && NEMF < 0.90) &&
((abseta <= 2.4 && CHF > 0 && CHM > 0 && CEMF < 0.99) || abseta > 2.4);
} else if (abseta <= 3) {
return (NHF < 0.98 && NEMF > 0.01 && NumNeutralParticles > 2);
} else {
return (NEMF < 0.90 && NumNeutralParticles > 10);
}
}
void ObjMonitor::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.add<std::string>("FolderName", "HLT/OBJ");
desc.add<bool>("requireValidHLTPaths", true);
desc.add<edm::InputTag>("met", edm::InputTag("pfMet"));
desc.add<edm::InputTag>("jets", edm::InputTag("ak4PFJetsCHS"));
desc.add<edm::InputTag>("electrons", edm::InputTag("gedGsfElectrons"));
desc.add<edm::InputTag>("muons", edm::InputTag("muons"));
desc.add<edm::InputTag>("photons", edm::InputTag("gedPhotons"));
desc.add<edm::InputTag>("tracks", edm::InputTag("generalTracks"));
desc.add<std::string>("metSelection", "pt > 0");
desc.add<std::string>("jetSelection", "pt > 0");
desc.add<std::string>("jetId", "");
desc.add<std::string>("htjetSelection", "pt > 30");
desc.add<std::string>("eleSelection", "pt > 0");
desc.add<std::string>("muoSelection", "pt > 0");
desc.add<std::string>("phoSelection", "pt > 0");
desc.add<std::string>("trkSelection", "pt > 0");
desc.add<int>("njets", 0);
desc.add<int>("nelectrons", 0);
desc.add<int>("nmuons", 0);
desc.add<int>("nphotons", 0);
desc.add<int>("nmesons", 0);
edm::ParameterSetDescription genericTriggerEventPSet;
GenericTriggerEventFlag::fillPSetDescription(genericTriggerEventPSet);
desc.add<edm::ParameterSetDescription>("numGenericTriggerEventPSet", genericTriggerEventPSet);
desc.add<edm::ParameterSetDescription>("denGenericTriggerEventPSet", genericTriggerEventPSet);
desc.add<bool>("doMETHistos", true);
edm::ParameterSetDescription histoPSet;
METDQM::fillMetDescription(histoPSet);
desc.add<bool>("doJetHistos", true);
JetDQM::fillJetDescription(histoPSet);
desc.add<bool>("doHTHistos", true);
HTDQM::fillHtDescription(histoPSet);
desc.add<bool>("doHMesonGammaHistos", true);
HMesonGammaDQM::fillHmgDescription(histoPSet);
desc.add<edm::ParameterSetDescription>("histoPSet", histoPSet);
descriptions.add("objMonitoring", desc);
}
// Define this as a plug-in
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(ObjMonitor);
|