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
|
/** \class MuRecoAnalyzer
*
* DQM monitoring source for PF muons
*
* \author C. Battilana - CIEMAT
*/
//Base class
#include "DQMOffline/Muon/interface/MuonPFAnalyzer.h"
#include "DataFormats/MuonReco/interface/MuonSelectors.h"
#include "DataFormats/GeometryVector/interface/Pi.h"
#include "DataFormats/Math/interface/deltaR.h"
//System included files
#include <memory>
#include <string>
#include <typeinfo>
#include <utility>
//Root included files
#include "TH1.h"
#include "TH2.h"
#include "TProfile.h"
//Event framework included files
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
using namespace edm;
using namespace std;
using namespace reco;
MuonPFAnalyzer::MuonPFAnalyzer(const ParameterSet &pSet) {
LogTrace("MuonPFAnalyzer") << "[MuonPFAnalyzer] Initializing configuration from parameterset.\n";
theGenLabel_ = consumes<GenParticleCollection>(pSet.getParameter<InputTag>("inputTagGenParticles"));
theRecoLabel_ = consumes<MuonCollection>(pSet.getParameter<InputTag>("inputTagMuonReco"));
theVertexLabel_ = consumes<VertexCollection>(pSet.getParameter<InputTag>("inputTagVertex"));
theBeamSpotLabel_ = consumes<BeamSpot>(pSet.getParameter<InputTag>("inputTagBeamSpot"));
theHighPtTh = pSet.getParameter<double>("highPtThreshold");
theRecoGenR = pSet.getParameter<double>("recoGenDeltaR");
theIsoCut = pSet.getParameter<double>("relCombIsoCut");
theRunOnMC = pSet.getParameter<bool>("runOnMC");
theFolder = pSet.getParameter<string>("folder");
theMuonKinds.push_back(""); // all TUNEP/PF muons
theMuonKinds.push_back("Tight"); // tight TUNEP/PF muons
theMuonKinds.push_back("TightIso"); // tight/iso TUNEP/PF muons
}
MuonPFAnalyzer::~MuonPFAnalyzer() { LogTrace("MuonPFAnalyzer") << "[MuonPFAnalyzer] Destructor called.\n"; }
// ------------ method called when starting to processes a run ------------
void MuonPFAnalyzer::bookHistograms(DQMStore::IBooker &ibooker, edm::Run const &, edm::EventSetup const &) {
if (theRunOnMC) {
bookHistos(ibooker, "PF");
bookHistos(ibooker, "PFTight");
bookHistos(ibooker, "PFTightIso");
bookHistos(ibooker, "TUNEP");
bookHistos(ibooker, "TUNEPTight");
bookHistos(ibooker, "TUNEPTightIso");
}
bookHistos(ibooker, "PFvsTUNEP");
bookHistos(ibooker, "PFvsTUNEPTight");
bookHistos(ibooker, "PFvsTUNEPTightIso");
}
void MuonPFAnalyzer::analyze(const Event &event, const EventSetup &context) {
Handle<reco::MuonCollection> muons;
event.getByToken(theRecoLabel_, muons);
Handle<GenParticleCollection> genMuons;
event.getByToken(theGenLabel_, genMuons);
Handle<BeamSpot> beamSpot;
event.getByToken(theBeamSpotLabel_, beamSpot);
Handle<VertexCollection> vertex;
event.getByToken(theVertexLabel_, vertex);
const Vertex primaryVertex = getPrimaryVertex(vertex, beamSpot);
recoToGenMatch(muons, genMuons);
RecoGenCollection::const_iterator recoGenIt = theRecoGen.begin();
RecoGenCollection::const_iterator recoGenEnd = theRecoGen.end();
for (; recoGenIt != recoGenEnd; ++recoGenIt) {
const Muon *muon = recoGenIt->first;
TrackRef tunePTrack = muon->tunePMuonBestTrack();
const GenParticle *genMuon = recoGenIt->second;
vector<string>::const_iterator kindIt = theMuonKinds.begin();
vector<string>::const_iterator kindEnd = theMuonKinds.end();
for (; kindIt != kindEnd; ++kindIt) {
const string &kind = (*kindIt);
if (kind.find("Tight") != string::npos && !muon::isTightMuon((*muon), primaryVertex))
continue;
if (kind.find("Iso") != string::npos && combRelIso(muon) > theIsoCut)
continue;
if (theRunOnMC && genMuon && !muon->innerTrack().isNull()) // has matched gen muon
{
if (!tunePTrack.isNull()) {
string group = "TUNEP" + kind;
float pt = tunePTrack->pt();
float phi = tunePTrack->phi();
float eta = tunePTrack->eta();
float genPt = genMuon->pt();
float genPhi = genMuon->p4().phi();
float genEta = genMuon->p4().eta();
float dPtOverPt = (pt / genPt) - 1;
if (pt < theHighPtTh) {
fillInRange(getPlot(group, "code"), 1, muonTrackType(muon, false));
fillInRange(getPlot(group, "deltaPtOverPt"), 1, dPtOverPt);
} else {
fillInRange(getPlot(group, "codeHighPt"), 1, muonTrackType(muon, false));
fillInRange(getPlot(group, "deltaPtOverPtHighPt"), 1, dPtOverPt);
}
fillInRange(getPlot(group, "deltaPt"), 1, (pt - genPt));
fillInRange(getPlot(group, "deltaPhi"), 1, fDeltaPhi(genPhi, phi));
fillInRange(getPlot(group, "deltaEta"), 1, genEta - eta);
}
if (muon->isPFMuon()) {
string group = "PF" + kind;
// Assumes that default in muon is PF
float pt = muon->pt();
float phi = muon->p4().phi();
float eta = muon->p4().eta();
float genPt = genMuon->pt();
float genPhi = genMuon->p4().phi();
float genEta = genMuon->p4().eta();
float dPtOverPt = (pt / genPt) - 1;
if (pt < theHighPtTh) {
fillInRange(getPlot(group, "code"), 1, muonTrackType(muon, true));
fillInRange(getPlot(group, "deltaPtOverPt"), 1, dPtOverPt);
} else {
fillInRange(getPlot(group, "codeHighPt"), 1, muonTrackType(muon, true));
fillInRange(getPlot(group, "deltaPtOverPtHighPt"), 1, dPtOverPt);
}
fillInRange(getPlot(group, "deltaPt"), 1, pt - genPt);
fillInRange(getPlot(group, "deltaPhi"), 1, fDeltaPhi(genPhi, phi));
fillInRange(getPlot(group, "deltaEta"), 1, genEta - eta);
}
}
if (muon->isPFMuon() && !tunePTrack.isNull() && !muon->innerTrack().isNull()) // Compare PF with TuneP + Tracker
{ // No gen matching needed
string group = "PFvsTUNEP" + kind;
float pt = tunePTrack->pt();
float phi = tunePTrack->phi();
float eta = tunePTrack->eta();
// Assumes that default in muon is PF
float pfPt = muon->pt();
float pfPhi = muon->p4().phi();
float pfEta = muon->p4().eta();
float dPtOverPt = (pfPt / pt) - 1; // TUNEP vs PF pt used as denum.
if (pt < theHighPtTh) {
fillInRange(getPlot(group, "code"), 2, muonTrackType(muon, false), muonTrackType(muon, true));
fillInRange(getPlot(group, "deltaPtOverPt"), 1, dPtOverPt);
} else {
fillInRange(getPlot(group, "codeHighPt"), 2, muonTrackType(muon, false), muonTrackType(muon, true));
fillInRange(getPlot(group, "deltaPtOverPtHighPt"), 1, dPtOverPt);
}
fillInRange(getPlot(group, "deltaPt"), 1, pfPt - pt);
fillInRange(getPlot(group, "deltaPhi"), 1, fDeltaPhi(pfPhi, phi));
fillInRange(getPlot(group, "deltaEta"), 1, pfEta - eta);
if (theRunOnMC && genMuon) // has a matched gen muon
{
float genPt = genMuon->pt();
float dPtOverPtGen = (pt / genPt) - 1;
float dPtOverPtGenPF = (pfPt / genPt) - 1;
if (pt < theHighPtTh) {
fillInRange(getPlot(group, "deltaPtOverPtPFvsTUNEP"), 2, dPtOverPtGen, dPtOverPtGenPF);
} else {
fillInRange(getPlot(group, "deltaPtOverPtHighPtPFvsTUNEP"), 2, dPtOverPtGen, dPtOverPtGenPF);
}
}
}
}
}
}
void MuonPFAnalyzer::bookHistos(DQMStore::IBooker &ibooker, const string &group) {
LogTrace("MuonPFAnalyzer") << "[MuonPFAnalyzer] Booking histos for group :" << group << "\n";
ibooker.setCurrentFolder(string(theFolder) + group);
bool isPFvsTUNEP = group.find("PFvsTUNEP") != string::npos;
string hName;
hName = "deltaPtOverPt" + group;
thePlots[group]["deltaPtOverPt"] = ibooker.book1D(hName.c_str(), hName.c_str(), 101, -1.01, 1.01);
hName = "deltaPtOverPtHighPt" + group;
thePlots[group]["deltaPtOverPtHighPt"] = ibooker.book1D(hName.c_str(), hName.c_str(), 101, -1.01, 1.01);
hName = "deltaPt" + group;
thePlots[group]["deltaPt"] = ibooker.book1D(hName.c_str(), hName.c_str(), 201., -10.25, 10.25);
hName = "deltaPhi" + group;
thePlots[group]["deltaPhi"] = ibooker.book1D(hName.c_str(), hName.c_str(), 51., 0, .0102);
hName = "deltaEta" + group;
thePlots[group]["deltaEta"] = ibooker.book1D(hName.c_str(), hName.c_str(), 101., -.00505, .00505);
if (isPFvsTUNEP) {
hName = "code" + group;
MonitorElement *plot = ibooker.book2D(hName.c_str(), hName.c_str(), 7, -.5, 6.5, 7, -.5, 6.5);
thePlots[group]["code"] = plot;
setCodeLabels(plot, 1);
setCodeLabels(plot, 2);
hName = "codeHighPt" + group;
plot = ibooker.book2D(hName.c_str(), hName.c_str(), 7, -.5, 6.5, 7, -.5, 6.5);
thePlots[group]["codeHighPt"] = plot;
setCodeLabels(plot, 1);
setCodeLabels(plot, 2);
if (theRunOnMC) {
hName = "deltaPtOverPtPFvsTUNEP" + group;
thePlots[group]["deltaPtOverPtPFvsTUNEP"] =
ibooker.book2D(hName.c_str(), hName.c_str(), 101, -1.01, 1.01, 101, -1.01, 1.01);
hName = "deltaPtOverPtHighPtPFvsTUNEP" + group;
thePlots[group]["deltaPtOverPtHighPtPFvsTUNEP"] =
ibooker.book2D(hName.c_str(), hName.c_str(), 101, -1.01, 1.01, 101, -1.01, 1.01);
}
} else {
hName = "code" + group;
MonitorElement *plot = ibooker.book1D(hName.c_str(), hName.c_str(), 7, -.5, 6.5);
thePlots[group]["code"] = plot;
setCodeLabels(plot, 1);
hName = "codeHighPt" + group;
plot = ibooker.book1D(hName.c_str(), hName.c_str(), 7, -.5, 6.5);
thePlots[group]["codeHighPt"] = plot;
setCodeLabels(plot, 1);
}
}
MuonPFAnalyzer::MonitorElement *MuonPFAnalyzer::getPlot(const string &group, const string &type) {
map<string, map<string, MonitorElement *> >::iterator groupIt = thePlots.find(group);
if (groupIt == thePlots.end()) {
LogTrace("MuonPFAnalyzer") << "[MuonPFAnalyzer] GROUP : " << group << " is not a valid plot group. Returning 0.\n";
return nullptr;
}
map<string, MonitorElement *>::iterator typeIt = groupIt->second.find(type);
if (typeIt == groupIt->second.end()) {
LogTrace("MuonPFAnalyzer") << "[MuonPFAnalyzer] TYPE : " << type << " is not a valid type for GROUP : " << group
<< ". Returning 0.\n";
return nullptr;
}
return typeIt->second;
}
inline float MuonPFAnalyzer::combRelIso(const reco::Muon *muon) {
MuonIsolation iso = muon->isolationR03();
float combRelIso = (iso.emEt + iso.hadEt + iso.sumPt) / muon->pt();
return combRelIso;
}
inline float MuonPFAnalyzer::fDeltaPhi(float phi1, float phi2) {
float fPhiDiff = fabs(acos(cos(phi1 - phi2)));
return fPhiDiff;
}
void MuonPFAnalyzer::setCodeLabels(MonitorElement *plot, int nAxis) {
TAxis *axis = nullptr;
TH1 *histo = plot->getTH1();
if (!histo)
return;
if (nAxis == 1)
axis = histo->GetXaxis();
else if (nAxis == 2)
axis = histo->GetYaxis();
if (!axis)
return;
axis->SetBinLabel(1, "Inner Track");
axis->SetBinLabel(2, "Outer Track");
axis->SetBinLabel(3, "Combined");
axis->SetBinLabel(4, "TPFMS");
axis->SetBinLabel(5, "Picky");
axis->SetBinLabel(6, "DYT");
axis->SetBinLabel(7, "None");
}
void MuonPFAnalyzer::fillInRange(MonitorElement *plot, int nAxis, double x, double y) {
TH1 *histo = plot->getTH1();
// Avoid LLVM analyzer warning
assert(nAxis == 1 || nAxis == 2);
TAxis *axis[2] = {nullptr, nullptr};
axis[0] = histo->GetXaxis();
if (nAxis == 2) {
axis[1] = histo->GetYaxis();
}
double value[2] = {0, 0};
value[0] = x;
value[1] = y;
for (int i = 0; i < nAxis; ++i) {
double min = axis[i]->GetXmin();
double max = axis[i]->GetXmax();
if (value[i] <= min)
value[i] = axis[i]->GetBinCenter(1);
if (value[i] >= max)
value[i] = axis[i]->GetBinCenter(axis[i]->GetNbins());
}
if (nAxis == 2)
plot->Fill(value[0], value[1]);
else
plot->Fill(value[0]);
}
int MuonPFAnalyzer::muonTrackType(const Muon *muon, bool usePF) {
switch (usePF ? muon->muonBestTrackType() : muon->tunePMuonBestTrackType()) {
case Muon::InnerTrack:
return 0;
case Muon::OuterTrack:
return 1;
case Muon::CombinedTrack:
return 2;
case Muon::TPFMS:
return 3;
case Muon::Picky:
return 4;
case Muon::DYT:
return 5;
case Muon::None:
return 6;
}
return 6;
}
void MuonPFAnalyzer::recoToGenMatch(Handle<MuonCollection> &muons, Handle<GenParticleCollection> &gens) {
theRecoGen.clear();
if (muons.isValid()) {
MuonCollection::const_iterator muonIt = muons->begin();
MuonCollection::const_iterator muonEnd = muons->end();
for (; muonIt != muonEnd; ++muonIt) {
float bestDR = 999.;
const GenParticle *bestGen = nullptr;
if (theRunOnMC && gens.isValid()) {
GenParticleCollection::const_iterator genIt = gens->begin();
GenParticleCollection::const_iterator genEnd = gens->end();
for (; genIt != genEnd; ++genIt) {
if (abs(genIt->pdgId()) == 13) {
float muonPhi = muonIt->phi();
float muonEta = muonIt->eta();
float genPhi = genIt->phi();
float genEta = genIt->eta();
float dR = deltaR(muonEta, muonPhi, genEta, genPhi);
if (dR < theRecoGenR && dR < bestDR) {
bestDR = dR;
bestGen = &(*genIt);
}
}
}
}
theRecoGen.push_back(RecoGenPair(&(*muonIt), bestGen));
}
}
}
const reco::Vertex MuonPFAnalyzer::getPrimaryVertex(Handle<VertexCollection> &vertex, Handle<BeamSpot> &beamSpot) {
Vertex::Point posVtx;
Vertex::Error errVtx;
bool hasPrimaryVertex = false;
if (vertex.isValid()) {
vector<Vertex>::const_iterator vertexIt = vertex->begin();
vector<Vertex>::const_iterator vertexEnd = vertex->end();
for (; vertexIt != vertexEnd; ++vertexIt) {
if (vertexIt->isValid() && !vertexIt->isFake()) {
posVtx = vertexIt->position();
errVtx = vertexIt->error();
hasPrimaryVertex = true;
break;
}
}
}
if (!hasPrimaryVertex) {
LogInfo("MuonPFAnalyzer") << "[MuonPFAnalyzer] PrimaryVertex not found, use BeamSpot position instead.\n";
posVtx = beamSpot->position();
errVtx(0, 0) = beamSpot->BeamWidthX();
errVtx(1, 1) = beamSpot->BeamWidthY();
errVtx(2, 2) = beamSpot->sigmaZ();
}
const Vertex primaryVertex(posVtx, errVtx);
return primaryVertex;
}
//define this as a plug-in
DEFINE_FWK_MODULE(MuonPFAnalyzer);
|