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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
|
#include "DQMOffline/Trigger/interface/HLTTauDQMPath.h"
#include "DQMOffline/Trigger/interface/HLTTauDQMPlotter.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "HLTrigger/HLTcore/interface/HLTConfigProvider.h"
#include "DataFormats/Common/interface/TriggerResults.h"
#include "DataFormats/HLTReco/interface/TriggerEvent.h"
#include "DataFormats/Math/interface/deltaR.h"
#include "FWCore/Common/interface/TriggerNames.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Framework/interface/TriggerNamesService.h"
#include <cstdio>
#include <sstream>
#include <algorithm>
#include <utility>
namespace {
// Used as a helper only in this file
class HLTPath {
public:
HLTPath(std::string name) : name_(std::move(name)) {}
using FilterIndex = HLTTauDQMPath::FilterIndex;
typedef std::tuple<typename std::tuple_element<0, FilterIndex>::type,
typename std::tuple_element<1, FilterIndex>::type,
typename std::tuple_element<2, FilterIndex>::type,
bool>
FilterIndexSave;
constexpr static size_t kName = HLTTauDQMPath::kName;
constexpr static size_t kType = HLTTauDQMPath::kType;
constexpr static size_t kModuleIndex = HLTTauDQMPath::kModuleIndex;
constexpr static size_t kSaveTags = 3;
std::vector<FilterIndex> interestingFilters(const HLTConfigProvider& HLTCP, bool doRefAnalysis) {
const std::vector<std::string>& moduleLabels = HLTCP.moduleLabels(name_);
std::vector<std::string> leptonTauFilters;
allInterestingFilters_.clear();
// Ignore all "Selector"s, for ref-analysis keep only those with saveTags=True
// Also record HLT2(Electron|Muon)(PF)?Tau module names
LogTrace("HLTTauDQMOffline") << "Path " << name_
<< ", list of all filters (preceded by the module index in the path)";
for (auto iLabel = moduleLabels.begin(); iLabel != moduleLabels.end(); ++iLabel) {
if (HLTCP.moduleEDMType(*iLabel) != "EDFilter")
continue;
const std::string& type = HLTCP.moduleType(*iLabel);
LogTrace("HLTTauDQMOffline") << " " << std::distance(moduleLabels.begin(), iLabel) << " " << *iLabel << " "
<< type << " saveTags " << HLTCP.saveTags(*iLabel);
if (type.find("Selector") != std::string::npos)
continue;
if (type == "HLTTriggerTypeFilter" || type == "HLTBool")
continue;
if (iLabel->find('-') == 0) // ignore
continue;
if (type == "L2TauTagFilter") // gives L1taus as output
continue;
if (type == "HLT2PhotonPFTau" || type == "HLT2ElectronPFTau" || type == "HLT2MuonPFTau" ||
type == "HLT2PhotonTau" || type == "HLT2ElectronTau" || type == "HLT2MuonTau")
leptonTauFilters.emplace_back(*iLabel);
// else if(type.find("Electron") != std::string::npos || type.find("Egamma") != std::string::npos || type.find("Muon") != std::string::npos)
// continue;
allInterestingFilters_.emplace_back(*iLabel, type, iLabel - moduleLabels.begin(), HLTCP.saveTags(*iLabel));
}
// Insert the last filters of lepton legs
for (const std::string& leptonTauLabel : leptonTauFilters) {
const edm::ParameterSet& pset = HLTCP.modulePSet(leptonTauLabel);
std::string input1 = pset.getParameter<edm::InputTag>("inputTag1").label();
std::string input2 = pset.getParameter<edm::InputTag>("inputTag2").label();
unsigned idx1 = HLTCP.moduleIndex(name_, input1);
unsigned idx2 = HLTCP.moduleIndex(name_, input2);
std::string type = "dummy"; //HLTCP.moduleType(name_);
auto func = [&](const FilterIndexSave& a, unsigned idxb) { return std::get<kModuleIndex>(a) < idxb; };
auto found = std::lower_bound(allInterestingFilters_.begin(), allInterestingFilters_.end(), idx1, func);
if (found == allInterestingFilters_.end() || std::get<kModuleIndex>(*found) != idx1)
allInterestingFilters_.emplace(found, input1, type, idx1, HLTCP.saveTags(input1));
found = std::lower_bound(allInterestingFilters_.begin(), allInterestingFilters_.end(), idx2, func);
if (found == allInterestingFilters_.end() || std::get<kModuleIndex>(*found) != idx2)
allInterestingFilters_.emplace(found, input2, type, idx2, HLTCP.saveTags(input1));
}
std::vector<FilterIndex> selectedFilters;
// For reference-matched case exclude filters with saveTags=False.
// However, they are needed a bit later to find the position of the
// first L3 tau filter.
for (const auto& item : allInterestingFilters_) {
if (!doRefAnalysis || (doRefAnalysis && std::get<kSaveTags>(item))) {
selectedFilters.emplace_back(std::get<kName>(item), std::get<kType>(item), std::get<kModuleIndex>(item));
}
}
return selectedFilters;
}
bool isL3TauProducer(const HLTConfigProvider& HLTCP, const std::string& producerLabel) const {
const std::string& type = HLTCP.moduleType(producerLabel);
if (type == "PFRecoTauProducer" || type == "RecoTauPiZeroUnembedder" ||
type == "BTagProbabilityToDiscriminator") {
LogDebug("HLTTauDQMOffline") << "Found tau producer " << type << " with label " << producerLabel
<< " from path " << name_;
return true;
}
return false;
}
bool isL3ElectronProducer(const HLTConfigProvider& HLTCP, const std::string& producerLabel) const {
const std::string& type = HLTCP.moduleType(producerLabel);
if (type == "EgammaHLTPixelMatchElectronProducers") {
LogDebug("HLTTauDQMOffline") << "Found electron producer " << type << " with label " << producerLabel
<< " from path " << name_;
return true;
}
return false;
}
bool isL3MuonProducer(const HLTConfigProvider& HLTCP, const std::string& producerLabel) const {
const std::string& type = HLTCP.moduleType(producerLabel);
if (type == "L3MuonCandidateProducer" || type == "L3MuonCombinedRelativeIsolationProducer") {
LogDebug("HLTTauDQMOffline") << "Found muon producer " << type << " with label " << producerLabel
<< " from path " << name_;
return true;
}
return false;
}
bool isL3TauFilter(const HLTConfigProvider& HLTCP, const std::string& filterLabel) const {
const edm::ParameterSet& pset = HLTCP.modulePSet(filterLabel);
if (pset.exists("inputTag"))
return isL3TauProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag").label());
if (pset.exists("inputTag1"))
return isL3TauProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag1").label());
if (pset.exists("inputTag2"))
return isL3TauProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag2").label());
if (pset.exists("taus"))
return isL3TauProducer(HLTCP, pset.getParameter<edm::InputTag>("taus").label());
return false;
}
bool isL3ElectronFilter(const HLTConfigProvider& HLTCP, const std::string& filterLabel) const {
const edm::ParameterSet& pset = HLTCP.modulePSet(filterLabel);
if (pset.exists("inputTag"))
return isL3ElectronProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag").label());
if (pset.exists("inputTag1"))
return isL3ElectronProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag1").label());
if (pset.exists("inputTag2"))
return isL3ElectronProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag2").label());
return false;
}
bool isL3MuonFilter(const HLTConfigProvider& HLTCP, const std::string& filterLabel) const {
const edm::ParameterSet& pset = HLTCP.modulePSet(filterLabel);
if (pset.exists("inputTag"))
return isL3MuonProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag").label());
if (pset.exists("inputTag1"))
return isL3MuonProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag1").label());
if (pset.exists("inputTag2"))
return isL3MuonProducer(HLTCP, pset.getParameter<edm::InputTag>("inputTag2").label());
return false;
}
size_t firstL3TauFilterIndex(const HLTConfigProvider& HLTCP) const {
// Loop over filters and check if a filter uses L3 tau producer
// output.
for (const auto& filter : allInterestingFilters_) {
if (isL3TauFilter(HLTCP, std::get<kName>(filter)))
return std::get<kModuleIndex>(filter);
}
return HLTTauDQMPath::kInvalidIndex;
}
size_t firstL3ElectronFilterIndex(const HLTConfigProvider& HLTCP) const {
// Loop over filters and check if a filter uses L3 tau producer
// output.
for (const auto& filter : allInterestingFilters_) {
if (isL3ElectronFilter(HLTCP, std::get<kName>(filter)))
return std::get<kModuleIndex>(filter);
}
return HLTTauDQMPath::kInvalidIndex;
}
size_t firstL3MuonFilterIndex(const HLTConfigProvider& HLTCP) const {
// Loop over filters and check if a filter uses L3 tau producer
// output.
for (const auto& filter : allInterestingFilters_) {
if (isL3MuonFilter(HLTCP, std::get<kName>(filter)))
return std::get<kModuleIndex>(filter);
}
return HLTTauDQMPath::kInvalidIndex;
}
const std::string& name() const { return name_; }
private:
std::string name_;
std::vector<FilterIndexSave> allInterestingFilters_;
};
int getParameterSafe(const HLTConfigProvider& HLTCP,
const std::string& filterName,
const std::string& parameterName) {
const edm::ParameterSet& pset = HLTCP.modulePSet(filterName);
if (pset.existsAs<int>(parameterName))
return pset.getParameter<int>(parameterName);
else {
edm::LogWarning("HLTTauDQMOfflineSource") << "No parameter '" << parameterName << "' in configuration of filter "
<< filterName << " pset " << pset.dump() << std::endl;
return 0;
}
}
struct TauLeptonMultiplicity {
TauLeptonMultiplicity() : tau(0), electron(0), muon(0), met(0), level(0) {}
int tau;
int electron;
int muon;
int met;
int level;
};
TauLeptonMultiplicity inferTauLeptonMultiplicity(const HLTConfigProvider& HLTCP,
const std::string& filterName,
const std::string& moduleType,
const std::string& pathName) {
TauLeptonMultiplicity n;
//std::cout << "check menu " << HLTCP.tableName() << std::endl;
if (moduleType == "HLTL1TSeed") {
n.level = 1;
if (filterName.find("Single") != std::string::npos) {
if (filterName.find("Mu") != std::string::npos) {
n.muon = 1;
} else if (filterName.find("EG") != std::string::npos) {
n.electron = 1;
}
} else if (filterName.find("Double") != std::string::npos && filterName.find("Tau") != std::string::npos) {
n.tau = 2;
}
// else if(filterName.find("Mu") != std::string::npos && filterName.find("Tau") != std::string::npos) {
if (filterName.find("Mu") != std::string::npos) {
n.muon = 1;
//n.tau = 1;
}
if (filterName.find("EG") != std::string::npos && filterName.find("Tau") != std::string::npos) {
n.electron = 1;
//n.tau = 1;
}
if (filterName.find("ETM") != std::string::npos) {
n.met = 1;
}
} else if (moduleType == "HLT1CaloMET") {
n.level = 2;
if (getParameterSafe(HLTCP, filterName, "triggerType") == trigger::TriggerMET) {
n.met = 1;
}
} else if (moduleType == "HLT1CaloJet") {
n.level = 2;
if (getParameterSafe(HLTCP, filterName, "triggerType") == trigger::TriggerTau) {
n.tau = getParameterSafe(HLTCP, filterName, "MinN");
}
} else if (moduleType == "TauTagFilter") {
n.level = 3;
n.tau = getParameterSafe(HLTCP, filterName, "nExpected");
} else if (moduleType == "HLT1PFJet") {
n.level = 3;
//const edm::ParameterSet& pset = HLTCP.modulePSet(filterName);
//pset.getParameter<int>("triggerType") == trigger::TriggerTau) {
if (getParameterSafe(HLTCP, filterName, "triggerType") == trigger::TriggerTau) {
//n.tau = pset.getParameter<int>("MinN");
n.tau = getParameterSafe(HLTCP, filterName, "MinN");
}
} else if (moduleType == "HLTCaloJetTag") {
n.level = 2;
//const edm::ParameterSet& pset = HLTCP.modulePSet(filterName);
//if(pset.getParameter<int>("triggerType") == trigger::TriggerTau) {
if (getParameterSafe(HLTCP, filterName, "TriggerType") == trigger::TriggerTau) {
//n.tau = pset.getParameter<int>("MinJets");
n.tau = getParameterSafe(HLTCP, filterName, "MinJets");
}
} else if (moduleType == "HLT1Tau" || moduleType == "HLT1PFTau") {
n.level = 3;
//n.tau = HLTCP.modulePSet(filterName).getParameter<int>("MinN");
n.tau = getParameterSafe(HLTCP, filterName, "MinN");
} else if (moduleType == "HLTPFTauPairDzMatchFilter") {
n.level = 3;
n.tau = 2;
} else if (moduleType == "HLTEgammaGenericFilter") {
n.level = 3;
n.electron = getParameterSafe(HLTCP, filterName, "ncandcut");
} else if (moduleType == "HLTElectronGenericFilter") {
n.level = 3;
//n.electron = HLTCP.modulePSet(filterName).getParameter<int>("ncandcut");
n.electron = getParameterSafe(HLTCP, filterName, "ncandcut");
} else if (moduleType == "HLTMuonL2PreFilter") {
n.level = 2;
//n.muon = HLTCP.modulePSet(filterName).getParameter<int>("MinN");
n.muon = getParameterSafe(HLTCP, filterName, "MinN");
} else if (moduleType == "HLTMuonIsoFilter" || moduleType == "HLTMuonL3PreFilter") {
n.level = 3;
n.muon = getParameterSafe(HLTCP, filterName, "MinN");
} else if (moduleType == "HLTMuonGenericFilter") {
n.level = 3;
n.muon = 1;
} else if (moduleType == "HLT2ElectronTau" || moduleType == "HLT2ElectronPFTau" || moduleType == "HLT2PhotonTau" ||
moduleType == "HLT2PhotonPFTau") {
n.level = 3;
//int num = HLTCP.modulePSet(filterName).getParameter<int>("MinN");
int num = getParameterSafe(HLTCP, filterName, "MinN");
n.tau = num;
n.electron = num;
} else if (moduleType == "HLT2MuonTau" || moduleType == "HLT2MuonPFTau") {
n.level = 3;
//int num = HLTCP.modulePSet(filterName).getParameter<int>("MinN");
int num = getParameterSafe(HLTCP, filterName, "MinN");
n.tau = num;
n.muon = num;
} else if (moduleType == "HLTPrescaler") { // || moduleType == "HLT1CaloMET") {
// ignore
} else {
edm::LogInfo("HLTTauDQMOfflineSource")
<< "HLTTauDQMPath.cc, inferTauLeptonMultiplicity(): module type '" << moduleType
<< "' not recognized, filter '" << filterName << "' in path '" << pathName
<< "' will be ignored for offline matching." << std::endl;
}
return n;
}
template <typename T1, typename T2>
bool deltaRmatch(const T1& obj,
const std::vector<T2>& refColl,
double dR,
std::vector<bool>& refMask,
std::vector<T2>& matchedRefs) {
double minDr = 2 * dR;
size_t found = refColl.size();
//std::cout << "Matching with DR " << dR << ", obj eta " << obj.eta() << " phi " << obj.phi() << std::endl;
for (size_t i = 0; i < refColl.size(); ++i) {
if (!refMask[i])
continue;
double dr = reco::deltaR(obj, refColl[i]);
//std::cout << " " << i << " ref eta " << refColl[i].eta() << " phi " << refColl[i].phi() << " dr " << dr << std::endl;
if (dr < minDr) {
minDr = dr;
found = i;
}
}
if (found < refColl.size()) {
matchedRefs.emplace_back(refColl[found]);
refMask[found] = false;
return true;
}
return false;
}
} // namespace
HLTTauDQMPath::HLTTauDQMPath(std::string pathName,
std::string hltProcess,
bool doRefAnalysis,
const HLTConfigProvider& HLTCP)
: hltProcess_(std::move(hltProcess)),
doRefAnalysis_(doRefAnalysis),
pathName_(std::move(pathName)),
pathIndex_(HLTCP.triggerIndex(pathName_)),
lastFilterBeforeL2TauIndex_(0),
lastL2TauFilterIndex_(0),
lastFilterBeforeL3TauIndex_(0),
lastL3TauFilterIndex_(0),
lastFilterBeforeL2ElectronIndex_(0),
lastL2ElectronFilterIndex_(0),
lastFilterBeforeL2MuonIndex_(0),
lastL2MuonFilterIndex_(0),
lastFilterBeforeL2METIndex_(0),
lastL2METFilterIndex_(0),
firstFilterBeforeL2METIndex_(0),
firstL2METFilterIndex_(0),
isFirstL1Seed_(false),
isValid_(false) {
#ifdef EDM_ML_DEBUG
std::stringstream ss;
ss << "HLTTauDQMPath: " << pathName_ << "\n";
#endif
// Get the filters
HLTPath thePath(pathName_);
filterIndices_ = thePath.interestingFilters(HLTCP, doRefAnalysis_);
if (filterIndices_.empty()) {
edm::LogInfo("HLTTauDQMOffline") << "HLTTauDQMPath: " << pathName_ << " no interesting filters found";
return;
}
isFirstL1Seed_ = HLTCP.moduleType(std::get<kName>(filterIndices_[0])) == "HLTL1TSeed";
#ifdef EDM_ML_DEBUG
ss << " Interesting filters (preceded by the module index in the path)";
#endif
// Set the filter multiplicity counts
filterTauN_.clear();
filterElectronN_.clear();
filterMuonN_.clear();
filterMET_.clear();
filterTauN_.reserve(filterIndices_.size());
filterElectronN_.reserve(filterIndices_.size());
filterMuonN_.reserve(filterIndices_.size());
filterMET_.reserve(filterIndices_.size());
filterLevel_.reserve(filterIndices_.size());
#ifdef EDM_ML_DEBUG
size_t i(0);
#endif
for (auto& filterIndice : filterIndices_) {
const std::string& filterName = std::get<kName>(filterIndice);
const std::string& moduleType = HLTCP.moduleType(filterName);
TauLeptonMultiplicity n = inferTauLeptonMultiplicity(HLTCP, filterName, moduleType, pathName_);
if (n.level > 0) {
filterTauN_.push_back(n.tau);
filterElectronN_.push_back(n.electron);
filterMuonN_.push_back(n.muon);
filterMET_.push_back(n.met);
filterLevel_.push_back(n.level);
}
#ifdef EDM_ML_DEBUG
ss << "\n " << i << " " << std::get<kModuleIndex>(filterIndice) << " " << filterName << " " << moduleType
<< " ntau " << n.tau << " nele " << n.electron << " nmu " << n.muon;
i++;
#endif
}
#ifdef EDM_ML_DEBUG
LogDebug("HLTTauDQMOffline") << ss.str();
#endif
// Find the position of tau producer, use filters with taus before
// it for L2 tau efficiency, and filters with taus after it for L3
// tau efficiency. Here we have to take into account that for
// reference-matched case filterIndices_ contains only those filters
// that have saveTags=True, while for searching the first L3 tau
// filter we have to consider all filters
const size_t firstL3TauFilterIndex = thePath.firstL3TauFilterIndex(HLTCP);
if (firstL3TauFilterIndex == kInvalidIndex) {
edm::LogInfo("HLTTauDQMOffline") << "Did not find a filter with L3 tau producer as input in path " << pathName_;
}
const size_t firstL3ElectronFilterIndex = thePath.firstL3ElectronFilterIndex(HLTCP);
if (firstL3ElectronFilterIndex == kInvalidIndex) {
edm::LogInfo("HLTTauDQMOffline") << "Did not find a filter with L3 electron producer as input in path "
<< pathName_;
}
const size_t firstL3MuonFilterIndex = thePath.firstL3MuonFilterIndex(HLTCP);
if (firstL3MuonFilterIndex == kInvalidIndex) {
edm::LogInfo("HLTTauDQMOffline") << "Did not find a filter with L3 muon producer as input in path " << pathName_;
}
lastFilterBeforeL2TauIndex_ = 0;
lastL2TauFilterIndex_ = kInvalidIndex;
lastFilterBeforeL3TauIndex_ = 0;
lastL3TauFilterIndex_ = kInvalidIndex;
lastFilterBeforeL2ElectronIndex_ = 0;
lastL2ElectronFilterIndex_ = kInvalidIndex;
lastFilterBeforeL3ElectronIndex_ = 0;
lastL3ElectronFilterIndex_ = kInvalidIndex;
lastFilterBeforeL2MuonIndex_ = 0;
lastL2MuonFilterIndex_ = kInvalidIndex;
lastFilterBeforeL3MuonIndex_ = 0;
lastL3MuonFilterIndex_ = kInvalidIndex;
lastFilterBeforeL2METIndex_ = 0;
lastL2METFilterIndex_ = kInvalidIndex;
firstFilterBeforeL2METIndex_ = 0;
firstL2METFilterIndex_ = kInvalidIndex;
/*
size_t i = 0;
for(; i<filtersSize() && getFilterIndex(i) < firstL3TauFilterIndex; ++i) {
if(lastL2TauFilterIndex_ == kInvalidIndex && getFilterNTaus(i) == 0)
lastFilterBeforeL2TauIndex_ = i;
if(getFilterNTaus(i) > 0 && getFilterNElectrons(i) == 0 && getFilterNMuons(i) == 0)
lastL2TauFilterIndex_ = i;
}
lastFilterBeforeL3TauIndex_ = i-1;
for(; i<filtersSize(); ++i) {
if(lastL3TauFilterIndex_ == kInvalidIndex && getFilterNTaus(i) == 0)
lastFilterBeforeL3TauIndex_ = i;
if(getFilterNTaus(i) > 0 && getFilterNElectrons(i) == 0 && getFilterNMuons(i) == 0)
lastL3TauFilterIndex_ = i;
}
*/
for (size_t i = 0; i < filtersSize(); ++i) {
// Tau
if (getFilterLevel(i) == 2 && getFilterNTaus(i) > 0 && getFilterNElectrons(i) == 0 && getFilterNMuons(i) == 0)
lastL2TauFilterIndex_ = i;
if (lastL2TauFilterIndex_ == kInvalidIndex)
lastFilterBeforeL2TauIndex_ = i;
// if(lastFilterBeforeL3TauIndex_ < 2 && lastL3TauFilterIndex_ == kInvalidIndex && getFilterNTaus(i) == 0)
// lastFilterBeforeL3TauIndex_ = i;
if (getFilterLevel(i) == 3 && getFilterNTaus(i) > 0 && getFilterNElectrons(i) == 0 && getFilterNMuons(i) == 0)
lastL3TauFilterIndex_ = i;
if (lastL3TauFilterIndex_ == kInvalidIndex)
lastFilterBeforeL3TauIndex_ = i;
// Electron
if (lastL2ElectronFilterIndex_ == kInvalidIndex && getFilterNElectrons(i) == 0)
lastFilterBeforeL2ElectronIndex_ = i;
if (getFilterLevel(i) == 2 && getFilterNElectrons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNMuons(i) == 0)
lastL2ElectronFilterIndex_ = i;
if (getFilterLevel(i) == 3 && getFilterNElectrons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNMuons(i) == 0)
lastL3ElectronFilterIndex_ = i;
if (lastL3ElectronFilterIndex_ == kInvalidIndex)
lastFilterBeforeL3ElectronIndex_ = i;
/*
if(lastL2ElectronFilterIndex_ == kInvalidIndex && getFilterNElectrons(i) == 0)
lastFilterBeforeL2ElectronIndex_ = i;
if(getFilterNElectrons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNMuons(i) == 0)
lastL2ElectronFilterIndex_ = i;
if(lastFilterBeforeL3ElectronIndex_ == 0 && lastL3ElectronFilterIndex_ == kInvalidIndex && getFilterNElectrons(i) == 0)
lastFilterBeforeL3ElectronIndex_ = i;
if(getFilterNElectrons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNMuons(i) == 0)
lastL3ElectronFilterIndex_ = i;
*/
// Muon
if (lastL2MuonFilterIndex_ == kInvalidIndex && getFilterNMuons(i) == 0)
lastFilterBeforeL2MuonIndex_ = i;
if (getFilterLevel(i) == 2 && getFilterNMuons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNElectrons(i) == 0)
lastL2MuonFilterIndex_ = i;
if (getFilterLevel(i) == 3 && getFilterNMuons(i) > 0 && getFilterNTaus(i) == 0 && getFilterNElectrons(i) == 0)
lastL3MuonFilterIndex_ = i;
if (lastL3MuonFilterIndex_ == kInvalidIndex)
lastFilterBeforeL3MuonIndex_ = i;
// MET
if (lastL2METFilterIndex_ == kInvalidIndex && getFilterMET(i) == 0)
lastFilterBeforeL2METIndex_ = i;
if (getFilterMET(i) > 0 && getFilterNElectrons(i) == 0 && getFilterNMuons(i) == 0)
lastL2METFilterIndex_ = i;
if (firstL2METFilterIndex_ == kInvalidIndex && getFilterMET(i) == 0)
firstFilterBeforeL2METIndex_ = i;
if (firstL2METFilterIndex_ == kInvalidIndex && getFilterMET(i) > 0 && getFilterNElectrons(i) == 0 &&
getFilterNMuons(i) == 0)
firstL2METFilterIndex_ = i;
}
// lastFilterBeforeL3TauIndex_ = firstL3TauFilterIndex - 1;
// lastFilterBeforeL3ElectronIndex_ = firstL3ElectronFilterIndex - 1;
// lastFilterBeforeL3MuonIndex_ = firstL3MuonFilterIndex - 1;
LogDebug("HLTTauDQMOffline") << "lastFilterBeforeL2 " << lastFilterBeforeL2TauIndex_ << " lastL2TauFilter "
<< lastL2TauFilterIndex_ << " lastFilterBeforeL3 " << lastFilterBeforeL3TauIndex_
<< " lastL3TauFilter " << lastL3TauFilterIndex_;
isValid_ = true;
}
HLTTauDQMPath::~HLTTauDQMPath() = default;
bool HLTTauDQMPath::fired(const edm::TriggerResults& triggerResults) const { return triggerResults.accept(pathIndex_); }
int HLTTauDQMPath::lastPassedFilter(const edm::TriggerResults& triggerResults) const {
if (fired(triggerResults)) {
//std::cout << "Event passed" << std::endl;
return filterIndices_.size() - 1;
}
unsigned int firstFailedFilter = triggerResults.index(pathIndex_);
int lastPassedFilter = -1;
for (size_t i = 0; i < filterIndices_.size(); ++i) {
if (std::get<kModuleIndex>(filterIndices_[i]) < firstFailedFilter) {
lastPassedFilter = i;
} else {
//std::cout << "Decision-making filter " << firstFailedFilter << " this " << std::get<kModuleIndex>(filterIndices_[i]) << std::endl;
break;
}
}
return lastPassedFilter;
}
void HLTTauDQMPath::getFilterObjects(const trigger::TriggerEvent& triggerEvent,
size_t i,
std::vector<Object>& retval) const {
trigger::size_type filterIndex = triggerEvent.filterIndex(edm::InputTag(getFilterName(i), "", hltProcess_));
if (filterIndex != triggerEvent.sizeFilters()) {
const trigger::Keys& keys = triggerEvent.filterKeys(filterIndex);
const trigger::Vids& ids = triggerEvent.filterIds(filterIndex);
const trigger::TriggerObjectCollection& triggerObjects = triggerEvent.getObjects();
for (size_t i = 0; i < keys.size(); ++i) {
const trigger::TriggerObject& object = triggerObjects[keys[i]];
retval.emplace_back(Object{object, ids[i]});
}
}
}
bool HLTTauDQMPath::offlineMatching(size_t i,
const std::vector<Object>& triggerObjects,
const HLTTauDQMOfflineObjects& offlineObjects,
double dR,
std::vector<Object>& matchedTriggerObjects,
HLTTauDQMOfflineObjects& matchedOfflineObjects) const {
bool isL1 = (i == 0 && isFirstL1Seed_);
std::vector<bool> offlineMask;
if (filterTauN_[i] > 0) {
int matchedObjects = 0;
offlineMask.resize(offlineObjects.taus.size());
std::fill(offlineMask.begin(), offlineMask.end(), true);
for (const Object& trgObj : triggerObjects) {
//std::cout << "trigger object id " << isL1 << " " << trgObj.id << " " << trigger::TriggerL1Tau << " "<< trigger::TriggerTau << std::endl;
if (!((isL1 && trgObj.id == trigger::TriggerL1Tau) || trgObj.id == trigger::TriggerTau))
continue;
if (deltaRmatch(trgObj.object, offlineObjects.taus, dR, offlineMask, matchedOfflineObjects.taus)) {
++matchedObjects;
matchedTriggerObjects.emplace_back(trgObj);
//std::cout << "trigger object DR match" << std::endl;
}
}
if (matchedObjects < filterTauN_[i])
return false;
}
if (filterElectronN_[i] > 0) {
int matchedObjects = 0;
offlineMask.resize(offlineObjects.electrons.size());
std::fill(offlineMask.begin(), offlineMask.end(), true);
for (const Object& trgObj : triggerObjects) {
//std::cout << "trigger object id " << trgObj.id << std::endl;
if (!((isL1 && (trgObj.id == trigger::TriggerL1EG)) || trgObj.id == trigger::TriggerElectron ||
trgObj.id == trigger::TriggerPhoton))
continue;
if (deltaRmatch(trgObj.object, offlineObjects.electrons, dR, offlineMask, matchedOfflineObjects.electrons)) {
++matchedObjects;
matchedTriggerObjects.emplace_back(trgObj);
}
}
if (matchedObjects < filterElectronN_[i])
return false;
}
if (filterMuonN_[i] > 0) {
int matchedObjects = 0;
offlineMask.resize(offlineObjects.muons.size());
std::fill(offlineMask.begin(), offlineMask.end(), true);
for (const Object& trgObj : triggerObjects) {
//std::cout << "trigger object id " << trgObj.id << std::endl;
if (!((isL1 && trgObj.id == trigger::TriggerL1Mu) || trgObj.id == trigger::TriggerMuon))
continue;
if (deltaRmatch(trgObj.object, offlineObjects.muons, dR, offlineMask, matchedOfflineObjects.muons)) {
++matchedObjects;
matchedTriggerObjects.emplace_back(trgObj);
}
}
if (matchedObjects < filterMuonN_[i])
return false;
}
if (filterMET_[i] > 0) {
int matchedObjects = 0;
offlineMask.resize(offlineObjects.met.size());
std::fill(offlineMask.begin(), offlineMask.end(), true);
for (const Object& trgObj : triggerObjects) {
if (!((isL1 && (trgObj.id == trigger::TriggerL1ETM || trgObj.id == trigger::TriggerL1ETMHF)) ||
trgObj.id == trigger::TriggerMET))
continue;
++matchedObjects;
matchedTriggerObjects.emplace_back(trgObj);
}
if (matchedObjects < filterMET_[i]) {
return false;
}
}
// Sort offline objects by pt
std::sort(matchedOfflineObjects.taus.begin(), matchedOfflineObjects.taus.end(), [](const LV& a, const LV& b) {
return a.pt() > b.pt();
});
std::sort(matchedOfflineObjects.electrons.begin(),
matchedOfflineObjects.electrons.end(),
[](const LV& a, const LV& b) { return a.pt() > b.pt(); });
std::sort(matchedOfflineObjects.muons.begin(), matchedOfflineObjects.muons.end(), [](const LV& a, const LV& b) {
return a.pt() > b.pt();
});
matchedOfflineObjects.met = offlineObjects.met;
return true;
}
bool HLTTauDQMPath::goodOfflineEvent(size_t i, const HLTTauDQMOfflineObjects& offlineObjects) const {
return (static_cast<size_t>(getFilterNTaus(i)) <= offlineObjects.taus.size() &&
static_cast<size_t>(getFilterNElectrons(i)) <= offlineObjects.electrons.size() &&
static_cast<size_t>(getFilterNMuons(i)) <= offlineObjects.muons.size());
}
|