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
|
// -*- C++ -*-
//
// Package: DQMOffline/CalibCalo
// Class: DQMHcalIsoTrackAlCaReco
//
/**\class DQMHcalIsoTrackAlCaReco DQMHcalIsoTrackAlCaReco.cc
DQMOffline/CalibCalo/src/DQMHcalIsoTrackAlCaReco.cc
Description: <one line class summary>
Implementation:
<Notes on implementation>
*/
//
// Original Author: Grigory SAFRONOV
// Created: Tue Oct 14 16:10:31 CEST 2008
// Modified: Tue Mar 3 16:10:31 CEST 2015
//
//
// system include files
#include <cmath>
#include <fstream>
#include <vector>
// user include files
#include "DataFormats/HLTReco/interface/TriggerEvent.h"
#include "DataFormats/HcalIsolatedTrack/interface/HcalIsolatedTrackCandidate.h"
#include "DataFormats/HcalIsolatedTrack/interface/HcalIsolatedTrackCandidateFwd.h"
#include "DataFormats/Math/interface/deltaR.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
class DQMHcalIsoTrackAlCaReco : public DQMEDAnalyzer {
public:
explicit DQMHcalIsoTrackAlCaReco(const edm::ParameterSet &);
~DQMHcalIsoTrackAlCaReco() override;
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
void analyze(const edm::Event &, const edm::EventSetup &) override;
private:
std::string folderName_;
std::vector<std::string> l1FilterTag_, hltFilterTag_;
std::vector<int> type_;
edm::InputTag labelTrigger_, labelTrack_;
edm::EDGetTokenT<trigger::TriggerEvent> tokTrigger_;
edm::EDGetTokenT<reco::HcalIsolatedTrackCandidateCollection> tokTrack_;
double pThr_;
std::vector<MonitorElement *> hL1Pt_, hL1Eta_, hL1phi_;
std::vector<MonitorElement *> hHltP_, hHltEta_, hHltPhi_;
MonitorElement *hL3Dr_, *hL3Rat_;
std::vector<MonitorElement *> hOffP_;
MonitorElement *hMaxP_, *hEnEcal_, *hIeta_, *hIphi_;
int nTotal_, nHLTaccepts_;
std::vector<double> etaRange_;
std::vector<unsigned int> indexH_;
std::vector<bool> ifL3_;
};
DQMHcalIsoTrackAlCaReco::DQMHcalIsoTrackAlCaReco(const edm::ParameterSet &iConfig) {
folderName_ = iConfig.getParameter<std::string>("FolderName");
l1FilterTag_ = iConfig.getParameter<std::vector<std::string>>("L1FilterLabel");
hltFilterTag_ = iConfig.getParameter<std::vector<std::string>>("HltFilterLabels");
type_ = iConfig.getParameter<std::vector<int>>("TypeFilter");
labelTrigger_ = iConfig.getParameter<edm::InputTag>("TriggerLabel");
labelTrack_ = iConfig.getParameter<edm::InputTag>("TracksLabel");
pThr_ = iConfig.getUntrackedParameter<double>("pThrL3", 0);
nTotal_ = nHLTaccepts_ = 0;
tokTrigger_ = consumes<trigger::TriggerEvent>(labelTrigger_);
tokTrack_ = consumes<reco::HcalIsolatedTrackCandidateCollection>(labelTrack_);
LogDebug("HcalIsoTrack") << "Folder " << folderName_ << " Input Tag for Trigger " << labelTrigger_ << " track "
<< labelTrack_ << " threshold " << pThr_ << " with " << l1FilterTag_.size()
<< " level 1 and " << hltFilterTag_.size() << " hlt filter tags"
<< "\n";
for (unsigned int k = 0; k < l1FilterTag_.size(); ++k)
LogDebug("HcalIsoTrack") << "L1FilterTag[" << k << "] " << l1FilterTag_[k] << "\n";
for (unsigned int k = 0; k < hltFilterTag_.size(); ++k)
LogDebug("HcalIsoTrack") << "HLTFilterTag[" << k << "] " << hltFilterTag_[k] << "\n";
}
DQMHcalIsoTrackAlCaReco::~DQMHcalIsoTrackAlCaReco() {}
void DQMHcalIsoTrackAlCaReco::analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) {
nTotal_++;
bool accept(false);
edm::Handle<trigger::TriggerEvent> trEv;
iEvent.getByToken(tokTrigger_, trEv);
edm::Handle<reco::HcalIsolatedTrackCandidateCollection> recoIsoTracks;
iEvent.getByToken(tokTrack_, recoIsoTracks);
LogDebug("HcalIsoTrack") << "Gets Trigger information with " << trEv.isValid() << " and offline tracks with "
<< recoIsoTracks.isValid() << "\n";
if (trEv.isValid()) {
const trigger::TriggerObjectCollection &TOCol(trEv->getObjects());
const trigger::size_type nFilt(trEv->sizeFilters());
// plots for L1 trigger
for (unsigned int k = 0; k < l1FilterTag_.size(); ++k) {
trigger::Keys KEYSl1;
double etaTrigl1(-10000), phiTrigl1(-10000), ptMaxl1(0);
for (trigger::size_type iFilt = 0; iFilt != nFilt; iFilt++) {
LogDebug("HcalIsoTrack") << trEv->filterTag(iFilt).label() << " find for " << l1FilterTag_[k] << " gives "
<< (trEv->filterTag(iFilt).label()).find(l1FilterTag_[k]) << "\n";
if ((trEv->filterTag(iFilt).label()).find(l1FilterTag_[k]) != std::string::npos) {
KEYSl1 = trEv->filterKeys(iFilt);
trigger::size_type nRegl1 = KEYSl1.size();
LogDebug("HcalIsoTrack") << "# of objects " << nRegl1 << "\n";
for (trigger::size_type iReg = 0; iReg < nRegl1; iReg++) {
const trigger::TriggerObject &TObj(TOCol[KEYSl1[iReg]]);
LogDebug("HcalIsoTrack") << "Object[" << iReg << "] with pt " << TObj.pt() << " " << TObj.eta() << " "
<< TObj.phi() << "\n";
if (TObj.pt() > ptMaxl1) {
etaTrigl1 = TObj.eta();
phiTrigl1 = TObj.phi();
ptMaxl1 = TObj.pt();
}
}
}
}
LogDebug("HcalIsoTrack") << "For L1 trigger type " << k << " pt " << ptMaxl1 << " eta " << etaTrigl1 << " phi "
<< phiTrigl1 << "\n";
if (ptMaxl1 > 0) {
hL1Pt_[k]->Fill(ptMaxl1);
hL1Eta_[k]->Fill(etaTrigl1);
hL1phi_[k]->Fill(phiTrigl1);
}
}
// Now make plots for hlt objects
trigger::Keys KEYS;
for (unsigned l = 0; l < hltFilterTag_.size(); l++) {
for (trigger::size_type iFilt = 0; iFilt != nFilt; iFilt++) {
LogDebug("HcalIsoTrack") << trEv->filterTag(iFilt).label() << " find for " << hltFilterTag_[l] << " gives "
<< (trEv->filterTag(iFilt).label()).find(hltFilterTag_[l]) << "\n";
if ((trEv->filterTag(iFilt).label()).find(hltFilterTag_[l]) != std::string::npos) {
KEYS = trEv->filterKeys(iFilt);
trigger::size_type nReg = KEYS.size();
LogDebug("HcalIsoTrack") << "# of objects for HLT " << nReg << "\n";
// checks with IsoTrack trigger results
for (trigger::size_type iReg = 0; iReg < nReg; iReg++) {
const trigger::TriggerObject &TObj(TOCol[KEYS[iReg]]);
LogDebug("HcalIsoTrack") << "HLT Filter Tag " << l << " trigger " << iFilt << " object " << iReg << " p "
<< TObj.p() << " pointer " << indexH_[l] << ":" << hHltP_[indexH_[l]] << ":"
<< hHltEta_[indexH_[l]] << ":" << hHltPhi_[indexH_[l]] << "\n";
if (TObj.p() > pThr_) {
hHltP_[indexH_[l]]->Fill(TObj.p());
hHltEta_[indexH_[l]]->Fill(TObj.eta());
hHltPhi_[indexH_[l]]->Fill(TObj.phi());
if (ifL3_[l])
accept = true;
if (recoIsoTracks.isValid() && ifL3_[l]) {
double minRecoL3dist(1000), pt(1000);
reco::HcalIsolatedTrackCandidateCollection::const_iterator mrtr;
for (mrtr = recoIsoTracks->begin(); mrtr != recoIsoTracks->end(); mrtr++) {
double R = deltaR(mrtr->eta(), mrtr->phi(), TObj.eta(), TObj.phi());
if (R < minRecoL3dist) {
minRecoL3dist = R;
pt = mrtr->pt();
}
}
LogDebug("HcalIsoTrack") << "Minimum R " << minRecoL3dist << " pt " << pt << ":" << TObj.pt() << "\n";
hL3Dr_->Fill(minRecoL3dist);
if (minRecoL3dist < 0.02)
hL3Rat_->Fill(TObj.pt() / pt);
}
}
}
}
}
}
}
// general distributions
if (recoIsoTracks.isValid()) {
for (reco::HcalIsolatedTrackCandidateCollection::const_iterator itr = recoIsoTracks->begin();
itr != recoIsoTracks->end();
itr++) {
hMaxP_->Fill(itr->maxP());
hEnEcal_->Fill(itr->energyEcal());
std::pair<int, int> etaphi = itr->towerIndex();
hIeta_->Fill(etaphi.first);
hIphi_->Fill(etaphi.second);
LogDebug("HcalIsoTrack") << "Reco track p " << itr->p() << " eta|phi " << etaphi.first << "|" << etaphi.second
<< " maxP " << itr->maxP() << " EcalE " << itr->energyEcal() << " pointers " << hHltP_[3]
<< ":" << hHltEta_[3] << ":" << hHltPhi_[3] << "\n";
if (itr->p() >= pThr_) {
hHltP_[3]->Fill(itr->p());
hHltEta_[3]->Fill(itr->eta());
hHltPhi_[3]->Fill(itr->phi());
}
double etaAbs = std::abs(itr->eta());
hOffP_[0]->Fill(itr->p());
for (unsigned int l = 1; l < etaRange_.size(); l++) {
if (etaAbs >= etaRange_[l - 1] && etaAbs < etaRange_[l]) {
LogDebug("HcalIsoTrack") << "Range " << l << " p " << itr->p() << " pointer " << hOffP_[l];
hOffP_[l]->Fill(itr->p());
break;
}
}
}
}
if (accept)
nHLTaccepts_++;
LogDebug("HcalIsoTrack") << "Accept " << accept << "\n";
}
void DQMHcalIsoTrackAlCaReco::bookHistograms(DQMStore::IBooker &iBooker, edm::Run const &, edm::EventSetup const &) {
iBooker.setCurrentFolder(folderName_);
LogDebug("HcalIsoTrack") << "Set the folder to " << folderName_ << "\n";
char name[100], title[200];
for (unsigned int k = 0; k < l1FilterTag_.size(); ++k) {
sprintf(name, "hp%s", l1FilterTag_[k].c_str());
sprintf(title, "p_T of L1 object for %s", l1FilterTag_[k].c_str());
hL1Pt_.push_back(iBooker.book1D(name, title, 1000, 0, 1000));
hL1Pt_[k]->setAxisTitle("p_T (GeV)", 1);
sprintf(name, "heta%s", l1FilterTag_[k].c_str());
sprintf(title, "#eta of L1 object for %s", l1FilterTag_[k].c_str());
hL1Eta_.push_back(iBooker.book1D(name, title, 100, -2.5, 2.5));
hL1Eta_[k]->setAxisTitle("#eta", 1);
sprintf(name, "hphi%s", l1FilterTag_[k].c_str());
sprintf(title, "#phi of L1 object for %s", l1FilterTag_[k].c_str());
hL1phi_.push_back(iBooker.book1D(name, title, 100, -3.2, 3.2));
hL1phi_[k]->setAxisTitle("#phi", 1);
}
std::string types[4] = {"L2", "L2x", "L3", "Off"};
for (unsigned int l = 0; l < 4; l++) {
sprintf(name, "hp%s", types[l].c_str());
sprintf(title, "Momentum of %s object", types[l].c_str());
hHltP_.push_back(iBooker.book1D(name, title, 200, 0, 1000));
hHltP_[l]->setAxisTitle("p (GeV)", 1);
sprintf(name, "heta%s", types[l].c_str());
sprintf(title, "#eta of %s object", types[l].c_str());
hHltEta_.push_back(iBooker.book1D(name, title, 16, -2, 2));
hHltEta_[l]->setAxisTitle("#eta", 1);
sprintf(name, "hphi%s", types[l].c_str());
sprintf(title, "#phi of %s object", types[l].c_str());
hHltPhi_.push_back(iBooker.book1D(name, title, 16, -3.2, 3.2));
hHltPhi_[l]->setAxisTitle("#phi", 1);
}
sprintf(title, "Distance of offline track from L3 object");
hL3Dr_ = (iBooker.book1D("hDRL3", title, 40, 0, 0.2));
hL3Dr_->setAxisTitle("R(#eta,#phi)", 1);
sprintf(title, "Ratio of p L3/Offline");
hL3Rat_ = (iBooker.book1D("hRatL3", title, 500, 0, 3));
indexH_.clear();
ifL3_.clear();
for (unsigned int l = 0; l < hltFilterTag_.size(); l++) {
unsigned int indx = (type_[l] >= 0 && type_[l] < 3) ? type_[l] : 0;
indexH_.push_back(indx);
ifL3_.push_back(indx == 2);
LogDebug("HcalIsoTrack") << "Filter[" << l << "] " << hltFilterTag_[l] << " type " << type_[l] << " index "
<< indexH_[l] << " L3? " << ifL3_[l] << "\n";
}
double etaV[6] = {0.0, 0.5, 1.0, 1.5, 2.0, 2.5};
for (unsigned int k = 0; k < 6; ++k) {
sprintf(name, "hOffP%d", k);
if (k == 0) {
sprintf(title, "p of AlCaReco object (All)");
} else {
sprintf(title, "p of AlCaReco object (%3.1f < |#eta| < %3.1f)", etaV[k - 1], etaV[k]);
}
etaRange_.push_back(etaV[k]);
hOffP_.push_back(iBooker.book1D(name, title, 1000, 0, 1000));
hOffP_[k]->setAxisTitle("E (GeV)", 1);
}
hMaxP_ = iBooker.book1D("hChgIsol", "Energy for charge isolation", 110, -10, 100);
hMaxP_->setAxisTitle("p (GeV)", 1);
hEnEcal_ = iBooker.book1D("hEnEcal", "Energy in ECAL", 100, 0, 20);
hEnEcal_->setAxisTitle("E (GeV)", 1);
hIeta_ = iBooker.book1D("hIEta", "i#eta for HCAL tower", 90, -45, 45);
hIeta_->setAxisTitle("i#eta", 1);
hIphi_ = iBooker.book1D("hIPhi", "i#phi for HCAL tower", 72, 0, 72);
hIphi_->setAxisTitle("i#phi", 1);
}
DEFINE_FWK_MODULE(DQMHcalIsoTrackAlCaReco);
|