CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TriggerJSONMonitoring.cc
Go to the documentation of this file.
1 
12 
15 
19 
21 
22 #include <fstream>
23 using namespace jsoncollector;
24 
26  triggerResults_(ps.getParameter<edm::InputTag>("triggerResults")),
27  triggerResultsToken_(consumes<edm::TriggerResults>(triggerResults_)),
28  level1Results_(ps.getParameter<edm::InputTag>("L1Results")),
29  m_l1t_results(consumes<L1GlobalTriggerReadoutRecord>(level1Results_)),
30  hltPrescaleProvider_(ps, consumesCollector(), *this)
31 {
32 
33 
34 }
35 
37 {
38 }
39 
40 void
43  desc.add<edm::InputTag>("triggerResults",edm::InputTag("TriggerResults","","HLT"));
44  desc.add<edm::InputTag>("L1Results",edm::InputTag("hltGtDigis"));
45  descriptions.add("triggerJSONMonitoring", desc);
46 }
47 
48 void
50 {
51 
52  using namespace std;
53  using namespace edm;
54 
55  processed_++;
56 
57  int ex = iEvent.experimentType();
58  if (ex == 1) L1Global_[0]++;
59  else if (ex == 2) L1Global_[1]++;
60  else if (ex == 3) L1Global_[2]++;
61  else{
62  LogDebug("TriggerJSONMonitoring") << "Not Physics, Calibration or Random. experimentType = " << ex << std::endl;
63  }
64 
65  //Get hold of L1TResults
68 
69  L1GlobalTriggerReadoutRecord L1TResults = * l1tResults.product();
70 
71  const std::vector<bool> & algoword = L1TResults.decisionWord();
72  if (algoword.size() == L1AlgoAccept_.size()){
73  for (unsigned int i = 0; i < algoword.size(); i++){
74  if (algoword[i]){
75  L1AlgoAccept_[i]++;
76  if (ex == 1) L1AlgoAcceptPhysics_[i]++;
77  if (ex == 2) L1AlgoAcceptCalibration_[i]++;
78  if (ex == 3) L1AlgoAcceptRandom_[i]++;
79  }
80  }
81  }
82  else {
83  LogWarning("TriggerJSONMonitoring")<<"L1 Algo Trigger Mask size does not match number of L1 Algo Triggers!";
84  }
85 
86  const std::vector<bool> & techword = L1TResults.technicalTriggerWord();
87  if (techword.size() == L1TechAccept_.size()){
88  for (unsigned int i = 0; i < techword.size(); i++){
89  if (techword[i]){
90  L1TechAccept_[i]++;
91  if (ex == 1) L1TechAcceptPhysics_[i]++;
92  if (ex == 2) L1TechAcceptCalibration_[i]++;
93  if (ex == 3) L1TechAcceptRandom_[i]++;
94  }
95  }
96  }
97  else{
98  LogWarning("TriggerJSONMonitoring")<<"L1 Tech Trigger Mask size does not match number of L1 Tech Triggers!";
99  }
100 
101  //Get hold of TriggerResults
103  iEvent.getByToken(triggerResultsToken_, HLTR);
104  if (!HLTR.isValid()) {
105  LogDebug("TriggerJSONMonitoring") << "HLT TriggerResults with label ["+triggerResults_.encode()+"] not found!" << std::endl;
106  return;
107  }
108 
109  //Decision for each HLT path
110  const unsigned int n(hltNames_.size());
111  for (unsigned int i=0; i<n; i++) {
112  if (HLTR->wasrun(i)) hltWasRun_[i]++;
113  if (HLTR->accept(i)) hltAccept_[i]++;
114  if (HLTR->wasrun(i) && !HLTR->accept(i)) hltReject_[i]++;
115  if (HLTR->error(i)) hltErrors_[i]++;
116  //Count L1 seeds and Prescales
117  const int index(static_cast<int>(HLTR->index(i)));
118  if (HLTR->accept(i)) {
119  if (index >= posL1s_[i]) hltL1s_[i]++;
120  if (index >= posPre_[i]) hltPre_[i]++;
121  } else {
122  if (index > posL1s_[i]) hltL1s_[i]++;
123  if (index > posPre_[i]) hltPre_[i]++;
124  }
125  }
126 
127  //Decision for each HLT dataset
128  std::vector<bool> acceptedByDS(hltIndex_.size(), false);
129  for (unsigned int ds=0; ds < hltIndex_.size(); ds++) { // ds = index of dataset
130  for (unsigned int p=0; p<hltIndex_[ds].size(); p++) { // p = index of path with dataset ds
131  if (acceptedByDS[ds]>0 || HLTR->accept(hltIndex_[ds][p]) ) {
132  acceptedByDS[ds] = true;
133  }
134  }
135  if (acceptedByDS[ds]) hltDatasets_[ds]++;
136  }
137 
138  //Prescale index
140 
141  //Check that the prescale index hasn't changed inside a lumi section
142  unsigned int newLumi = (unsigned int) iEvent.eventAuxiliary().luminosityBlock();
143  if (oldLumi == newLumi and prescaleIndex_ != oldPrescaleIndex){
144  LogWarning("TriggerJSONMonitoring")<<"Prescale index has changed from "<<oldPrescaleIndex<<" to "<<prescaleIndex_<<" inside lumi section "<<newLumi;
145  }
146  oldLumi = newLumi;
148 
149 }//End analyze function
150 
151 void
153 
154  //Update trigger and dataset names, clear L1 names and counters
155  if (changed){
159 
160  L1AlgoNames_.resize(m_l1tAlgoMask->gtTriggerMask().size());
161  for (unsigned int i = 0; i < L1AlgoNames_.size(); i++) {
162  L1AlgoNames_.at(i) = "";
163  }
164  //Get L1 algorithm trigger names -
165  for (CItAlgo itAlgo = algorithmMap.begin(); itAlgo != algorithmMap.end(); itAlgo++) {
166  int bitNumber = (itAlgo->second).algoBitNumber();
167  L1AlgoNames_.at(bitNumber) = itAlgo->first;
168  }
169 
170  L1TechNames_.resize(m_l1tTechMask->gtTriggerMask().size());
171  for (unsigned int i = 0; i < L1TechNames_.size(); i++) {
172  L1TechNames_.at(i) = "";
173  }
174  //Get L1 technical trigger names -
175  for (CItAlgo itAlgo = technicalMap.begin(); itAlgo != technicalMap.end(); itAlgo++) {
176  int bitNumber = (itAlgo->second).algoBitNumber();
177  L1TechNames_.at(bitNumber) = itAlgo->first;
178  }
179 
180  L1GlobalType_.clear();
181  L1Global_.clear();
182 
183  //Set the experimentType -
184  L1GlobalType_.push_back( "Physics" );
185  L1GlobalType_.push_back( "Calibration" );
186  L1GlobalType_.push_back( "Random" );
187  }
188 
189  const unsigned int n = hltNames_.size();
190  const unsigned int d = datasetNames_.size();
191  const unsigned int la = L1AlgoNames_.size();
192  const unsigned int lt = L1TechNames_.size();
193  const unsigned int lg = L1GlobalType_.size();
194 
195  if (changed) {
196  //Resize per-path counters
197  hltWasRun_.resize(n);
198  hltL1s_.resize(n);
199  hltPre_.resize(n);
200  hltAccept_.resize(n);
201  hltReject_.resize(n);
202  hltErrors_.resize(n);
203 
204  L1AlgoAccept_.resize(la);
205  L1AlgoAcceptPhysics_.resize(la);
206  L1AlgoAcceptCalibration_.resize(la);
207  L1AlgoAcceptRandom_.resize(la);
208 
209  L1TechAccept_.resize(lt);
210  L1TechAcceptPhysics_.resize(lt);
211  L1TechAcceptCalibration_.resize(lt);
212  L1TechAcceptRandom_.resize(lt);
213 
214  L1Global_.resize(lg);
215  //Resize per-dataset counter
216  hltDatasets_.resize(d);
217  //Resize htlIndex
218  hltIndex_.resize(d);
219  //Set-up hltIndex
220  for (unsigned int ds = 0; ds < d; ds++) {
221  unsigned int size = datasetContents_[ds].size();
222  hltIndex_[ds].reserve(size);
223  for (unsigned int p = 0; p < size; p++) {
224  unsigned int i = hltConfig_.triggerIndex(datasetContents_[ds][p]);
225  if (i<n) {
226  hltIndex_[ds].push_back(i);
227  }
228  }
229  }
230  //Find the positions of seeding and prescaler modules
231  posL1s_.resize(n);
232  posPre_.resize(n);
233  for (unsigned int i = 0; i < n; ++i) {
234  posL1s_[i] = -1;
235  posPre_[i] = -1;
236  const std::vector<std::string> & moduleLabels(hltConfig_.moduleLabels(i));
237  for (unsigned int j = 0; j < moduleLabels.size(); ++j) {
238  const std::string & label = hltConfig_.moduleType(moduleLabels[j]);
239  if (label == "HLTLevel1GTSeed")
240  posL1s_[i] = j;
241  else if (label == "HLTPrescaler")
242  posPre_[i] = j;
243  }
244  }
245  }
246  resetLumi();
247 }//End resetRun function
248 
249 void
251  //Reset total number of events
252  processed_ = 0;
253 
254  //Reset per-path counters
255  for (unsigned int i = 0; i < hltWasRun_.size(); i++) {
256  hltWasRun_[i] = 0;
257  hltL1s_[i] = 0;
258  hltPre_[i] = 0;
259  hltAccept_[i] = 0;
260  hltReject_[i] = 0;
261  hltErrors_[i] = 0;
262  }
263  //Reset per-dataset counter
264  for (unsigned int i = 0; i < hltDatasets_.size(); i++) {
265  hltDatasets_[i] = 0;
266  }
267  //Reset L1 per-algo counters -
268  for (unsigned int i = 0; i < L1AlgoAccept_.size(); i++) {
269  L1AlgoAccept_[i] = 0;
270  L1AlgoAcceptPhysics_[i] = 0;
272  L1AlgoAcceptRandom_[i] = 0;
273  }
274  //Reset L1 per-tech counters -
275  for (unsigned int i = 0; i < L1TechAccept_.size(); i++) {
276  L1TechAccept_[i] = 0;
277  L1TechAcceptPhysics_[i] = 0;
279  L1TechAcceptRandom_[i] = 0;
280  }
281  //Reset L1 global counters -
282  for (unsigned int i = 0; i < L1GlobalType_.size(); i++) {
283  L1Global_[i] = 0;
284  }
285 
286  //Luminosity and prescale index
287  prescaleIndex_ = 0;
288 
289 }//End resetLumi function
290 
291 void
293 {
294  //Get the run directory from the EvFDaqDirector
296  else baseRunDir_ = ".";
297 
298  std::string monPath = baseRunDir_ + "/";
299 
300  //Get/update the L1 trigger menu from the EventSetup
302  iSetup.get<L1GtTriggerMenuRcd>().get(l1GtMenu);
303  m_l1GtMenu = l1GtMenu.product();
306 
307  //Get masks (for now, only use them to find the number of triggers)
308  edm::ESHandle<L1GtTriggerMask> l1GtAlgoMask;
309  iSetup.get<L1GtTriggerMaskAlgoTrigRcd>().get(l1GtAlgoMask);
310  m_l1tAlgoMask = l1GtAlgoMask.product();
311 
312  edm::ESHandle<L1GtTriggerMask> l1GtTechMask;
313  iSetup.get<L1GtTriggerMaskTechTrigRcd>().get(l1GtTechMask);
314  m_l1tTechMask = l1GtTechMask.product();
315 
316  //Initialize hltConfig_
317  bool changed = true;
318  if (hltPrescaleProvider_.init(iRun, iSetup, triggerResults_.process(), changed)){
320  resetRun(changed);
321  }
322  else{
323  LogDebug("TriggerJSONMonitoring") << "HLTPrescaleProvider initialization failed!" << std::endl;
324  return;
325  }
326 
327  //Write the once-per-run files if not already written
328  //Eventually must rewrite this with proper multithreading (i.e. globalBeginRun)
329  bool expected = false;
330  if( runCache()->wroteFiles.compare_exchange_strong(expected, true) ){
331  runCache()->wroteFiles = true;
332 
333  unsigned int nRun = iRun.run();
334 
335  //Create definition file for HLT Rates
336  std::stringstream ssHltJsd;
337  ssHltJsd << "run" << std::setfill('0') << std::setw(6) << nRun << "_ls0000";
338  ssHltJsd << "_streamHLTRates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsd";
339  stHltJsd_ = ssHltJsd.str();
340 
342 
343  //Create definition file for L1 Rates -
344  std::stringstream ssL1Jsd;
345  ssL1Jsd << "run" << std::setfill('0') << std::setw(6) << nRun << "_ls0000";
346  ssL1Jsd << "_streamL1Rates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsd";
347  stL1Jsd_ = ssL1Jsd.str();
348 
350 
351  //Write ini files
352  //HLT
353  Json::Value hltIni;
354  Json::StyledWriter writer;
355 
356  Json::Value hltNamesVal(Json::arrayValue);
357  for (unsigned int ui = 0; ui < hltNames_.size(); ui++){
358  hltNamesVal.append(hltNames_.at(ui));
359  }
360 
361  Json::Value datasetNamesVal(Json::arrayValue);
362  for (unsigned int ui = 0; ui < datasetNames_.size(); ui++){
363  datasetNamesVal.append(datasetNames_.at(ui));
364  }
365 
366  hltIni["Path-Names"] = hltNamesVal;
367  hltIni["Dataset-Names"] = datasetNamesVal;
368 
369  std::string && result = writer.write(hltIni);
370 
371  std::stringstream ssHltIni;
372  ssHltIni << "run" << std::setfill('0') << std::setw(6) << nRun << "_ls0000_streamHLTRates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".ini";
373 
374  std::ofstream outHltIni( monPath + ssHltIni.str() );
375  outHltIni<<result;
376  outHltIni.close();
377 
378  //L1
379  Json::Value l1Ini;
380 
381  Json::Value l1AlgoNamesVal(Json::arrayValue);
382  for (unsigned int ui = 0; ui < L1AlgoNames_.size(); ui++){
383  l1AlgoNamesVal.append(L1AlgoNames_.at(ui));
384  }
385 
386  Json::Value l1TechNamesVal(Json::arrayValue);
387  for (unsigned int ui = 0; ui < L1TechNames_.size(); ui++){
388  l1TechNamesVal.append(L1TechNames_.at(ui));
389  }
390 
391  Json::Value eventTypeVal(Json::arrayValue);
392  for (unsigned int ui = 0; ui < L1GlobalType_.size(); ui++){
393  eventTypeVal.append(L1GlobalType_.at(ui));
394  }
395 
396  l1Ini["L1-Algo-Names"] = l1AlgoNamesVal;
397  l1Ini["L1-Tech-Names"] = l1TechNamesVal;
398  l1Ini["Event-Type"] = eventTypeVal;
399 
400  result = writer.write(l1Ini);
401 
402  std::stringstream ssL1Ini;
403  ssL1Ini << "run" << std::setfill('0') << std::setw(6) << nRun << "_ls0000_streamL1Rates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".ini";
404 
405  std::ofstream outL1Ini( monPath + ssL1Ini.str() );
406  outL1Ini<<result;
407  outL1Ini.close();
408  }
409 
410  //Initialize variables for verification of prescaleIndex
411  oldLumi = 0;
412  oldPrescaleIndex = 0;
413 
414 }//End beginRun function
415 
417 
418 std::shared_ptr<hltJson::lumiVars>
420 {
421  std::shared_ptr<hltJson::lumiVars> iSummary(new hltJson::lumiVars);
422 
423  unsigned int MAXPATHS = 500;
424 
425  iSummary->processed = new HistoJ<unsigned int>(1, 1);
426 
427  iSummary->hltWasRun = new HistoJ<unsigned int>(1, MAXPATHS);
428  iSummary->hltL1s = new HistoJ<unsigned int>(1, MAXPATHS);
429  iSummary->hltPre = new HistoJ<unsigned int>(1, MAXPATHS);
430  iSummary->hltAccept = new HistoJ<unsigned int>(1, MAXPATHS);
431  iSummary->hltReject = new HistoJ<unsigned int>(1, MAXPATHS);
432  iSummary->hltErrors = new HistoJ<unsigned int>(1, MAXPATHS);
433 
434  iSummary->hltDatasets = new HistoJ<unsigned int>(1, MAXPATHS);
435 
436  iSummary->prescaleIndex = 100;
437 
438  iSummary->L1AlgoAccept = new HistoJ<unsigned int>(1, MAXPATHS);
439  iSummary->L1TechAccept = new HistoJ<unsigned int>(1, MAXPATHS);
440  iSummary->L1AlgoAcceptPhysics = new HistoJ<unsigned int>(1, MAXPATHS);
441  iSummary->L1TechAcceptPhysics = new HistoJ<unsigned int>(1, MAXPATHS);
442  iSummary->L1AlgoAcceptCalibration = new HistoJ<unsigned int>(1, MAXPATHS);
443  iSummary->L1TechAcceptCalibration = new HistoJ<unsigned int>(1, MAXPATHS);
444  iSummary->L1AlgoAcceptRandom = new HistoJ<unsigned int>(1, MAXPATHS);
445  iSummary->L1TechAcceptRandom = new HistoJ<unsigned int>(1, MAXPATHS);
446  iSummary->L1Global = new HistoJ<unsigned int>(1, MAXPATHS);
447 
448  iSummary->baseRunDir = "";
449  iSummary->stHltJsd = "";
450  iSummary->stL1Jsd = "";
451  iSummary->streamL1Destination = "";
452  iSummary->streamHLTDestination = "";
453 
454  return iSummary;
455 }//End globalBeginLuminosityBlockSummary function
456 
457 void
459 
460  //Whichever stream gets there first does the initialiazation
461  if (iSummary->hltWasRun->value().size() == 0){
462  iSummary->processed->update(processed_);
463 
464  for (unsigned int ui = 0; ui < hltWasRun_.size(); ui++){
465  iSummary->hltWasRun->update(hltWasRun_.at(ui));
466  iSummary->hltL1s ->update(hltL1s_ .at(ui));
467  iSummary->hltPre ->update(hltPre_ .at(ui));
468  iSummary->hltAccept->update(hltAccept_.at(ui));
469  iSummary->hltReject->update(hltReject_.at(ui));
470  iSummary->hltErrors->update(hltErrors_.at(ui));
471  }
472  for (unsigned int ui = 0; ui < hltDatasets_.size(); ui++){
473  iSummary->hltDatasets->update(hltDatasets_.at(ui));
474  }
475  iSummary->prescaleIndex = prescaleIndex_;
476 
477  iSummary->stHltJsd = stHltJsd_;
478  iSummary->baseRunDir = baseRunDir_;
479 
480  for (unsigned int ui = 0; ui < L1AlgoAccept_.size(); ui++){
481  iSummary->L1AlgoAccept ->update(L1AlgoAccept_.at(ui));
485  }
486  for (unsigned int ui = 0; ui < L1TechAccept_.size(); ui++){
487  iSummary->L1TechAccept ->update(L1TechAccept_.at(ui));
491  }
492  for (unsigned int ui = 0; ui < L1GlobalType_.size(); ui++){
493  iSummary->L1Global ->update(L1Global_.at(ui));
494  }
495  iSummary->stL1Jsd = stL1Jsd_;
496 
497  iSummary->streamHLTDestination = runCache()->streamHLTDestination;
498  iSummary->streamL1Destination = runCache()->streamL1Destination;
499  }
500 
501  else{
502  iSummary->processed->value().at(0) += processed_;
503 
504  for (unsigned int ui = 0; ui < hltWasRun_.size(); ui++){
505  iSummary->hltWasRun->value().at(ui) += hltWasRun_.at(ui);
506  iSummary->hltL1s ->value().at(ui) += hltL1s_ .at(ui);
507  iSummary->hltPre ->value().at(ui) += hltPre_ .at(ui);
508  iSummary->hltAccept->value().at(ui) += hltAccept_.at(ui);
509  iSummary->hltReject->value().at(ui) += hltReject_.at(ui);
510  iSummary->hltErrors->value().at(ui) += hltErrors_.at(ui);
511  }
512  for (unsigned int ui = 0; ui < hltDatasets_.size(); ui++){
513  iSummary->hltDatasets->value().at(ui) += hltDatasets_.at(ui);
514  }
515  for (unsigned int ui = 0; ui < L1AlgoAccept_.size(); ui++){
516  iSummary->L1AlgoAccept->value().at(ui) += L1AlgoAccept_.at(ui);
517  iSummary->L1AlgoAcceptPhysics->value().at(ui) += L1AlgoAcceptPhysics_.at(ui);
519  iSummary->L1AlgoAcceptRandom->value().at(ui) += L1AlgoAcceptRandom_.at(ui);
520  }
521  for (unsigned int ui = 0; ui < L1TechAccept_.size(); ui++){
522  iSummary->L1TechAccept->value().at(ui) += L1TechAccept_.at(ui);
523  iSummary->L1TechAcceptPhysics->value().at(ui) += L1TechAcceptPhysics_.at(ui);
525  iSummary->L1TechAcceptRandom->value().at(ui) += L1TechAcceptRandom_.at(ui);
526  }
527  for (unsigned int ui = 0; ui < L1Global_.size(); ui++){
528  iSummary->L1Global->value().at(ui) += L1Global_.at(ui);
529  }
530 
531  }
532 
533 }//End endLuminosityBlockSummary function
534 
535 
536 void
538 {
539 
540  unsigned int iLs = iLumi.luminosityBlock();
541  unsigned int iRun = iLumi.run();
542 
543  bool writeFiles=true;
544  if (edm::Service<evf::MicroStateService>().isAvailable()) {
546  if (fms) {
547  writeFiles = fms->shouldWriteFiles(iLumi.luminosityBlock());
548  }
549  }
550 
551  if (writeFiles) {
552  Json::StyledWriter writer;
553 
554  char hostname[33];
555  gethostname(hostname,32);
556  std::string sourceHost(hostname);
557 
558  //Get the output directory
559  std::string monPath = iSummary->baseRunDir + "/";
560 
561  std::stringstream sOutDef;
562  sOutDef << monPath << "output_" << getpid() << ".jsd";
563 
564  //Write the .jsndata files which contain the actual rates
565  //HLT .jsndata file
566  Json::Value hltJsnData;
567  hltJsnData[DataPoint::SOURCE] = sourceHost;
568  hltJsnData[DataPoint::DEFINITION] = iSummary->stHltJsd;
569 
570  hltJsnData[DataPoint::DATA].append(iSummary->processed->toJsonValue());
571  hltJsnData[DataPoint::DATA].append(iSummary->hltWasRun->toJsonValue());
572  hltJsnData[DataPoint::DATA].append(iSummary->hltL1s ->toJsonValue());
573  hltJsnData[DataPoint::DATA].append(iSummary->hltPre ->toJsonValue());
574  hltJsnData[DataPoint::DATA].append(iSummary->hltAccept->toJsonValue());
575  hltJsnData[DataPoint::DATA].append(iSummary->hltReject->toJsonValue());
576  hltJsnData[DataPoint::DATA].append(iSummary->hltErrors->toJsonValue());
577 
578  hltJsnData[DataPoint::DATA].append(iSummary->hltDatasets->toJsonValue());
579 
580  hltJsnData[DataPoint::DATA].append(iSummary->prescaleIndex);
581 
582  std::string && result = writer.write(hltJsnData);
583 
584  std::stringstream ssHltJsnData;
585  ssHltJsnData << "run" << std::setfill('0') << std::setw(6) << iRun << "_ls" << std::setfill('0') << std::setw(4) << iLs;
586  ssHltJsnData << "_streamHLTRates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsndata";
587 
588  if (iSummary->processed->value().at(0)!=0) {
589  std::ofstream outHltJsnData( monPath + ssHltJsnData.str() );
590  outHltJsnData<<result;
591  outHltJsnData.close();
592  }
593 
594  //HLT jsn entries
595  StringJ hltJsnFilelist;
596  IntJ hltJsnFilesize = 0;
597  unsigned int hltJsnFileAdler32 = 1;
598  if (iSummary->processed->value().at(0)!=0) {
599  hltJsnFilelist.update(ssHltJsnData.str());
600  hltJsnFilesize = result.size();
601  hltJsnFileAdler32 = cms::Adler32(result.c_str(),result.size());
602  }
603  StringJ hltJsnInputFiles;
604  hltJsnInputFiles.update("");
605 
606  //L1 .jsndata file
607  Json::Value l1JsnData;
608  l1JsnData[DataPoint::SOURCE] = sourceHost;
609  l1JsnData[DataPoint::DEFINITION] = iSummary->stL1Jsd;
610 
611  l1JsnData[DataPoint::DATA].append(iSummary->processed->toJsonValue());
612  l1JsnData[DataPoint::DATA].append(iSummary->L1AlgoAccept ->toJsonValue());
613  l1JsnData[DataPoint::DATA].append(iSummary->L1TechAccept ->toJsonValue());
614  l1JsnData[DataPoint::DATA].append(iSummary->L1AlgoAcceptPhysics ->toJsonValue());
615  l1JsnData[DataPoint::DATA].append(iSummary->L1TechAcceptPhysics ->toJsonValue());
617  l1JsnData[DataPoint::DATA].append(iSummary->L1TechAcceptCalibration->toJsonValue());
618  l1JsnData[DataPoint::DATA].append(iSummary->L1AlgoAcceptRandom ->toJsonValue());
619  l1JsnData[DataPoint::DATA].append(iSummary->L1TechAcceptRandom ->toJsonValue());
620  l1JsnData[DataPoint::DATA].append(iSummary->L1Global ->toJsonValue());
621  result = writer.write(l1JsnData);
622 
623  std::stringstream ssL1JsnData;
624  ssL1JsnData << "run" << std::setfill('0') << std::setw(6) << iRun << "_ls" << std::setfill('0') << std::setw(4) << iLs;
625  ssL1JsnData << "_streamL1Rates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsndata";
626 
627  if (iSummary->processed->value().at(0)!=0) {
628  std::ofstream outL1JsnData( monPath + "/" + ssL1JsnData.str() );
629  outL1JsnData<<result;
630  outL1JsnData.close();
631  }
632 
633  //L1 jsn entries
634  StringJ l1JsnFilelist;
635  IntJ l1JsnFilesize = 0;
636  unsigned int l1JsnFileAdler32 = 1;
637  if (iSummary->processed->value().at(0)!=0) {
638  l1JsnFilelist.update(ssL1JsnData.str());
639  l1JsnFilesize = result.size();
640  l1JsnFileAdler32 = cms::Adler32(result.c_str(),result.size());
641  }
642  StringJ l1JsnInputFiles;
643  l1JsnInputFiles.update("");
644 
645 
646  //Create special DAQ JSON file for L1 and HLT rates pseudo-streams
647  //Only three variables are different between the files:
648  //the file list, the file size and the Adler32 value
649  IntJ daqJsnProcessed = iSummary->processed->value().at(0);
650  IntJ daqJsnAccepted = daqJsnProcessed;
651  IntJ daqJsnErrorEvents = 0;
652  IntJ daqJsnRetCodeMask = 0;
653  IntJ daqJsnHLTErrorEvents = 0;
654 
655  //write out HLT metadata jsn
656  Json::Value hltDaqJsn;
657  hltDaqJsn[DataPoint::SOURCE] = sourceHost;
658  hltDaqJsn[DataPoint::DEFINITION] = sOutDef.str();
659 
660  hltDaqJsn[DataPoint::DATA].append((unsigned int)daqJsnProcessed.value());
661  hltDaqJsn[DataPoint::DATA].append((unsigned int)daqJsnAccepted.value());
662  hltDaqJsn[DataPoint::DATA].append((unsigned int)daqJsnErrorEvents.value());
663  hltDaqJsn[DataPoint::DATA].append((unsigned int)daqJsnRetCodeMask.value());
664  hltDaqJsn[DataPoint::DATA].append(hltJsnFilelist.value());
665  hltDaqJsn[DataPoint::DATA].append((unsigned int)hltJsnFilesize.value());
666  hltDaqJsn[DataPoint::DATA].append(hltJsnInputFiles.value());
667  hltDaqJsn[DataPoint::DATA].append(hltJsnFileAdler32);
668  hltDaqJsn[DataPoint::DATA].append(iSummary->streamHLTDestination);
669  hltDaqJsn[DataPoint::DATA].append((unsigned int)daqJsnHLTErrorEvents.value());
670 
671  result = writer.write(hltDaqJsn);
672 
673  std::stringstream ssHltDaqJsn;
674  ssHltDaqJsn << "run" << std::setfill('0') << std::setw(6) << iRun << "_ls" << std::setfill('0') << std::setw(4) << iLs;
675  ssHltDaqJsn << "_streamHLTRates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsn";
676 
677  std::ofstream outHltDaqJsn( monPath + ssHltDaqJsn.str() );
678  outHltDaqJsn<<result;
679  outHltDaqJsn.close();
680 
681  //write out L1 metadata jsn
682  Json::Value l1DaqJsn;
683  l1DaqJsn[DataPoint::SOURCE] = sourceHost;
684  l1DaqJsn[DataPoint::DEFINITION] = sOutDef.str();
685 
686  l1DaqJsn[DataPoint::DATA].append((unsigned int)daqJsnProcessed.value());
687  l1DaqJsn[DataPoint::DATA].append((unsigned int)daqJsnAccepted.value());
688  l1DaqJsn[DataPoint::DATA].append((unsigned int)daqJsnErrorEvents.value());
689  l1DaqJsn[DataPoint::DATA].append((unsigned int)daqJsnRetCodeMask.value());
690  l1DaqJsn[DataPoint::DATA].append(l1JsnFilelist.value());
691  l1DaqJsn[DataPoint::DATA].append((unsigned int)l1JsnFilesize.value());
692  l1DaqJsn[DataPoint::DATA].append(l1JsnInputFiles.value());
693  l1DaqJsn[DataPoint::DATA].append(l1JsnFileAdler32);
694  l1DaqJsn[DataPoint::DATA].append(iSummary->streamL1Destination);
695  l1DaqJsn[DataPoint::DATA].append((unsigned int)daqJsnHLTErrorEvents.value());
696 
697  result = writer.write(l1DaqJsn);
698 
699  std::stringstream ssL1DaqJsn;
700  ssL1DaqJsn << "run" << std::setfill('0') << std::setw(6) << iRun << "_ls" << std::setfill('0') << std::setw(4) << iLs;
701  ssL1DaqJsn << "_streamL1Rates_pid" << std::setfill('0') << std::setw(5) << getpid() << ".jsn";
702 
703  std::ofstream outL1DaqJsn( monPath + ssL1DaqJsn.str() );
704  outL1DaqJsn<<result;
705  outL1DaqJsn.close();
706  }
707 
708  //Delete the individual HistoJ pointers
709  delete iSummary->processed;
710 
711  delete iSummary->hltWasRun;
712  delete iSummary->hltL1s ;
713  delete iSummary->hltPre ;
714  delete iSummary->hltAccept;
715  delete iSummary->hltReject;
716  delete iSummary->hltErrors;
717 
718  delete iSummary->hltDatasets;
719 
720  delete iSummary->L1AlgoAccept;
721  delete iSummary->L1TechAccept;
722  delete iSummary->L1AlgoAcceptPhysics;
723  delete iSummary->L1TechAcceptPhysics;
724  delete iSummary->L1AlgoAcceptCalibration;
725  delete iSummary->L1TechAcceptCalibration;
726  delete iSummary->L1AlgoAcceptRandom;
727  delete iSummary->L1TechAcceptRandom;
728  delete iSummary->L1Global;
729 
730  //Note: Do not delete the iSummary pointer. The framework does something with it later on
731  // and deleting it results in a segmentation fault.
732 
733 }//End globalEndLuminosityBlockSummary function
734 
735 
736 void
738 
739  std::ofstream outfile( path );
740  outfile << "{" << std::endl;
741  outfile << " \"data\" : [" << std::endl;
742  outfile << " {" ;
743  outfile << " \"name\" : \"Processed\"," ; //***
744  outfile << " \"type\" : \"integer\"," ;
745  outfile << " \"operation\" : \"histo\"}," << std::endl;
746 
747  outfile << " {" ;
748  outfile << " \"name\" : \"Path-WasRun\"," ;
749  outfile << " \"type\" : \"integer\"," ;
750  outfile << " \"operation\" : \"histo\"}," << std::endl;
751 
752  outfile << " {" ;
753  outfile << " \"name\" : \"Path-AfterL1Seed\"," ;
754  outfile << " \"type\" : \"integer\"," ;
755  outfile << " \"operation\" : \"histo\"}," << std::endl;
756 
757  outfile << " {" ;
758  outfile << " \"name\" : \"Path-AfterPrescale\"," ;
759  outfile << " \"type\" : \"integer\"," ;
760  outfile << " \"operation\" : \"histo\"}," << std::endl;
761 
762  outfile << " {" ;
763  outfile << " \"name\" : \"Path-Accepted\"," ;
764  outfile << " \"type\" : \"integer\"," ;
765  outfile << " \"operation\" : \"histo\"}," << std::endl;
766 
767  outfile << " {" ;
768  outfile << " \"name\" : \"Path-Rejected\"," ;
769  outfile << " \"type\" : \"integer\"," ;
770  outfile << " \"operation\" : \"histo\"}," << std::endl;
771 
772  outfile << " {" ;
773  outfile << " \"name\" : \"Path-Errors\"," ;
774  outfile << " \"type\" : \"integer\"," ;
775  outfile << " \"operation\" : \"histo\"}," << std::endl;
776 
777  outfile << " {" ;
778  outfile << " \"name\" : \"Dataset-Accepted\"," ;
779  outfile << " \"type\" : \"integer\"," ;
780  outfile << " \"operation\" : \"histo\"}," << std::endl;
781 
782  outfile << " {" ;
783  outfile << " \"name\" : \"Prescale-Index\"," ;
784  outfile << " \"type\" : \"integer\"," ;
785  outfile << " \"operation\" : \"sample\"}" << std::endl;
786 
787  outfile << " ]" << std::endl;
788  outfile << "}" << std::endl;
789 
790  outfile.close();
791 }//End writeDefJson function
792 
793 
794 void
796 
797  std::ofstream outfile( path );
798  outfile << "{" << std::endl;
799  outfile << " \"data\" : [" << std::endl;
800  outfile << " {" ;
801  outfile << " \"name\" : \"Processed\"," ;
802  outfile << " \"type\" : \"integer\"," ;
803  outfile << " \"operation\" : \"histo\"}," << std::endl;
804 
805  outfile << " {" ;
806  outfile << " \"name\" : \"L1-AlgoAccepted\"," ;
807  outfile << " \"type\" : \"integer\"," ;
808  outfile << " \"operation\" : \"histo\"}," << std::endl;
809 
810  outfile << " {" ;
811  outfile << " \"name\" : \"L1-TechAccepted\"," ;
812  outfile << " \"type\" : \"integer\"," ;
813  outfile << " \"operation\" : \"histo\"}," << std::endl;
814 
815  outfile << " {" ;
816  outfile << " \"name\" : \"L1-AlgoAccepted-Physics\"," ;
817  outfile << " \"type\" : \"integer\"," ;
818  outfile << " \"operation\" : \"histo\"}," << std::endl;
819 
820  outfile << " {" ;
821  outfile << " \"name\" : \"L1-TechAccepted-Physics\"," ;
822  outfile << " \"type\" : \"integer\"," ;
823  outfile << " \"operation\" : \"histo\"}," << std::endl;
824 
825  outfile << " {" ;
826  outfile << " \"name\" : \"L1-AlgoAccepted-Calibration\"," ;
827  outfile << " \"type\" : \"integer\"," ;
828  outfile << " \"operation\" : \"histo\"}," << std::endl;
829 
830  outfile << " {" ;
831  outfile << " \"name\" : \"L1-TechAccepted-Calibration\"," ;
832  outfile << " \"type\" : \"integer\"," ;
833  outfile << " \"operation\" : \"histo\"}," << std::endl;
834 
835  outfile << " {" ;
836  outfile << " \"name\" : \"L1-AlgoAccepted-Random\"," ;
837  outfile << " \"type\" : \"integer\"," ;
838  outfile << " \"operation\" : \"histo\"}," << std::endl;
839 
840  outfile << " {" ;
841  outfile << " \"name\" : \"L1-TechAccepted-Random\"," ;
842  outfile << " \"type\" : \"integer\"," ;
843  outfile << " \"operation\" : \"histo\"}," << std::endl;
844 
845  outfile << " {" ;
846  outfile << " \"name\" : \"L1-Global\"," ;
847  outfile << " \"type\" : \"integer\"," ;
848  outfile << " \"operation\" : \"histo\"}" << std::endl;
849 
850  outfile << " ]" << std::endl;
851  outfile << "}" << std::endl;
852 
853  outfile.close();
854 }//End writeL1DefJson function
855 
#define LogDebug(id)
TriggerJSONMonitoring(const edm::ParameterSet &)
int i
Definition: DBlmapReader.cc:9
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
jsoncollector::HistoJ< unsigned int > * hltAccept
edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > m_l1t_results
const std::string moduleType(const std::string &module) const
C++ class name of module.
RunNumber_t run() const
Definition: RunBase.h:40
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
std::vector< unsigned int > hltDatasets_
static std::shared_ptr< hltJson::lumiVars > globalBeginLuminosityBlockSummary(edm::LuminosityBlock const &, edm::EventSetup const &, LuminosityBlockContext const *)
std::vector< unsigned int > L1AlgoAccept_
const std::vector< std::string > & triggerNames() const
names of trigger paths
std::vector< unsigned int > L1AlgoAcceptPhysics_
bool shouldWriteFiles(unsigned int lumi, unsigned int *proc=0)
Value & append(const Value &value)
Append value to array at the end.
void update(std::string const &newStr)
std::vector< unsigned int > hltErrors_
static void globalEndLuminosityBlockSummary(edm::LuminosityBlock const &, edm::EventSetup const &, LuminosityBlockContext const *, hltJson::lumiVars *)
jsoncollector::HistoJ< unsigned int > * L1Global
std::vector< unsigned int > L1TechAcceptRandom_
void beginRun(edm::Run const &, edm::EventSetup const &)
Represents a JSON value.
Definition: value.h:111
std::vector< unsigned int > hltL1s_
std::vector< unsigned int > L1TechAcceptCalibration_
const L1GtTriggerMenu * m_l1GtMenu
std::vector< unsigned int > L1AlgoAcceptRandom_
jsoncollector::HistoJ< unsigned int > * hltWasRun
virtual Json::Value toJsonValue() const
std::string encode() const
Definition: InputTag.cc:164
jsoncollector::HistoJ< unsigned int > * L1AlgoAcceptCalibration
std::vector< std::vector< unsigned int > > hltIndex_
LuminosityBlockNumber_t luminosityBlock() const
jsoncollector::HistoJ< unsigned int > * L1TechAcceptPhysics
std::vector< T > & value()
AlgorithmMap::const_iterator CItAlgo
iterators through map containing the algorithms
triggerResultsToken_(consumes< edm::TriggerResults >(edm::InputTag("TriggerResults")))
std::vector< unsigned int > hltAccept_
LuminosityBlockNumber_t luminosityBlock() const
unsigned int triggerIndex(const std::string &triggerName) const
slot position of trigger path in trigger table (0 to size-1)
tuple d
Definition: ztail.py:151
std::string streamL1Destination
int iEvent
Definition: GenABIO.cc:230
jsoncollector::HistoJ< unsigned int > * hltDatasets
const std::vector< unsigned int > & gtTriggerMask() const
get the trigger mask
void endLuminosityBlockSummary(edm::LuminosityBlock const &, edm::EventSetup const &, hltJson::lumiVars *) const
std::vector< std::string > hltNames_
HLTConfigProvider hltConfig_
tuple result
Definition: query.py:137
const L1GtTriggerMask * m_l1tTechMask
std::vector< std::string > datasetNames_
int j
Definition: DBlmapReader.cc:9
RunNumber_t run() const
std::vector< std::string > L1GlobalType_
jsoncollector::HistoJ< unsigned int > * L1AlgoAccept
jsoncollector::HistoJ< unsigned int > * L1AlgoAcceptPhysics
std::vector< unsigned int > hltReject_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
jsoncollector::HistoJ< unsigned int > * L1TechAcceptCalibration
std::string streamHLTDestination
virtual std::string write(const Value &root)
Serialize a Value in JSON format.
std::vector< int > posL1s_
edm::EDGetTokenT< edm::TriggerResults > triggerResultsToken_
int prescaleSet(const edm::Event &iEvent, const edm::EventSetup &iSetup)
std::vector< std::string > L1AlgoNames_
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
void Adler32(char const *data, size_t len, uint32_t &a, uint32_t &b)
EventAuxiliary const & eventAuxiliary() const
Definition: Event.h:77
jsoncollector::HistoJ< unsigned int > * hltPre
std::vector< unsigned int > L1TechAccept_
void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
const L1GtTriggerMask * m_l1tAlgoMask
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void writeDefJson(std::string path)
HLTConfigProvider const & hltConfigProvider() const
std::string const & process() const
Definition: InputTag.h:40
jsoncollector::HistoJ< unsigned int > * L1AlgoAcceptRandom
std::vector< unsigned int > L1Global_
const std::vector< std::vector< std::string > > & datasetContents() const
names of trigger paths for all datasets
std::vector< unsigned int > hltWasRun_
std::vector< std::vector< std::string > > datasetContents_
< trclass="colgroup">< tdclass="colgroup"colspan=5 > DT local reconstruction</td ></tr >< tr >< td >< ahref="classDTRecHit1DPair.html"> DTRecHit1DPair</a ></td >< td >< ahref="DataFormats_DTRecHit.html"> edm::RangeMap & lt
std::vector< int > posPre_
edm::EventAuxiliary::ExperimentType experimentType() const
Definition: EventBase.h:64
const AlgorithmMap & gtAlgorithmMap() const
get / set the algorithm map (by name)
jsoncollector::HistoJ< unsigned int > * hltErrors
jsoncollector::HistoJ< unsigned int > * processed
std::vector< unsigned int > L1TechAcceptPhysics_
std::vector< std::string > L1TechNames_
HLTPrescaleProvider hltPrescaleProvider_
std::vector< unsigned int > L1AlgoAcceptCalibration_
const AlgorithmMap & gtTechnicalTriggerMap() const
get / set the technical trigger map
void analyze(edm::Event const &, edm::EventSetup const &)
Writes a Value in JSON format in a human friendly way.
Definition: writer.h:65
void writeL1DefJson(std::string path)
jsoncollector::HistoJ< unsigned int > * L1TechAccept
tuple size
Write out results.
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
jsoncollector::HistoJ< unsigned int > * hltL1s
jsoncollector::HistoJ< unsigned int > * hltReject
Definition: Run.h:43
const std::vector< std::string > & datasetNames() const
std::vector< unsigned int > hltPre_
string SOURCE
Definition: runonSM.py:23
jsoncollector::HistoJ< unsigned int > * L1TechAcceptRandom
array value (ordered list)
Definition: value.h:31