CMS 3D CMS Logo

L1TriggerResultsConverter.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: PhysicsTools/NanoAOD
4 // Class: L1TriggerResultsConverter
5 //
13 //
14 // Original Author: Andrea Rizzi
15 // Created: Mon, 11 Aug 2017 11:20:30 GMT
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <algorithm>
22 
23 // user include files
33 
36 
39 
41 
44 
46 //
47 // class declaration
48 //
49 
51 public:
53  ~L1TriggerResultsConverter() override;
54 
55  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
56 
57 private:
58  void produce(edm::Event&, const edm::EventSetup&) override;
59  void beginRun(edm::Run const&, edm::EventSetup const&) override;
60 
61  // ----------member data ---------------------------
62  const bool legacyL1_;
70  std::vector<std::string> names_;
71  std::vector<unsigned int> mask_;
72  std::vector<unsigned int> indices_;
73 };
74 
75 //
76 // constructors and destructor
77 //
79  : legacyL1_(params.getParameter<bool>("legacyL1")),
80  store_unprefireable_bit_(!legacyL1_ ? params.getParameter<bool>("storeUnprefireableBit") : false),
81  tokenLegacy_(legacyL1_ ? consumes<L1GlobalTriggerReadoutRecord>(params.getParameter<edm::InputTag>("src"))
82  : edm::EDGetTokenT<L1GlobalTriggerReadoutRecord>()),
83  token_(!legacyL1_ ? consumes<GlobalAlgBlkBxCollection>(params.getParameter<edm::InputTag>("src"))
84  : edm::EDGetTokenT<GlobalAlgBlkBxCollection>()),
85  token_ext_(store_unprefireable_bit_
86  ? consumes<GlobalExtBlkBxCollection>(params.getParameter<edm::InputTag>("src_ext"))
87  : edm::EDGetTokenT<GlobalExtBlkBxCollection>()),
88  l1gtmenuToken_(esConsumes<edm::Transition::BeginRun>()),
89  l1gtalgoMaskToken_(esConsumes<edm::Transition::BeginRun>()),
90  l1utmTrigToken_(esConsumes<edm::Transition::BeginRun>()) {
91  produces<edm::TriggerResults>();
92 }
93 
95  // do anything here that needs to be done at destruction time
96  // (e.g. close files, deallocate resources etc.)
97 }
98 
99 //
100 // member functions
101 //
102 
104  mask_.clear();
105  names_.clear();
106  indices_.clear();
107  if (legacyL1_) {
108  auto const& mapping = setup.getHandle(l1gtmenuToken_)->gtAlgorithmAliasMap();
109  for (auto const& keyval : mapping) {
110  names_.push_back(keyval.first);
111  indices_.push_back(keyval.second.algoBitNumber());
112  }
113  mask_ = setup.getHandle(l1gtalgoMaskToken_)->gtTriggerMask();
114  } else {
115  auto const& mapping = setup.getHandle(l1utmTrigToken_)->getAlgorithmMap();
116  for (auto const& keyval : mapping) {
117  names_.push_back(keyval.first);
118  indices_.push_back(keyval.second.getIndex());
119  }
121  names_.push_back("L1_UnprefireableEvent");
122  }
123 }
124 
125 // ------------ method called to produce the data ------------
126 
128  const std::vector<bool>* wordp = nullptr;
129  bool unprefireable_bit = false;
130  if (!legacyL1_) {
131  const auto& resultsProd = iEvent.get(token_);
132  if (not resultsProd.isEmpty(0)) {
133  wordp = &resultsProd.at(0, 0).getAlgoDecisionFinal();
134  }
136  auto handleExtResults = iEvent.getHandle(token_ext_);
137  if (handleExtResults.isValid()) {
138  if (not handleExtResults->isEmpty(0)) {
139  unprefireable_bit = handleExtResults->at(0, 0).getExternalDecision(GlobalExtBlk::maxExternalConditions - 1);
140  }
141  } else {
142  LogDebug("Unprefirable bit not found, always set to false");
143  }
144  }
145  } else {
146  // Legacy access
147  const auto& resultsProd = iEvent.get(tokenLegacy_);
148  wordp = &resultsProd.decisionWord();
149  }
150  edm::HLTGlobalStatus l1bitsAsHLTStatus(names_.size());
151  unsigned indices_size = indices_.size();
152  for (size_t nidx = 0; nidx < indices_size; nidx++) {
153  unsigned int const index = indices_[nidx];
154  bool result = wordp ? wordp->at(index) : false;
155  if (not mask_.empty())
156  result &= (mask_.at(index) != 0);
157  l1bitsAsHLTStatus[nidx] = edm::HLTPathStatus(result ? edm::hlt::Pass : edm::hlt::Fail);
158  }
160  l1bitsAsHLTStatus[indices_size] = edm::HLTPathStatus(unprefireable_bit ? edm::hlt::Pass : edm::hlt::Fail);
161  //mimic HLT trigger bits for L1
162  auto out = std::make_unique<edm::TriggerResults>(l1bitsAsHLTStatus, names_);
163  iEvent.put(std::move(out));
164 }
165 
166 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
169  desc.add<bool>("legacyL1")->setComment("is legacy L1");
170  desc.add<edm::InputTag>("src")->setComment(
171  "L1 input (L1GlobalTriggerReadoutRecord if legacy, GlobalAlgBlkBxCollection otherwise)");
172  desc.add<bool>("storeUnprefireableBit", false)
173  ->setComment("Activate storage of L1 unprefireable bit (needs L1 external decision input)");
174  desc.add<edm::InputTag>("src_ext", edm::InputTag(""))
175  ->setComment("L1 external decision input (GlobalExtBlkBxCollection, only supported if not legacy");
176  descriptions.add("L1TriggerResultsConverter", desc);
177 }
178 
179 //define this as a plug-in
std::vector< unsigned int > indices_
std::vector< std::string > names_
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
static const unsigned int maxExternalConditions
Definition: GlobalExtBlk.h:43
reject
Definition: HLTenums.h:19
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void beginRun(edm::Run const &, edm::EventSetup const &) override
void produce(edm::Event &, const edm::EventSetup &) override
int iEvent
Definition: GenABIO.cc:224
accept
Definition: HLTenums.h:18
const edm::EDGetTokenT< GlobalAlgBlkBxCollection > token_
Transition
Definition: Transition.h:12
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
L1TriggerResultsConverter(const edm::ParameterSet &)
const edm::EDGetTokenT< GlobalExtBlkBxCollection > token_ext_
const edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > tokenLegacy_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::vector< unsigned int > mask_
HLT enums.
edm::ESGetToken< L1TUtmTriggerMenu, L1TUtmTriggerMenuRcd > l1utmTrigToken_
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskAlgoTrigRcd > l1gtalgoMaskToken_
def move(src, dest)
Definition: eostools.py:511
edm::ESGetToken< L1GtTriggerMenu, L1GtTriggerMenuRcd > l1gtmenuToken_
Definition: Run.h:45
#define LogDebug(id)