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
|
#ifndef DQM_Physics_EwkTauDQM_h
#define DQM_Physics_EwkTauDQM_h
/** \class EwkTauDQM
*
* Booking and filling of histograms for data-quality monitoring purposes
* in EWK tau analyses; individual channels are implemented in separate
*Ewk..HistManager classes,
* so far:
* o Z --> electron + tau-jet channel (EwkElecTauHistManager)
* o Z --> muon + tau-jet channel (EwkMuTauHistManager)
*
* \authors Letizia Lusito,
* Joshua Swanson,
* Christian Veelken
*/
#include "DQMServices/Core/interface/DQMOneEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include <string>
#include <Math/VectorUtil.h>
class EwkElecTauHistManager;
class EwkMuTauHistManager;
class EwkTauDQM : public DQMOneEDAnalyzer<> {
public:
EwkTauDQM(const edm::ParameterSet&);
~EwkTauDQM() override;
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
void analyze(const edm::Event&, const edm::EventSetup&) override;
void dqmEndRun(const edm::Run&, const edm::EventSetup&) override;
private:
std::string dqmDirectory_;
int maxNumWarnings_;
EwkElecTauHistManager* elecTauHistManager_;
EwkMuTauHistManager* muTauHistManager_;
};
//-------------------------------------------------------------------------------
// code specific to Z --> e + tau-jet channel
//-------------------------------------------------------------------------------
/** \class EwkElecTauHistManager
*
* Booking and filling of histograms for data-quality monitoring purposes
* in Z --> electron + tau-jet channel
*
* \author Joshua Swanson
* (modified by Christian Veelken)
*
*
*
*/
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include <string>
class EwkElecTauHistManager {
public:
typedef EwkTauDQM::DQMStore DQMStore;
typedef EwkTauDQM::MonitorElement MonitorElement;
EwkElecTauHistManager(const edm::ParameterSet&);
void bookHistograms(DQMStore::IBooker&);
void fillHistograms(const edm::Event&, const edm::EventSetup&);
void finalizeHistograms();
private:
//--- labels of electron, tau-jet and MEt collections being used
// in event selection and when filling histograms
edm::InputTag triggerResultsSource_;
edm::InputTag vertexSource_;
edm::InputTag beamSpotSource_;
edm::InputTag electronSource_;
edm::InputTag tauJetSource_;
edm::InputTag caloMEtSource_;
edm::InputTag pfMEtSource_;
edm::InputTag tauDiscrByLeadTrackFinding_;
edm::InputTag tauDiscrByLeadTrackPtCut_;
edm::InputTag tauDiscrByTrackIso_;
edm::InputTag tauDiscrByEcalIso_;
edm::InputTag tauDiscrAgainstElectrons_;
edm::InputTag tauDiscrAgainstMuons_;
//--- event selection criteria
typedef std::vector<std::string> vstring;
vstring hltPaths_;
double electronEtaCut_;
double electronPtCut_;
double electronTrackIsoCut_;
double electronEcalIsoCut_;
int electronIsoMode_;
double tauJetEtaCut_;
double tauJetPtCut_;
double visMassCut_;
//--- name of DQM directory in which histograms for Z --> electron + tau-jet
// channel get stored
std::string dqmDirectory_;
//--- histograms
// MonitorElement* hNumIdElectrons_;
MonitorElement* hElectronPt_;
MonitorElement* hElectronEta_;
MonitorElement* hElectronPhi_;
MonitorElement* hElectronTrackIsoPt_;
MonitorElement* hElectronEcalIsoPt_;
// MonitorElement* hElectronHcalIsoPt_;
MonitorElement* hTauJetPt_;
MonitorElement* hTauJetEta_;
// MonitorElement* hTauJetPhi_;
// MonitorElement* hTauLeadTrackPt_;
// MonitorElement* hTauTrackIsoPt_;
// MonitorElement* hTauEcalIsoPt_;
// MonitorElement* hTauDiscrAgainstElectrons_;
// MonitorElement* hTauDiscrAgainstMuons_;
// MonitorElement* hTauJetCharge_;
// MonitorElement* hTauJetNumSignalTracks_;
// MonitorElement* hTauJetNumIsoTracks_;
MonitorElement* hVisMass_;
// MonitorElement* hMtElecCaloMEt_;
MonitorElement* hMtElecPFMEt_;
// MonitorElement* hPzetaCaloMEt_;
// MonitorElement* hPzetaPFMEt_;
MonitorElement* hElecTauAcoplanarity_;
MonitorElement* hElecTauCharge_;
// MonitorElement* hVertexChi2_;
MonitorElement* hVertexZ_;
// MonitorElement* hVertexD0_;
MonitorElement* hCaloMEtPt_;
// MonitorElement* hCaloMEtPhi_;
MonitorElement* hPFMEtPt_;
// MonitorElement* hPFMEtPhi_;
MonitorElement* hCutFlowSummary_;
enum {
kPassedPreselection = 1,
kPassedTrigger = 2,
kPassedElectronId = 3,
kPassedElectronTrackIso = 4,
kPassedElectronEcalIso = 5,
kPassedTauLeadTrack = 6,
kPassedTauLeadTrackPt = 7,
kPassedTauDiscrAgainstElectrons = 8,
kPassedTauDiscrAgainstMuons = 9,
kPassedTauTrackIso = 10,
kPassedTauEcalIso = 11
};
//--- counters for filter-statistics output
unsigned numEventsAnalyzed_;
unsigned numEventsSelected_;
int cfgError_;
int maxNumWarnings_;
long numWarningsTriggerResults_;
long numWarningsHLTpath_;
long numWarningsVertex_;
long numWarningsBeamSpot_;
long numWarningsElectron_;
long numWarningsTauJet_;
long numWarningsTauDiscrByLeadTrackFinding_;
long numWarningsTauDiscrByLeadTrackPtCut_;
long numWarningsTauDiscrByTrackIso_;
long numWarningsTauDiscrByEcalIso_;
long numWarningsTauDiscrAgainstElectrons_;
long numWarningsTauDiscrAgainstMuons_;
long numWarningsCaloMEt_;
long numWarningsPFMEt_;
};
//-------------------------------------------------------------------------------
// code specific to Z --> mu + tau-jet channel
//-------------------------------------------------------------------------------
/** \class EwkMuTauHistManager
*
* Booking and filling of histograms for data-quality monitoring purposes
* in Z --> muon + tau-jet channel
*
* \author Letizia Lusito,
* Christian Veelken
*
*
*
*/
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include <string>
class EwkMuTauHistManager {
public:
typedef EwkTauDQM::DQMStore DQMStore;
typedef EwkTauDQM::MonitorElement MonitorElement;
EwkMuTauHistManager(const edm::ParameterSet&);
void bookHistograms(DQMStore::IBooker&);
void fillHistograms(const edm::Event&, const edm::EventSetup&);
void finalizeHistograms();
private:
//--- labels of muon, tau-jet and MEt collections being used
// in event selection and when filling histograms
edm::InputTag triggerResultsSource_;
edm::InputTag vertexSource_;
edm::InputTag beamSpotSource_;
edm::InputTag muonSource_;
edm::InputTag tauJetSource_;
edm::InputTag caloMEtSource_;
edm::InputTag pfMEtSource_;
edm::InputTag tauDiscrByLeadTrackFinding_;
edm::InputTag tauDiscrByLeadTrackPtCut_;
edm::InputTag tauDiscrByTrackIso_;
edm::InputTag tauDiscrByEcalIso_;
edm::InputTag tauDiscrAgainstMuons_;
//--- event selection criteria
typedef std::vector<std::string> vstring;
vstring hltPaths_;
double muonEtaCut_;
double muonPtCut_;
double muonTrackIsoCut_;
double muonEcalIsoCut_;
double muonCombIsoCut_;
int muonIsoMode_;
double tauJetEtaCut_;
double tauJetPtCut_;
double visMassCut_;
double deltaRCut_;
//--- name of DQM directory in which histograms for Z --> muon + tau-jet
// channel get stored
std::string dqmDirectory_;
//--- histograms
// MonitorElement* hNumGlobalMuons_;
MonitorElement* hMuonPt_;
MonitorElement* hMuonEta_;
MonitorElement* hMuonPhi_;
MonitorElement* hMuonTrackIsoPt_;
MonitorElement* hMuonEcalIsoPt_;
MonitorElement* hMuonCombIsoPt_;
MonitorElement* hTauJetPt_;
MonitorElement* hTauJetEta_;
MonitorElement* hTauJetPhi_;
MonitorElement* hTauLeadTrackPt_;
MonitorElement* hTauTrackIsoPt_;
MonitorElement* hTauEcalIsoPt_;
MonitorElement* hTauDiscrAgainstMuons_;
MonitorElement* hTauJetCharge_;
MonitorElement* hTauJetNumSignalTracks_;
MonitorElement* hTauJetNumIsoTracks_;
MonitorElement* hVisMass_;
MonitorElement* hMuTauDeltaR_;
MonitorElement* hVisMassFinal_;
// MonitorElement* hMtMuCaloMEt_;
MonitorElement* hMtMuPFMEt_;
// MonitorElement* hPzetaCmaxNumWarnings_aloMEt_;
// MonitorElement* hPzetaPFMEt_;
MonitorElement* hMuTauAcoplanarity_;
// MonitorElement* hMuTauCharge_;
// MonitorElement* hVertexChi2_;
MonitorElement* hVertexZ_;
// MonitorElement* hVertexD0_;
MonitorElement* hCaloMEtPt_;
// MonitorElement* hCaloMEtPhi_;
MonitorElement* hPFMEtPt_;
// MonitorElement* hPFMEtPhi_;
MonitorElement* hCutFlowSummary_;
enum {
kPassedPreselection = 1,
kPassedTrigger = 2,
kPassedMuonId = 3,
kPassedTauLeadTrack = 4,
kPassedTauLeadTrackPt = 5,
kPassedTauDiscrAgainstMuons = 6,
kPassedDeltaR = 7,
kPassedMuonTrackIso = 8,
kPassedMuonEcalIso = 9,
kPassedTauTrackIso = 10,
kPassedTauEcalIso = 11
};
//--- counters for filter-statistics output
unsigned numEventsAnalyzed_;
unsigned numEventsSelected_;
int cfgError_;
int maxNumWarnings_;
long numWarningsTriggerResults_;
long numWarningsHLTpath_;
long numWarningsVertex_;
long numWarningsBeamSpot_;
long numWarningsMuon_;
long numWarningsTauJet_;
long numWarningsTauDiscrByLeadTrackFinding_;
long numWarningsTauDiscrByLeadTrackPtCut_;
long numWarningsTauDiscrByTrackIso_;
long numWarningsTauDiscrByEcalIso_;
long numWarningsTauDiscrAgainstMuons_;
long numWarningsCaloMEt_;
long numWarningsPFMEt_;
};
//-------------------------------------------------------------------------------
// common auxiliary functions used by different channels
//-------------------------------------------------------------------------------
/**
*
* Auxiliary functions to compute quantities used by EWK Tau DQM
* (shared by different channels)
*
* \author Joshua Swanson
*
*
*
*/
#include "DataFormats/Candidate/interface/Candidate.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
#include "DataFormats/TauReco/interface/PFTau.h"
#include "DataFormats/TauReco/interface/PFTauFwd.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include <string>
enum { kAbsoluteIso, kRelativeIso, kUndefinedIso };
template <typename T>
void readEventData(const edm::Event& evt,
const edm::InputTag& src,
edm::Handle<T>& handle,
long& numWarnings,
int maxNumWarnings,
bool& error,
const char* errorMessage) {
if (!evt.getByLabel(src, handle)) {
if (numWarnings < maxNumWarnings || maxNumWarnings == -1)
edm::LogWarning("readEventData") << errorMessage << " !!";
++numWarnings;
error = true;
}
}
int getIsoMode(const std::string&, int&);
double calcDeltaPhi(double, double);
double calcMt(double, double, double, double);
double calcPzeta(const reco::Candidate::LorentzVector&, const reco::Candidate::LorentzVector&, double, double);
bool passesElectronPreId(const reco::GsfElectron&);
bool passesElectronId(const reco::GsfElectron&);
const reco::GsfElectron* getTheElectron(const reco::GsfElectronCollection&, double, double);
const reco::Muon* getTheMuon(const reco::MuonCollection&, double, double);
const reco::PFTau* getTheTauJet(const reco::PFTauCollection&, double, double, int&);
double getVertexD0(const reco::Vertex&, const reco::BeamSpot&);
#endif
|