CMS 3D CMS Logo

HLTLevel1Pattern.cc
Go to the documentation of this file.
1 
13 #include <vector>
14 
31 
32 //
33 // class declaration
34 //
35 
37 public:
38  explicit HLTLevel1Pattern(const edm::ParameterSet&);
39  ~HLTLevel1Pattern() override;
40  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
41  bool filter(edm::Event&, const edm::EventSetup&) override;
42 
43 private:
47  const std::vector<int> m_bunchCrossings;
48  std::vector<int> m_triggerPattern;
49  const unsigned int m_daqPartitions;
50  unsigned int m_triggerNumber;
53  const bool m_ignoreL1Mask;
54  const bool m_invert;
55  const bool m_throw;
56 
60 
64 };
65 
70 
71 //
72 // constructors and destructor
73 //
75  : m_gtReadoutRecord(config.getParameter<edm::InputTag>("L1GtReadoutRecordTag")),
76  m_gtReadoutRecordToken(consumes<L1GlobalTriggerReadoutRecord>(m_gtReadoutRecord)),
77  m_triggerBit(config.getParameter<std::string>("triggerBit")),
78  m_bunchCrossings(config.getParameter<std::vector<int> >("bunchCrossings")),
79  m_triggerPattern(m_bunchCrossings.size(), false),
80  m_daqPartitions(config.getParameter<unsigned int>("daqPartitions")),
81  m_triggerNumber(0),
82  m_triggerAlgo(true),
83  m_triggerMasked(false),
84  m_ignoreL1Mask(config.getParameter<bool>("ignoreL1Mask")),
85  m_invert(config.getParameter<bool>("invert")),
86  m_throw(config.getParameter<bool>("throw")),
87  m_l1GtTriggerMenuToken(esConsumes()),
88  m_l1GtTriggerMaskAlgoTrigRcdToken(esConsumes()),
89  m_l1GtTriggerMaskTechTrigRcdToken(esConsumes()) {
90  std::vector<int> pattern(config.getParameter<std::vector<int> >("triggerPattern"));
91  if (pattern.size() != m_bunchCrossings.size())
92  throw cms::Exception("Configuration") << "\"bunchCrossings\" and \"triggerPattern\" parameters do not match";
93 
94  for (unsigned int i = 0; i < pattern.size(); ++i)
95  m_triggerPattern[i] = (bool)pattern[i];
96 }
97 
99 
102  desc.add<edm::InputTag>("L1GtReadoutRecordTag", edm::InputTag("hltGtDigis"));
103  desc.add<std::string>("triggerBit", "L1Tech_RPC_TTU_pointing_Cosmics.v0");
104  {
105  std::vector<int> temp1;
106  temp1.reserve(5);
107  temp1.push_back(-2);
108  temp1.push_back(-1);
109  temp1.push_back(0);
110  temp1.push_back(1);
111  temp1.push_back(2);
112  desc.add<std::vector<int> >("bunchCrossings", temp1);
113  }
114  desc.add<unsigned int>("daqPartitions", 1);
115  desc.add<bool>("ignoreL1Mask", false);
116  desc.add<bool>("invert", false);
117  desc.add<bool>("throw", true);
118  {
119  std::vector<int> temp1;
120  temp1.reserve(5);
121  temp1.push_back(1);
122  temp1.push_back(1);
123  temp1.push_back(1);
124  temp1.push_back(0);
125  temp1.push_back(0);
126  desc.add<std::vector<int> >("triggerPattern", temp1);
127  }
128  descriptions.add("hltLevel1Pattern", desc);
129 }
130 
131 //
132 // member functions
133 //
134 
135 // ------------ method called to produce the data ------------
137  // determine the L1 algo or tech bit to use
138  if (m_watchL1Menu.check(setup)) {
139  auto const& h_menu = setup.getHandle(m_l1GtTriggerMenuToken);
140  // look for an Algo L1 bit
141  const AlgorithmMap& algoMap = h_menu->gtAlgorithmAliasMap();
142  const AlgorithmMap& techMap = h_menu->gtTechnicalTriggerMap();
143  AlgorithmMap::const_iterator entry;
144  if ((entry = algoMap.find(m_triggerBit)) != algoMap.end()) {
145  m_triggerAlgo = true;
146  m_triggerNumber = entry->second.algoBitNumber();
147  } else if ((entry = techMap.find(m_triggerBit)) != techMap.end()) {
148  m_triggerAlgo = false;
149  m_triggerNumber = entry->second.algoBitNumber();
150  } else {
151  if (m_throw) {
152  throw cms::Exception("Configuration")
153  << "requested L1 trigger \"" << m_triggerBit << "\" does not exist in the current L1 menu";
154  } else {
155  return m_invert;
156  }
157  }
158  }
159 
160  if (m_triggerAlgo) {
161  // check the L1 algorithms mask
162  // - mask & partition == part. --> fully masked
163  // - mask & partition == 0x00 --> fully unmasked
164  // - mask & partition != part. --> unmasked in some partitions, consider as unmasked
166  auto const& h_mask = setup.getHandle(m_l1GtTriggerMaskAlgoTrigRcdToken);
167  m_triggerMasked = ((h_mask->gtTriggerMask()[m_triggerNumber] & m_daqPartitions) == m_daqPartitions);
168  }
169  } else {
170  // check the L1 technical triggers mask
171  // - mask & partition == part. --> fully masked
172  // - mask & partition == 0x00 --> fully unmasked
173  // - mask & partition != part. --> unmasked in some partitions, consider as unmasked
175  auto const& h_mask = setup.getHandle(m_l1GtTriggerMaskTechTrigRcdToken);
176  m_triggerMasked = ((h_mask->gtTriggerMask()[m_triggerNumber] & m_daqPartitions) == m_daqPartitions);
177  }
178  }
179 
180  // is the L1 trigger masked ?
181  if (not m_ignoreL1Mask and m_triggerMasked)
182  return m_invert;
183 
184  // access the L1 decisions
186  event.getByToken(m_gtReadoutRecordToken, h_gtReadoutRecord);
187 
188  // check the L1 algorithms results
189  for (unsigned int i = 0; i < m_bunchCrossings.size(); ++i) {
190  int bx = m_bunchCrossings[i];
191  const std::vector<bool>& word =
192  (m_triggerAlgo) ? h_gtReadoutRecord->decisionWord(bx) : h_gtReadoutRecord->technicalTriggerWord(bx);
193  if (word.empty() or m_triggerNumber >= word.size())
194  // L1 results not available, bail out
195  return m_invert;
196  bool result = word[m_triggerNumber];
197  if (result != m_triggerPattern[i])
198  // comparison failed, bail out
199  return m_invert;
200  }
201 
202  // comparison successful
203  return not m_invert;
204 }
205 
206 // define as a framework plugin
size
Write out results.
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
HLTLevel1Pattern(const edm::ParameterSet &)
bool filter(edm::Event &, const edm::EventSetup &) override
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskAlgoTrigRcd > const m_l1GtTriggerMaskAlgoTrigRcdToken
std::map< std::string, L1GtAlgorithm > AlgorithmMap
map containing the algorithms
const DecisionWord & decisionWord(int bxInEventValue) const
Definition: config.py:1
edm::ESWatcher< L1GtTriggerMaskTechTrigRcd > m_watchTechnicalMask
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const std::string m_triggerBit
const edm::InputTag m_gtReadoutRecord
uint64_t word
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
const edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > m_gtReadoutRecordToken
unsigned int m_triggerNumber
const bool m_ignoreL1Mask
const TechnicalTriggerWord & technicalTriggerWord(int bxInEventValue) const
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
~HLTLevel1Pattern() override
edm::ESGetToken< L1GtTriggerMenu, L1GtTriggerMenuRcd > const m_l1GtTriggerMenuToken
edm::ESWatcher< L1GtTriggerMenuRcd > m_watchL1Menu
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::vector< int > m_triggerPattern
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
HLT enums.
const unsigned int m_daqPartitions
edm::ESWatcher< L1GtTriggerMaskAlgoTrigRcd > m_watchPhysicsMask
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskTechTrigRcd > const m_l1GtTriggerMaskTechTrigRcdToken
Definition: event.py:1
const std::vector< int > m_bunchCrossings