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
|
#ifndef SINGLETOPTCHANNELLEPTONDQM
#define SINGLETOPTCHANNELLEPTONDQM
#include <string>
#include <vector>
#include "DQMServices/Core/interface/DQMOneEDAnalyzer.h"
#include "DataFormats/JetReco/interface/Jet.h"
#include "DQM/Physics/interface/TopDQMHelpers.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/Common/interface/ValueMap.h"
#include "DataFormats/METReco/interface/CaloMET.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include "FWCore/Framework/interface/EDConsumerBase.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "JetMETCorrections/JetCorrector/interface/JetCorrector.h"
/**
\class MonitorEnsemble TopDQMHelpers.h
"DQM/Physics/interface/TopDQMHelpers.h"
\brief Helper class to define histograms for monitoring of
muon/electron/jet/met quantities.
Helper class to contain histograms for the monitoring of
muon/electron/jet/met quantities.
This class can be instantiated several times after several event selection
steps. It can
be used to fill histograms in three different granularity levels according to
STANDARD
(<10 histograms), VERBOSE(<20 histograms), DEBUG(<30 histgorams). Note that
for the sake
of simplicity and to force the analyst to keep the number of histograms to be
monitored
small the MonitorEnsemble class contains the histograms for all objects at
once. It should
not contain much more than 10 histograms though in the STANDARD
configuration, as these
histograms will be monitored at each SelectionStep. Monitoring of histograms
after selec-
tion steps within the same object collection needs to be implemented within
the Monitor-
Ensemble. It will not be covered by the SelectionStep class.
*/
namespace SingleTopTChannelLepton {
using dqm::legacy::DQMStore;
using dqm::legacy::MonitorElement;
class MonitorEnsemble {
public:
/// different verbosity levels
enum Level { STANDARD, VERBOSE, DEBUG };
public:
/// default contructor
MonitorEnsemble(const char* label,
const edm::ParameterSet& cfg,
const edm::VParameterSet& vcfg,
edm::ConsumesCollector&& iC);
/// default destructor
~MonitorEnsemble() {}
/// book histograms in subdirectory _directory_
void book(DQMStore::IBooker& ibooker);
/// fill monitor histograms with electronId and jetCorrections
void fill(const edm::Event& event, const edm::EventSetup& setup);
private:
/// deduce monitorPath from label, the label is expected
/// to be of type 'selectionPath:monitorPath'
std::string monitorPath(const std::string& label) const { return label.substr(label.find(':') + 1); };
/// deduce selectionPath from label, the label is
/// expected to be of type 'selectionPath:monitorPath'
std::string selectionPath(const std::string& label) const { return label.substr(0, label.find(':')); };
/// set configurable labels for trigger monitoring histograms
void triggerBinLabels(std::string channel, const std::vector<std::string> labels);
/// fill trigger monitoring histograms
void fill(const edm::Event& event,
const edm::TriggerResults& triggerTable,
std::string channel,
const std::vector<std::string> labels) const;
/// check if histogram was booked
bool booked(const std::string histName) const { return hists_.find(histName) != hists_.end(); };
/// fill histogram if it had been booked before
void fill(const std::string histName, double value) const {
if (booked(histName))
hists_.find(histName)->second->Fill(value);
};
/// fill histogram if it had been booked before (2-dim version)
void fill(const std::string histName, double xValue, double yValue) const {
if (booked(histName))
hists_.find(histName)->second->Fill(xValue, yValue);
};
/// fill histogram if it had been booked before (2-dim version)
void fill(const std::string histName, double xValue, double yValue, double zValue) const {
if (booked(histName))
hists_.find(histName)->second->Fill(xValue, yValue, zValue);
};
private:
/// verbosity level for booking
Level verbosity_;
/// instance label
std::string label_;
/// considers a vector of METs
std::vector<edm::EDGetTokenT<edm::View<reco::MET>>> mets_;
// std::vector<edm::InputTag> mets_;
/// input sources for monitoring
edm::EDGetTokenT<edm::View<reco::Jet>> jets_;
edm::EDGetTokenT<edm::View<reco::Muon>> muons_;
//edm::EDGetTokenT<edm::View<reco::GsfElectron> > elecs_gsf_;
edm::EDGetTokenT<edm::View<reco::GsfElectron>> elecs_;
edm::EDGetTokenT<edm::View<reco::Vertex>> pvs_;
// edm::InputTag elecs_, elecs_gsf_, muons_, muons_reco_, jets_, pvs_;
/// trigger table
// edm::InputTag triggerTable_;
edm::EDGetTokenT<edm::TriggerResults> triggerTable_;
/// trigger paths for monitoring, expected
/// to be of form signalPath:MonitorPath
std::vector<std::string> triggerPaths_;
/// electronId label
// edm::InputTag electronId_;
edm::EDGetTokenT<edm::ValueMap<float>> electronId_;
/// electronId pattern we expect the following pattern:
/// 0: fails
/// 1: passes electron ID only
/// 2: passes electron Isolation only
/// 3: passes electron ID and Isolation only
/// 4: passes conversion rejection
/// 5: passes conversion rejection and ID
/// 6: passes conversion rejection and Isolation
/// 7: passes the whole selection
/// As described on
/// https://twiki.cern.ch/twiki/bin/view/CMS/SimpleCutBasedEleID
// int eidPattern_;
// the cut for the MVA Id
double eidCutValue_;
/// extra isolation criterion on electron
std::string elecIso_;
/// extra selection on electrons
std::unique_ptr<StringCutObjectSelector<reco::GsfElectron>> elecSelect_;
edm::InputTag rhoTag;
/// extra selection on primary vertices; meant to investigate the pile-up
/// effect
std::unique_ptr<StringCutObjectSelector<reco::Vertex>> pvSelect_;
/// extra isolation criterion on muon
std::unique_ptr<StringCutObjectSelector<reco::Muon>> muonIso_;
/// extra selection on muons
std::unique_ptr<StringCutObjectSelector<reco::Muon>> muonSelect_;
/// jetCorrector
edm::EDGetTokenT<reco::JetCorrector> jetCorrector_;
/// jetID as an extra selection type
edm::EDGetTokenT<reco::JetIDValueMap> jetIDLabel_;
/// extra jetID selection on calo jets
std::unique_ptr<StringCutObjectSelector<reco::JetID>> jetIDSelect_;
std::unique_ptr<StringCutObjectSelector<reco::PFJet>> jetlooseSelection_;
std::unique_ptr<StringCutObjectSelector<reco::PFJet>> jetSelection_;
/// extra selection on jets (here given as std::string as it depends
/// on the the jet type, which selections are valid and which not)
std::string jetSelect_;
/// include btag information or not
/// to be determined from the cfg
bool includeBTag_;
/// btag discriminator labels
// edm::InputTag btagEff_, btagPur_, btagVtx_, btagCombVtx_;
edm::EDGetTokenT<reco::JetTagCollection> btagEff_, btagPur_, btagVtx_, btagCSV_, btagCombVtx_;
/// btag working points
double btagEffWP_, btagPurWP_, btagVtxWP_, btagCSVWP_, btagCombVtxWP_;
/// mass window upper and lower edge
double lowerEdge_, upperEdge_;
/// number of logged interesting events
int logged_;
/// storage manager
/// histogram container
std::map<std::string, MonitorElement*> hists_;
edm::EDConsumerBase tmpConsumerBase;
std::string directory_;
std::unique_ptr<StringCutObjectSelector<reco::Muon, true>> muonSelect;
std::unique_ptr<StringCutObjectSelector<reco::Muon, true>> muonIso;
std::unique_ptr<StringCutObjectSelector<reco::GsfElectron, true>> elecSelect;
std::unique_ptr<StringCutObjectSelector<reco::GsfElectron, true>> elecIso;
};
inline void MonitorEnsemble::triggerBinLabels(std::string channel, const std::vector<std::string> labels) {
for (unsigned int idx = 0; idx < labels.size(); ++idx) {
hists_[channel + "Mon_"]->setBinLabel(idx + 1, "[" + monitorPath(labels[idx]) + "]", 1);
hists_[channel + "Eff_"]->setBinLabel(
idx + 1, "[" + selectionPath(labels[idx]) + "]|[" + monitorPath(labels[idx]) + "]", 1);
}
}
inline void MonitorEnsemble::fill(const edm::Event& event,
const edm::TriggerResults& triggerTable,
std::string channel,
const std::vector<std::string> labels) const {
for (unsigned int idx = 0; idx < labels.size(); ++idx) {
if (accept(event, triggerTable, monitorPath(labels[idx]))) {
fill(channel + "Mon_", idx + 0.5);
// take care to fill triggerMon_ before evts is being called
int evts = hists_.find(channel + "Mon_")->second->getBinContent(idx + 1);
double value = hists_.find(channel + "Eff_")->second->getBinContent(idx + 1);
fill(
channel + "Eff_", idx + 0.5, 1. / evts * (accept(event, triggerTable, selectionPath(labels[idx])) - value));
}
}
}
} // namespace SingleTopTChannelLepton
#include <utility>
#include "DQM/Physics/interface/TopDQMHelpers.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Common/interface/TriggerNames.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/Common/interface/TriggerResults.h"
/**
\class SingleTopTChannelLeptonDQM SingleTopTChannelLeptonDQM.h
"DQM/Physics/plugins/SingleTopTChannelLeptonDQM.h"
\brief Module to apply a monitored selection of top like events in the
semi-leptonic channel
Plugin to apply a monitored selection of top like events with some minimal
flexibility in the number and definition of the selection steps. To achieve
this flexibility it employes the SelectionStep class. The MonitorEnsemble
class is used to provide a well defined set of histograms to be monitored
after each selection step. The SelectionStep class provides a flexible and
intuitive selection via the StringCutParser. SelectionStep and
MonitorEnsemble classes are interleaved. The monitoring starts after a
preselection step (which is not monitored in the context of this module) with
an instance of the MonitorEnsemble class. The following objects are supported
for selection:
- jets : of type reco::Jet (jets), reco::CaloJet (jets/calo) or reco::PFJet
(jets/pflow)
- elecs : of type reco::GsfElectron
- muons : of type reco::Muon
- met : of type reco::MET
These types have to be present as prefix of the selection step paramter
_label_ separated from the rest of the label by a ':' (e.g. in the form
"jets:step0"). The class expects selection labels of this type. They will be
disentangled by the private helper functions _objectType_ and _seletionStep_
as declared below.
*/
/// define MonitorEnsembple to be used
// using SingleTopTChannelLepton::MonitorEnsemble;
class SingleTopTChannelLeptonDQM : public DQMOneEDAnalyzer<> {
public:
/// default constructor
SingleTopTChannelLeptonDQM(const edm::ParameterSet& cfg);
/// default destructor
~SingleTopTChannelLeptonDQM() override {}
/// do this during the event loop
void analyze(const edm::Event& event, const edm::EventSetup& setup) override;
protected:
//Book histograms
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
private:
/// deduce object type from ParameterSet label, the label
/// is expected to be of type 'objectType:selectionStep'
std::string objectType(const std::string& label) { return label.substr(0, label.find(':')); };
/// deduce selection step from ParameterSet label, the
/// label is expected to be of type 'objectType:selectionStep'
std::string selectionStep(const std::string& label) { return label.substr(label.find(':') + 1); };
private:
/// trigger table
edm::EDGetTokenT<edm::TriggerResults> triggerTable__;
/// trigger paths
std::vector<std::string> triggerPaths_;
/// primary vertex
edm::InputTag vertex_;
edm::EDGetTokenT<reco::Vertex> vertex__;
/// string cut selector
std::unique_ptr<StringCutObjectSelector<reco::Vertex>> vertexSelect_;
/// beamspot
edm::InputTag beamspot_;
edm::EDGetTokenT<reco::BeamSpot> beamspot__;
/// string cut selector
std::unique_ptr<StringCutObjectSelector<reco::BeamSpot>> beamspotSelect_;
/// needed to guarantee the selection order as defined by the order of
/// ParameterSets in the _selection_ vector as defined in the config
std::vector<std::string> selectionOrder_;
/// this is the heart component of the plugin; std::string keeps a label
/// the selection step for later identification, edm::ParameterSet keeps
/// the configuration of the selection for the SelectionStep class,
/// MonitoringEnsemble keeps an instance of the MonitorEnsemble class to
/// be filled _after_ each selection step
std::map<std::string, std::pair<edm::ParameterSet, std::unique_ptr<SingleTopTChannelLepton::MonitorEnsemble>>>
selection_;
std::unique_ptr<SelectionStep<reco::Muon>> MuonStep;
std::unique_ptr<SelectionStep<reco::Muon>> PFMuonStep;
std::unique_ptr<SelectionStep<reco::GsfElectron>> ElectronStep;
std::unique_ptr<SelectionStep<reco::GsfElectron>> PFElectronStep;
std::unique_ptr<SelectionStep<reco::Vertex>> PvStep;
std::vector<std::unique_ptr<SelectionStep<reco::Jet>>> JetSteps;
std::vector<std::unique_ptr<SelectionStep<reco::CaloJet>>> CaloJetSteps;
std::vector<std::unique_ptr<SelectionStep<reco::PFJet>>> PFJetSteps;
std::unique_ptr<SelectionStep<reco::MET>> METStep;
std::vector<edm::ParameterSet> sel;
};
#endif
|