CMS 3D CMS Logo

TriggerObjectTableProducer.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 #include <sstream>
4 
5 // user include files
8 
11 
14 
26 
28 public:
30  : name_(iConfig.getParameter<std::string>("name")),
31  src_(consumes<std::vector<pat::TriggerObjectStandAlone>>(iConfig.getParameter<edm::InputTag>("src"))),
32  l1EG_(consumes<l1t::EGammaBxCollection>(iConfig.getParameter<edm::InputTag>("l1EG"))),
33  l1Sum_(consumes<l1t::EtSumBxCollection>(iConfig.getParameter<edm::InputTag>("l1Sum"))),
34  l1Jet_(consumes<l1t::JetBxCollection>(iConfig.getParameter<edm::InputTag>("l1Jet"))),
35  l1Muon_(consumes<l1t::MuonBxCollection>(iConfig.getParameter<edm::InputTag>("l1Muon"))),
36  l1Tau_(consumes<l1t::TauBxCollection>(iConfig.getParameter<edm::InputTag>("l1Tau"))) {
37  std::vector<edm::ParameterSet> selPSets = iConfig.getParameter<std::vector<edm::ParameterSet>>("selections");
38  sels_.reserve(selPSets.size());
39  std::stringstream idstr, qualitystr;
40  idstr << "ID of the object: ";
41  for (auto &pset : selPSets) {
42  sels_.emplace_back(pset);
43  idstr << sels_.back().id << " = " << sels_.back().name;
44  if (sels_.size() < selPSets.size())
45  idstr << ", ";
46  if (!sels_.back().qualityBitsDoc.empty()) {
47  qualitystr << sels_.back().qualityBitsDoc << " for " << sels_.back().name << "; ";
48  }
49  }
50  idDoc_ = idstr.str();
51  bitsDoc_ = qualitystr.str();
52 
53  produces<nanoaod::FlatTable>();
54  }
55 
57 
58 private:
59  void produce(edm::Event &, edm::EventSetup const &) override;
60 
64 
70 
71  struct SelectedObject {
73  int id;
76  float l1DR2, l1DR2_2, l2DR2;
80 
82  : name(pset.getParameter<std::string>("name")),
83  id(pset.getParameter<int>("id")),
84  cut(pset.getParameter<std::string>("sel")),
85  l1cut(""),
86  l1cut_2(""),
87  l2cut(""),
88  l1DR2(-1),
89  l1DR2_2(-1),
90  l2DR2(-1),
91  skipObjectsNotPassingQualityBits(pset.getParameter<bool>("skipObjectsNotPassingQualityBits")),
92  qualityBits(pset.getParameter<std::string>("qualityBits")),
93  qualityBitsDoc(pset.getParameter<std::string>("qualityBitsDoc")) {
94  if (pset.existsAs<std::string>("l1seed")) {
96  l1DR2 = std::pow(pset.getParameter<double>("l1deltaR"), 2);
97  }
98  if (pset.existsAs<std::string>("l1seed_2")) {
100  l1DR2_2 = std::pow(pset.getParameter<double>("l1deltaR_2"), 2);
101  }
102  if (pset.existsAs<std::string>("l2seed")) {
104  l2DR2 = std::pow(pset.getParameter<double>("l2deltaR"), 2);
105  }
106  }
107 
108  bool match(const pat::TriggerObjectStandAlone &obj) const { return cut(obj); }
109  };
110 
111  std::vector<SelectedObject> sels_;
112 };
113 
114 // ------------ method called to produce the data ------------
117  iEvent.getByToken(src_, src);
118 
119  std::vector<std::pair<const pat::TriggerObjectStandAlone *, const SelectedObject *>> selected;
120  for (const auto &obj : *src) {
121  for (const auto &sel : sels_) {
122  if (sel.match(obj) && (sel.skipObjectsNotPassingQualityBits ? (int(sel.qualityBits(obj)) > 0) : true)) {
123  selected.emplace_back(&obj, &sel);
124  break;
125  }
126  }
127  }
128 
129  // Self-cleaning
130  std::map<const pat::TriggerObjectStandAlone *, int> selected_bits;
131  for (unsigned int i = 0; i < selected.size(); ++i) {
132  const auto &obj = *selected[i].first;
133  const auto &sel = *selected[i].second;
134  selected_bits[&obj] = int(sel.qualityBits(obj));
135 
136  for (unsigned int j = 0; j < i; ++j) {
137  const auto &obj2 = *selected[j].first;
138  const auto &sel2 = *selected[j].second;
139  if (sel.id == sel2.id && abs(obj.pt() - obj2.pt()) < 1e-6 && deltaR2(obj, obj2) < 1e-6) {
140  selected_bits[&obj2] |= selected_bits[&obj]; //Keep filters from all the objects
141  selected.erase(selected.begin() + i);
142  i--;
143  }
144  }
145  }
146 
152  iEvent.getByToken(l1EG_, l1EG);
153  iEvent.getByToken(l1Sum_, l1Sum);
154  iEvent.getByToken(l1Jet_, l1Jet);
155  iEvent.getByToken(l1Muon_, l1Muon);
156  iEvent.getByToken(l1Tau_, l1Tau);
157 
158  std::vector<pair<pat::TriggerObjectStandAlone, int>> l1Objects;
159 
160  for (l1t::EGammaBxCollection::const_iterator it = l1EG->begin(0); it != l1EG->end(0); it++) {
161  pat::TriggerObjectStandAlone l1obj(it->p4());
162  l1obj.setCollection("L1EG");
163  l1obj.addTriggerObjectType(trigger::TriggerL1EG);
164  l1Objects.emplace_back(l1obj, it->hwIso());
165  }
166 
167  for (l1t::EtSumBxCollection::const_iterator it = l1Sum->begin(0); it != l1Sum->end(0); it++) {
168  pat::TriggerObjectStandAlone l1obj(it->p4());
169 
170  switch (it->getType()) {
172  l1obj.addTriggerObjectType(trigger::TriggerL1ETM);
173  l1obj.setCollection("L1ETM");
174  break;
175 
177  l1obj.addTriggerObjectType(trigger::TriggerL1ETM);
178  l1obj.setCollection("L1ETMHF");
179  break;
180 
182  l1obj.addTriggerObjectType(trigger::TriggerL1ETT);
183  l1obj.setCollection("L1ETT");
184  break;
185 
187  l1obj.addTriggerObjectType(trigger::TriggerL1ETT);
188  l1obj.setCollection("L1ETEm");
189  break;
190 
192  l1obj.addTriggerObjectType(trigger::TriggerL1HTT);
193  l1obj.setCollection("L1HTT");
194  break;
195 
197  l1obj.addTriggerObjectType(trigger::TriggerL1HTT);
198  l1obj.setCollection("L1HTTHF");
199  break;
200 
202  l1obj.addTriggerObjectType(trigger::TriggerL1HTM);
203  l1obj.setCollection("L1HTM");
204  break;
205 
207  l1obj.addTriggerObjectType(trigger::TriggerL1HTM);
208  l1obj.setCollection("L1HTMHF");
209  break;
210 
211  default:
212  continue;
213  }
214 
215  l1Objects.emplace_back(l1obj, it->hwIso());
216  }
217 
218  for (l1t::JetBxCollection::const_iterator it = l1Jet->begin(0); it != l1Jet->end(0); it++) {
219  pat::TriggerObjectStandAlone l1obj(it->p4());
220  l1obj.setCollection("L1Jet");
221  l1obj.addTriggerObjectType(trigger::TriggerL1Jet);
222  l1Objects.emplace_back(l1obj, it->hwIso());
223  }
224 
225  for (l1t::MuonBxCollection::const_iterator it = l1Muon->begin(0); it != l1Muon->end(0); it++) {
226  pat::TriggerObjectStandAlone l1obj(it->p4());
227  l1obj.setCollection("L1Mu");
228  l1obj.addTriggerObjectType(trigger::TriggerL1Mu);
229  l1obj.setCharge(it->charge());
230  l1Objects.emplace_back(l1obj, it->hwIso());
231  }
232 
233  for (l1t::TauBxCollection::const_iterator it = l1Tau->begin(0); it != l1Tau->end(0); it++) {
234  pat::TriggerObjectStandAlone l1obj(it->p4());
235  l1obj.setCollection("L1Tau");
236  l1obj.addTriggerObjectType(trigger::TriggerL1Tau);
237  l1Objects.emplace_back(l1obj, it->hwIso());
238  }
239 
240  unsigned int nobj = selected.size();
241  std::vector<float> pt(nobj, 0), eta(nobj, 0), phi(nobj, 0), l1pt(nobj, 0), l1pt_2(nobj, 0), l2pt(nobj, 0);
242  std::vector<int> id(nobj, 0), bits(nobj, 0), l1iso(nobj, 0), l1charge(nobj, 0);
243  for (unsigned int i = 0; i < nobj; ++i) {
244  const auto &obj = *selected[i].first;
245  const auto &sel = *selected[i].second;
246  pt[i] = obj.pt();
247  eta[i] = obj.eta();
248  phi[i] = obj.phi();
249  id[i] = sel.id;
250  bits[i] = selected_bits[&obj];
251  if (sel.l1DR2 > 0) {
252  float best = sel.l1DR2;
253  for (const auto &l1obj : l1Objects) {
254  const auto &seed = l1obj.first;
255  float dr2 = deltaR2(seed, obj);
256  if (dr2 < best && sel.l1cut(seed)) {
257  l1pt[i] = seed.pt();
258  l1iso[i] = l1obj.second;
259  l1charge[i] = seed.charge();
260  }
261  }
262  }
263  if (sel.l1DR2_2 > 0) {
264  float best = sel.l1DR2_2;
265  for (const auto &l1obj : l1Objects) {
266  const auto &seed = l1obj.first;
267  float dr2 = deltaR2(seed, obj);
268  if (dr2 < best && sel.l1cut_2(seed)) {
269  l1pt_2[i] = seed.pt();
270  }
271  }
272  }
273  if (sel.l2DR2 > 0) {
274  float best = sel.l2DR2;
275  for (const auto &seed : *src) {
276  float dr2 = deltaR2(seed, obj);
277  if (dr2 < best && sel.l2cut(seed)) {
278  l2pt[i] = seed.pt();
279  }
280  }
281  }
282  }
283 
284  auto tab = std::make_unique<nanoaod::FlatTable>(nobj, name_, false, false);
285  tab->addColumn<int>("id", id, idDoc_, nanoaod::FlatTable::IntColumn);
286  tab->addColumn<float>("pt", pt, "pt", nanoaod::FlatTable::FloatColumn, 12);
287  tab->addColumn<float>("eta", eta, "eta", nanoaod::FlatTable::FloatColumn, 12);
288  tab->addColumn<float>("phi", phi, "phi", nanoaod::FlatTable::FloatColumn, 12);
289  tab->addColumn<float>("l1pt", l1pt, "pt of associated L1 seed", nanoaod::FlatTable::FloatColumn, 8);
290  tab->addColumn<int>("l1iso", l1iso, "iso of associated L1 seed", nanoaod::FlatTable::IntColumn);
291  tab->addColumn<int>("l1charge", l1charge, "charge of associated L1 seed", nanoaod::FlatTable::IntColumn);
292  tab->addColumn<float>("l1pt_2", l1pt_2, "pt of associated secondary L1 seed", nanoaod::FlatTable::FloatColumn, 8);
293  tab->addColumn<float>(
294  "l2pt", l2pt, "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", nanoaod::FlatTable::FloatColumn, 10);
295  tab->addColumn<int>(
296  "filterBits", bits, "extra bits of associated information: " + bitsDoc_, nanoaod::FlatTable::IntColumn);
297  iEvent.put(std::move(tab));
298 }
299 
300 //define this as a plug-in
BXVector< EGamma > EGammaBxCollection
Definition: EGamma.h:11
const_iterator end(int bx) const
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:161
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
enum start value shifted to 81 so as to avoid clashes with PDG codes
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision bits
delete x;
Definition: CaloConfig.h:22
BXVector< Tau > TauBxCollection
Definition: Tau.h:11
StringCutObjectSelector< pat::TriggerObjectStandAlone > l1cut
Definition: HeavyIon.h:7
edm::EDGetTokenT< l1t::JetBxCollection > l1Jet_
BXVector< EtSum > EtSumBxCollection
Definition: EtSum.h:11
TriggerObjectTableProducer(const edm::ParameterSet &iConfig)
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< std::vector< pat::TriggerObjectStandAlone > > src_
void setCollection(const std::string &collName)
Methods.
Definition: TriggerObject.h:84
StringObjectFunction< pat::TriggerObjectStandAlone > qualityBits
edm::EDGetTokenT< l1t::MuonBxCollection > l1Muon_
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
BXVector< Muon > MuonBxCollection
Definition: Muon.h:11
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
BXVector< Jet > JetBxCollection
Definition: Jet.h:11
StringCutObjectSelector< pat::TriggerObjectStandAlone > l1cut_2
bool match(const pat::TriggerObjectStandAlone &obj) const
HLT enums.
edm::EDGetTokenT< l1t::TauBxCollection > l1Tau_
StringCutObjectSelector< pat::TriggerObjectStandAlone > cut
std::vector< SelectedObject > sels_
edm::EDGetTokenT< l1t::EGammaBxCollection > l1EG_
edm::EDGetTokenT< l1t::EtSumBxCollection > l1Sum_
void produce(edm::Event &, edm::EventSetup const &) override
const_iterator begin(int bx) const
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
def move(src, dest)
Definition: eostools.py:511
StringCutObjectSelector< pat::TriggerObjectStandAlone > l2cut
std::vector< T >::const_iterator const_iterator
Definition: BXVector.h:20
Analysis-level trigger object class (stand-alone)