CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TriggerRatesMonitor.cc
Go to the documentation of this file.
1 // Note to self: the implementation uses TH1F's to store the L1 and HLT rates.
2 // Assuming a maximum rate of 100 kHz times a period of 23.31 s, one needs to store counts up to ~2.3e6.
3 // A "float" has 24 bits of precision, so it can store up to 2**24 ~ 16.7e6 without loss of precision.
4 
5 // C++ headers
6 #include <string>
7 #include <cstring>
8 
9 #include <fmt/printf.h>
10 
11 // boost headers
12 #include <boost/regex.hpp>
13 
14 // Root headers
15 #include <TH1F.h>
16 
17 // CMSSW headers
36 
37 namespace {
38 
39  struct RunBasedHistograms {
41  // HLT configuration
42  struct HLTIndices {
43  unsigned int index_l1_seed;
44  unsigned int index_prescale;
45 
46  HLTIndices() : index_l1_seed((unsigned int)-1), index_prescale((unsigned int)-1) {}
47  };
48 
50  std::vector<HLTIndices> hltIndices;
51 
52  std::vector<std::vector<unsigned int>> datasets;
53  std::vector<std::vector<unsigned int>> streams;
54 
55  // L1T and HLT rate plots
56 
57  // per-path HLT plots
58  struct HLTRatesPlots {
59  dqm::reco::MonitorElement *pass_l1_seed;
60  dqm::reco::MonitorElement *pass_prescale;
64  };
65 
66  // overall event count and event types
67  dqm::reco::MonitorElement *events_processed;
68  std::vector<dqm::reco::MonitorElement *> tcds_counts;
69 
70  // L1T triggers
71  std::vector<dqm::reco::MonitorElement *> l1t_counts;
72 
73  // HLT triggers
74  std::vector<std::vector<HLTRatesPlots>> hlt_by_dataset_counts;
75 
76  // datasets
77  std::vector<dqm::reco::MonitorElement *> dataset_counts;
78 
79  // streams
80  std::vector<dqm::reco::MonitorElement *> stream_counts;
81 
82  RunBasedHistograms()
83  : // L1T and HLT configuration
84  hltConfig(),
85  hltIndices(),
86  datasets(),
87  streams(),
88  // overall event count and event types
89  events_processed(),
90  tcds_counts(),
91  // L1T triggers
92  l1t_counts(),
93  // HLT triggers
94  hlt_by_dataset_counts(),
95  // datasets
96  dataset_counts(),
97  // streams
98  stream_counts() {}
99  };
100 } // namespace
101 
102 class TriggerRatesMonitor : public DQMGlobalEDAnalyzer<RunBasedHistograms> {
103 public:
104  explicit TriggerRatesMonitor(edm::ParameterSet const &);
105  ~TriggerRatesMonitor() override = default;
106 
107  static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
108 
109 private:
110  void dqmBeginRun(edm::Run const &, edm::EventSetup const &, RunBasedHistograms &) const override;
112  edm::Run const &,
113  edm::EventSetup const &,
114  RunBasedHistograms &) const override;
115  void dqmAnalyze(edm::Event const &, edm::EventSetup const &, RunBasedHistograms const &) const override;
116 
117  // TCDS trigger types
118  // see https://twiki.cern.ch/twiki/bin/viewauth/CMS/TcdsEventRecord
119  static constexpr const char *const s_tcds_trigger_types[] = {
120  "Empty", // 0 - No trigger
121  "Physics", // 1 - GT trigger
122  "Calibration", // 2 - Sequence trigger (calibration)
123  "Random", // 3 - Random trigger
124  "Auxiliary", // 4 - Auxiliary (CPM front panel NIM input) trigger
125  nullptr, // 5 - reserved
126  nullptr, // 6 - reserved
127  nullptr, // 7 - reserved
128  "Cyclic", // 8 - Cyclic trigger
129  "Bunch-pattern", // 9 - Bunch-pattern trigger
130  "Software", // 10 - Software trigger
131  "TTS", // 11 - TTS-sourced trigger
132  nullptr, // 12 - reserved
133  nullptr, // 13 - reserved
134  nullptr, // 14 - reserved
135  nullptr // 15 - reserved
136  };
137 
138  // module configuration
143  const uint32_t m_lumisections_range;
144 };
145 
146 // definition
147 constexpr const char *const TriggerRatesMonitor::s_tcds_trigger_types[];
148 
151  desc.addUntracked<edm::InputTag>("l1tResults", edm::InputTag("gtStage2Digis"));
152  desc.addUntracked<edm::InputTag>("hltResults", edm::InputTag("TriggerResults"));
153  desc.addUntracked<std::string>("dqmPath", "HLT/TriggerRates");
154  desc.addUntracked<uint32_t>("lumisectionRange", 2500); // ~16 hours
155  descriptions.add("triggerRatesMonitor", desc);
156 }
157 
159  : // module configuration
160  m_l1tMenuToken{esConsumes<edm::Transition::BeginRun>()},
161  m_l1t_results(consumes<GlobalAlgBlkBxCollection>(config.getUntrackedParameter<edm::InputTag>("l1tResults"))),
162  m_hlt_results(consumes<edm::TriggerResults>(config.getUntrackedParameter<edm::InputTag>("hltResults"))),
163  m_dqm_path(config.getUntrackedParameter<std::string>("dqmPath")),
164  m_lumisections_range(config.getUntrackedParameter<uint32_t>("lumisectionRange")) {}
165 
167  edm::EventSetup const &setup,
168  RunBasedHistograms &histograms) const {
169  histograms.tcds_counts.clear();
170  histograms.tcds_counts.resize(sizeof(s_tcds_trigger_types) / sizeof(const char *));
171 
172  // cache the L1 trigger menu
173  histograms.l1t_counts.clear();
174  histograms.l1t_counts.resize(GlobalAlgBlk::maxPhysicsTriggers);
175 
176  // initialise the HLTConfigProvider
177  bool changed = true;
179  labelsForToken(m_hlt_results, labels);
180  if (histograms.hltConfig.init(run, setup, labels.process, changed)) {
181  histograms.hltIndices.resize(histograms.hltConfig.size());
182 
183  unsigned int datasets = histograms.hltConfig.datasetNames().size();
184  histograms.hlt_by_dataset_counts.clear();
185  histograms.hlt_by_dataset_counts.resize(datasets);
186 
187  histograms.datasets.clear();
188  histograms.datasets.resize(datasets);
189  for (unsigned int i = 0; i < datasets; ++i) {
190  auto const &paths = histograms.hltConfig.datasetContent(i);
191  histograms.hlt_by_dataset_counts[i].resize(paths.size());
192  histograms.datasets[i].reserve(paths.size());
193  for (auto const &path : paths) {
194  histograms.datasets[i].push_back(histograms.hltConfig.triggerIndex(path));
195  }
196  }
197  histograms.dataset_counts.clear();
198  histograms.dataset_counts.resize(datasets);
199 
200  unsigned int streams = histograms.hltConfig.streamNames().size();
201  histograms.streams.clear();
202  histograms.streams.resize(streams);
203  for (unsigned int i = 0; i < streams; ++i) {
204  for (auto const &dataset : histograms.hltConfig.streamContent(i)) {
205  for (auto const &path : histograms.hltConfig.datasetContent(dataset))
206  histograms.streams[i].push_back(histograms.hltConfig.triggerIndex(path));
207  }
208  std::sort(histograms.streams[i].begin(), histograms.streams[i].end());
209  auto unique_end = std::unique(histograms.streams[i].begin(), histograms.streams[i].end());
210  histograms.streams[i].resize(unique_end - histograms.streams[i].begin());
211  histograms.streams[i].shrink_to_fit();
212  }
213  histograms.stream_counts.clear();
214  histograms.stream_counts.resize(streams);
215  } else {
216  // HLTConfigProvider not initialised, skip the the HLT monitoring
217  edm::LogError("TriggerRatesMonitor")
218  << "failed to initialise HLTConfigProvider, the HLT trigger and datasets rates will not be monitored";
219  }
220 }
221 
223  edm::Run const &run,
224  edm::EventSetup const &setup,
225  RunBasedHistograms &histograms) const {
226  // book the overall event count and event types histograms
228  histograms.events_processed = booker.book1D(
229  "events", "Processed events vs. lumisection", m_lumisections_range + 1, -0.5, m_lumisections_range + 0.5);
230  booker.setCurrentFolder(m_dqm_path + "/TCDS");
231  for (unsigned int i = 0; i < sizeof(s_tcds_trigger_types) / sizeof(const char *); ++i)
232  if (s_tcds_trigger_types[i]) {
233  std::string const &title = fmt::sprintf("%s events vs. lumisection", s_tcds_trigger_types[i]);
234  histograms.tcds_counts[i] =
235  booker.book1D(s_tcds_trigger_types[i], title, m_lumisections_range + 1, -0.5, m_lumisections_range + 0.5);
236  }
237 
238  // book the rate histograms for the L1 triggers that are included in the L1 menu
239  booker.setCurrentFolder(m_dqm_path + "/L1T");
240  auto const &l1tMenu = setup.getData(m_l1tMenuToken);
241  for (auto const &keyval : l1tMenu.getAlgorithmMap()) {
242  unsigned int bit = keyval.second.getIndex();
243  bool masked = false; // FIXME read L1 masks once they will be avaiable in the EventSetup
244  std::string const &name = fmt::sprintf("%s (bit %d)", keyval.first, bit);
245  std::string const &title =
246  fmt::sprintf("%s (bit %d)%s vs. lumisection", keyval.first, bit, (masked ? " (masked)" : ""));
247  histograms.l1t_counts.at(bit) =
248  booker.book1D(name, title, m_lumisections_range + 1, -0.5, m_lumisections_range + 0.5);
249  }
250 
251  if (histograms.hltConfig.inited()) {
252  auto const &datasets = histograms.hltConfig.datasetNames();
253 
254  // book the rate histograms for the HLT triggers
255  for (unsigned int d = 0; d < datasets.size(); ++d) {
256  booker.setCurrentFolder(m_dqm_path + "/HLT/" + datasets[d]);
257  for (unsigned int i = 0; i < histograms.datasets[d].size(); ++i) {
258  unsigned int index = histograms.datasets[d][i];
259  std::string const &name = histograms.hltConfig.triggerName(index);
260  histograms.hlt_by_dataset_counts[d][i].pass_l1_seed = booker.book1D(name + "_pass_L1_seed",
261  name + " pass L1 seed, vs. lumisection",
263  -0.5,
264  m_lumisections_range + 0.5);
265  histograms.hlt_by_dataset_counts[d][i].pass_prescale = booker.book1D(name + "_pass_prescaler",
266  name + " pass prescaler, vs. lumisection",
268  -0.5,
269  m_lumisections_range + 0.5);
270  histograms.hlt_by_dataset_counts[d][i].accept = booker.book1D(name + "_accept",
271  name + " accept, vs. lumisection",
273  -0.5,
274  m_lumisections_range + 0.5);
275  histograms.hlt_by_dataset_counts[d][i].reject = booker.book1D(name + "_reject",
276  name + " reject, vs. lumisection",
278  -0.5,
279  m_lumisections_range + 0.5);
280  histograms.hlt_by_dataset_counts[d][i].error = booker.book1D(name + "_error",
281  name + " error, vs. lumisection",
283  -0.5,
284  m_lumisections_range + 0.5);
285  }
286 
287  // booker.setCurrentFolder( m_dqm_path + "/HLT/" + datasets[d]);
288  for (unsigned int i : histograms.datasets[d]) {
289  // look for the index of the (last) L1 seed and prescale module in each path
290  histograms.hltIndices[i].index_l1_seed = histograms.hltConfig.size(i);
291  histograms.hltIndices[i].index_prescale = histograms.hltConfig.size(i);
292  for (unsigned int j = 0; j < histograms.hltConfig.size(i); ++j) {
293  std::string const &label = histograms.hltConfig.moduleLabel(i, j);
294  std::string const &type = histograms.hltConfig.moduleType(label);
295  if (type == "HLTL1TSeed" or type == "HLTLevel1GTSeed" or type == "HLTLevel1Activity" or
296  type == "HLTLevel1Pattern") {
297  // there might be more L1 seed filters in sequence
298  // keep looking and store the index of the last one
299  histograms.hltIndices[i].index_l1_seed = j;
300  } else if (type == "HLTPrescaler") {
301  // there should be only one prescaler in a path, and it should follow all L1 seed filters
302  histograms.hltIndices[i].index_prescale = j;
303  break;
304  }
305  }
306  }
307  }
308 
309  // book the HLT datasets rate histograms
310  booker.setCurrentFolder(m_dqm_path + "/Datasets");
311  for (unsigned int i = 0; i < datasets.size(); ++i)
312  histograms.dataset_counts[i] =
313  booker.book1D(datasets[i], datasets[i], m_lumisections_range + 1, -0.5, m_lumisections_range + 0.5);
314 
315  // book the HLT streams rate histograms
316  booker.setCurrentFolder(m_dqm_path + "/Streams");
317  auto const &streams = histograms.hltConfig.streamNames();
318  for (unsigned int i = 0; i < streams.size(); ++i)
319  histograms.stream_counts[i] =
320  booker.book1D(streams[i], streams[i], m_lumisections_range + 1, -0.5, m_lumisections_range + 0.5);
321  }
322 }
323 
325  edm::EventSetup const &setup,
326  RunBasedHistograms const &histograms) const {
327  unsigned int lumisection = event.luminosityBlock();
328 
329  // monitor the overall event count and event types rates
330  histograms.events_processed->Fill(lumisection);
331  if (histograms.tcds_counts[event.experimentType()])
332  histograms.tcds_counts[event.experimentType()]->Fill(lumisection);
333 
334  // monitor the L1 triggers rates
335  auto const &bxvector = event.get(m_l1t_results);
336  if (not bxvector.isEmpty(0)) {
337  auto const &results = bxvector.at(0, 0);
338  for (unsigned int i = 0; i < GlobalAlgBlk::maxPhysicsTriggers; ++i)
339  if (results.getAlgoDecisionFinal(i))
340  if (histograms.l1t_counts[i])
341  histograms.l1t_counts[i]->Fill(lumisection);
342  }
343 
344  // monitor the HLT triggers and datsets rates
345  if (histograms.hltConfig.inited()) {
346  auto const &hltResults = event.get(m_hlt_results);
347  if (hltResults.size() != histograms.hltIndices.size()) {
348  edm::LogWarning("TriggerRatesMonitor")
349  << "This should never happen: the number of HLT paths has changed since the beginning of the run";
350  }
351 
352  for (unsigned int d = 0; d < histograms.datasets.size(); ++d) {
353  for (unsigned int i : histograms.datasets[d])
354  if (hltResults.at(i).accept()) {
355  histograms.dataset_counts[d]->Fill(lumisection);
356  // ensure each dataset is incremented only once per event
357  break;
358  }
359  for (unsigned int i = 0; i < histograms.datasets[d].size(); ++i) {
360  unsigned int index = histograms.datasets[d][i];
361  edm::HLTPathStatus const &path = hltResults.at(index);
362 
363  if (path.index() > histograms.hltIndices[index].index_l1_seed)
364  histograms.hlt_by_dataset_counts[d][i].pass_l1_seed->Fill(lumisection);
365  if (path.index() > histograms.hltIndices[index].index_prescale)
366  histograms.hlt_by_dataset_counts[d][i].pass_prescale->Fill(lumisection);
367  if (path.accept())
368  histograms.hlt_by_dataset_counts[d][i].accept->Fill(lumisection);
369  else if (path.error())
370  histograms.hlt_by_dataset_counts[d][i].error->Fill(lumisection);
371  else
372  histograms.hlt_by_dataset_counts[d][i].reject->Fill(lumisection);
373  }
374  }
375 
376  for (unsigned int i = 0; i < histograms.streams.size(); ++i)
377  for (unsigned int j : histograms.streams[i])
378  if (hltResults.at(j).accept()) {
379  histograms.stream_counts[i]->Fill(lumisection);
380  // ensure each stream is incremented only once per event
381  break;
382  }
383  }
384 }
385 
386 //define this as a plug-in
void dqmBeginRun(edm::Run const &, edm::EventSetup const &, RunBasedHistograms &) const override
T getUntrackedParameter(std::string const &, T const &) const
const std::string m_dqm_path
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
const edm::EDGetTokenT< GlobalAlgBlkBxCollection > m_l1t_results
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::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const edm::EDGetTokenT< edm::TriggerResults > m_hlt_results
dictionary results
def unique
Definition: tier0.py:24
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Log< level::Error, false > LogError
const uint32_t m_lumisections_range
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:31
char const * process
Definition: ProductLabels.h:7
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &, RunBasedHistograms &) const override
bool getData(T &iHolder) const
Definition: EventSetup.h:128
tuple d
Definition: ztail.py:151
static constexpr const char *const s_tcds_trigger_types[]
char const * label
const edm::ESGetToken< L1TUtmTriggerMenu, L1TUtmTriggerMenuRcd > m_l1tMenuToken
bool error() const
has this path encountered an error (exception)?
Definition: HLTPathStatus.h:61
dqm::legacy::MonitorElement MonitorElement
void dqmAnalyze(edm::Event const &, edm::EventSetup const &, RunBasedHistograms const &) const override
void add(std::string const &label, ParameterSetDescription const &psetDescription)
bool accept() const
has this path accepted the event?
Definition: HLTPathStatus.h:59
void labelsForToken(EDGetToken iToken, Labels &oLabels) const
tuple config
parse the configuration file
TriggerRatesMonitor(edm::ParameterSet const &)
edm::EventAuxiliary::ExperimentType experimentType() const
Definition: EventBase.h:63
static constexpr unsigned int maxPhysicsTriggers
Definition: GlobalAlgBlk.h:52
Log< level::Warning, false > LogWarning
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
~TriggerRatesMonitor() override=default
Definition: Run.h:45
unsigned int index() const
Definition: HLTPathStatus.h:52