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
|
/** \class HLTMuonIsoFilter
*
* See header file for documentation
*
* \author J. Alcaraz
*
*/
#include "HLTMuonIsoFilter.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/HLTReco/interface/TriggerFilterObjectWithRefs.h"
#include "DataFormats/HLTReco/interface/TriggerRefsCollections.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/TrackReco/interface/Track.h"
#include "DataFormats/RecoCandidate/interface/IsoDeposit.h"
#include "DataFormats/RecoCandidate/interface/IsoDepositFwd.h"
#include "DataFormats/RecoCandidate/interface/RecoChargedCandidate.h"
#include "DataFormats/RecoCandidate/interface/RecoChargedCandidateFwd.h"
#include "RecoMuon/MuonIsolation/interface/MuonIsolatorFactory.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include <iostream>
//
// constructors and destructor
//
HLTMuonIsoFilter::HLTMuonIsoFilter(const edm::ParameterSet& iConfig)
: HLTFilter(iConfig),
candTag_(iConfig.getParameter<edm::InputTag>("CandTag")),
candToken_(consumes<reco::RecoChargedCandidateCollection>(candTag_)),
previousCandTag_(iConfig.getParameter<edm::InputTag>("PreviousCandTag")),
previousCandToken_(consumes<trigger::TriggerFilterObjectWithRefs>(previousCandTag_)),
depTag_(iConfig.getParameter<std::vector<edm::InputTag> >("DepTag")),
depToken_(),
min_N_(iConfig.getParameter<int>("MinN")) {
depToken_.reserve(depTag_.size());
for (auto const& t : depTag_) {
depToken_.push_back(consumes<edm::ValueMap<reco::IsoDeposit> >(t));
}
decMapToken_ = consumes<edm::ValueMap<bool> >(depTag_.front());
LogDebug("HLTMuonIsoFilter").log([this](auto& iLog) {
iLog << " candTag : " << candTag_.encode() << "\n";
int i = 0;
for (auto const& t : depTag_) {
iLog << " IsoTag[" << i++ << "] : " << t.encode() << " \n";
}
iLog << " MinN : " << min_N_;
});
edm::ParameterSet isolatorPSet = iConfig.getParameter<edm::ParameterSet>("IsolatorPSet");
if (not isolatorPSet.empty()) {
std::string type = isolatorPSet.getParameter<std::string>("ComponentName");
theDepositIsolator = std::unique_ptr<muonisolation::MuIsoBaseIsolator>(
MuonIsolatorFactory::get()->create(type, isolatorPSet, consumesCollector()));
}
if (theDepositIsolator)
produces<edm::ValueMap<bool> >();
}
HLTMuonIsoFilter::~HLTMuonIsoFilter() = default;
//
// member functions
//
void HLTMuonIsoFilter::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
makeHLTFilterDescription(desc);
desc.add<edm::InputTag>("CandTag", edm::InputTag("hltL3MuonCandidates"));
desc.add<edm::InputTag>("PreviousCandTag", edm::InputTag(""));
desc.add<int>("MinN", 1);
std::vector<edm::InputTag> depTag(1, edm::InputTag("hltL3MuonIsolations"));
desc.add<std::vector<edm::InputTag> >("DepTag", depTag);
edm::ParameterSetDescription isolatorPSet;
desc.add<edm::ParameterSetDescription>("IsolatorPSet", isolatorPSet);
descriptions.add("hltMuonIsoFilter", desc);
}
// ------------ method called to produce the data ------------
bool HLTMuonIsoFilter::hltFilter(edm::Event& iEvent,
const edm::EventSetup& iSetup,
trigger::TriggerFilterObjectWithRefs& filterproduct) const {
using namespace std;
using namespace edm;
using namespace trigger;
using namespace reco;
// All HLT filters must create and fill an HLT filter object,
// recording any reconstructed physics objects satisfying (or not)
// this HLT filter, and place it in the Event.
//the decision map
std::unique_ptr<edm::ValueMap<bool> > isoMap(new edm::ValueMap<bool>());
// get hold of trks
Handle<RecoChargedCandidateCollection> mucands;
if (saveTags())
filterproduct.addCollectionTag(candTag_);
iEvent.getByToken(candToken_, mucands);
Handle<TriggerFilterObjectWithRefs> previousLevelCands;
iEvent.getByToken(previousCandToken_, previousLevelCands);
vector<RecoChargedCandidateRef> vcands;
previousLevelCands->getObjects(TriggerMuon, vcands);
//get hold of energy deposition
unsigned int nDep = depTag_.size();
std::vector<Handle<edm::ValueMap<reco::IsoDeposit> > > depMap(nDep);
Handle<edm::ValueMap<bool> > decisionMap;
muonisolation::MuIsoBaseIsolator::DepositContainer isoContainer(nDep);
if (theDepositIsolator) {
for (unsigned int i = 0; i != nDep; ++i)
iEvent.getByToken(depToken_[i], depMap[i]);
} else {
bool success = iEvent.getByToken(decMapToken_, decisionMap);
LogDebug("HLTMuonIsoFilter") << "get decisionMap " << success;
}
// look at all mucands, check cuts and add to filter object
int nIsolatedMu = 0;
unsigned int nMu = mucands->size();
std::vector<bool> isos(nMu, false);
unsigned int iMu = 0;
for (; iMu < nMu; iMu++) {
RecoChargedCandidateRef candref(mucands, iMu);
LogDebug("HLTMuonIsoFilter") << "candref isNonnull " << candref.isNonnull();
//did this candidate triggered at previous stage.
if (!triggerdByPreviousLevel(candref, vcands))
continue;
//reference to the track
TrackRef tk = candref->get<TrackRef>();
LogDebug("HLTMuonIsoFilter") << "tk isNonNull " << tk.isNonnull();
if (theDepositIsolator) {
//get the deposits
for (unsigned int iDep = 0; iDep != nDep; ++iDep) {
const edm::ValueMap<reco::IsoDeposit>::value_type& muonDeposit = (*(depMap[iDep]))[candref];
LogDebug("HLTMuonIsoFilter") << " Muon with q*pt= " << tk->charge() * tk->pt() << " ("
<< candref->charge() * candref->pt() << ") "
<< ", eta= " << tk->eta() << " (" << candref->eta() << ") "
<< "; has deposit[" << iDep << "]: " << muonDeposit.print();
isoContainer[iDep] = muonisolation::MuIsoBaseIsolator::DepositAndVetos(&muonDeposit);
}
//get the selection
muonisolation::MuIsoBaseIsolator::Result selection = theDepositIsolator->result(isoContainer, *tk);
isos[iMu] = selection.valBool;
} else {
//get the decision from the event
isos[iMu] = (*decisionMap)[candref];
}
LogDebug("HLTMuonIsoFilter") << " Muon with q*pt= " << tk->charge() * tk->pt() << ", eta= " << tk->eta() << "; "
<< (isos[iMu] ? "Is an isolated muon." : "Is NOT an isolated muon.");
if (!isos[iMu])
continue;
nIsolatedMu++;
filterproduct.addObject(TriggerMuon, candref);
}
// filter decision
const bool accept(nIsolatedMu >= min_N_);
if (theDepositIsolator) {
//put the decision map
if (nMu != 0) {
edm::ValueMap<bool>::Filler isoFiller(*isoMap);
isoFiller.insert(mucands, isos.begin(), isos.end());
isoFiller.fill();
}
iEvent.put(std::move(isoMap));
}
LogDebug("HLTMuonIsoFilter") << " >>>>> Result of HLTMuonIsoFilter is " << accept
<< ", number of muons passing isolation cuts= " << nIsolatedMu;
return accept;
}
bool HLTMuonIsoFilter::triggerdByPreviousLevel(const reco::RecoChargedCandidateRef& candref,
const std::vector<reco::RecoChargedCandidateRef>& vcands) {
bool ok = false;
unsigned int i = 0;
unsigned int i_max = vcands.size();
for (; i != i_max; ++i) {
if (candref == vcands[i]) {
ok = true;
break;
}
}
return ok;
}
// declare this class as a framework plugin
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(HLTMuonIsoFilter);
|