1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
|
/*
* \file L1TSync.cc
*
* \author J. Pela, P. Musella
*
*/
//
#include "DQM/L1TMonitor/interface/L1TSync.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DataFormats/Scalers/interface/LumiScalers.h"
#include "DataFormats/Scalers/interface/Level1TriggerRates.h"
#include "DataFormats/Scalers/interface/Level1TriggerScalers.h"
#include "DataFormats/Common/interface/ConditionsInEdm.h" // Parameters associated to Run, LS and Event
#include "CondFormats/L1TObjects/interface/L1GtTriggerMenuFwd.h"
#include "CondFormats/L1TObjects/interface/L1GtTriggerMenu.h"
#include "CondFormats/L1TObjects/interface/L1GtPrescaleFactors.h"
#include "CondFormats/DataRecord/interface/L1GtTriggerMenuRcd.h"
#include "CondFormats/DataRecord/interface/L1GtPrescaleFactorsAlgoTrigRcd.h"
#include "CondFormats/L1TObjects/interface/L1GtMuonTemplate.h"
// Luminosity Information
//#include "DataFormats/Luminosity/interface/LumiDetails.h"
//#include "DataFormats/Luminosity/interface/LumiSummary.h"
#include "TList.h"
using namespace edm;
using namespace std;
//-------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------
L1TSync::L1TSync(const ParameterSet& pset)
: m_menuToken(esConsumes<edm::Transition::BeginRun>()),
m_helperTokens(L1TMenuHelper::consumes<edm::Transition::BeginRun>(consumesCollector())),
m_l1GtUtils(pset, consumesCollector(), false, *this) {
m_parameters = pset;
// Mapping parameter input variables
m_l1GtDataDaqInputTag = consumes<L1GlobalTriggerReadoutRecord>(pset.getParameter<InputTag>("inputTagL1GtDataDaq"));
m_l1GtEvmSource = consumes<L1GlobalTriggerEvmReadoutRecord>(pset.getParameter<InputTag>("inputTagtEvmSource"));
m_verbose = pset.getUntrackedParameter<bool>("verbose", false);
m_refPrescaleSet = pset.getParameter<int>("refPrescaleSet");
// Getting which categories to monitor
ParameterSet Categories = pset.getParameter<ParameterSet>("Categories");
bool forceGlobalParameters = Categories.getParameter<bool>("forceGlobalParameters");
bool doGlobalAutoSelection = Categories.getParameter<bool>("doGlobalAutoSelection");
ParameterSet CatBPTX = Categories.getParameter<ParameterSet>("BPTX");
ParameterSet CatMu = Categories.getParameter<ParameterSet>("Mu");
ParameterSet CatEG = Categories.getParameter<ParameterSet>("EG");
ParameterSet CatIsoEG = Categories.getParameter<ParameterSet>("IsoEG");
ParameterSet CatJet = Categories.getParameter<ParameterSet>("Jet");
ParameterSet CatCenJet = Categories.getParameter<ParameterSet>("CenJet");
ParameterSet CatForJet = Categories.getParameter<ParameterSet>("ForJet");
ParameterSet CatTauJet = Categories.getParameter<ParameterSet>("TauJet");
ParameterSet CatETM = Categories.getParameter<ParameterSet>("ETT");
ParameterSet CatETT = Categories.getParameter<ParameterSet>("ETM");
ParameterSet CatHTT = Categories.getParameter<ParameterSet>("HTT");
ParameterSet CatHTM = Categories.getParameter<ParameterSet>("HTM");
// --> Setting parameters related to which algos to monitor
// If global parameters are forced they take precedence over algo-by-algo parameters
if (forceGlobalParameters) {
// If global automatic selection if enable all categories set to be monitored will have
// their algos auto selected (the lowest prescale algo will be selected)
if (doGlobalAutoSelection) {
if (CatMu.getParameter<bool>("monitor")) {
m_algoAutoSelect["Mu"] = true;
} else {
m_algoAutoSelect["Mu"] = false;
}
if (CatEG.getParameter<bool>("monitor")) {
m_algoAutoSelect["EG"] = true;
} else {
m_algoAutoSelect["EG"] = false;
}
if (CatIsoEG.getParameter<bool>("monitor")) {
m_algoAutoSelect["IsoEG"] = true;
} else {
m_algoAutoSelect["IsoEG"] = false;
}
if (CatJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["Jet"] = true;
} else {
m_algoAutoSelect["Jet"] = false;
}
if (CatCenJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["CenJet"] = true;
} else {
m_algoAutoSelect["CenJet"] = false;
}
if (CatForJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["ForJet"] = true;
} else {
m_algoAutoSelect["ForJet"] = false;
}
if (CatTauJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["TauJet"] = true;
} else {
m_algoAutoSelect["TauJet"] = false;
}
if (CatETM.getParameter<bool>("monitor")) {
m_algoAutoSelect["ETM"] = true;
} else {
m_algoAutoSelect["ETM"] = false;
}
if (CatETT.getParameter<bool>("monitor")) {
m_algoAutoSelect["ETT"] = true;
} else {
m_algoAutoSelect["ETT"] = false;
}
if (CatHTM.getParameter<bool>("monitor")) {
m_algoAutoSelect["HTM"] = true;
} else {
m_algoAutoSelect["HTM"] = false;
}
if (CatHTT.getParameter<bool>("monitor")) {
m_algoAutoSelect["HTT"] = true;
} else {
m_algoAutoSelect["HTT"] = false;
}
// If global non-automatic selection is enable all categories set to be monitored will use
// user defined algos
} else {
m_algoAutoSelect["Mu"] = false;
m_algoAutoSelect["EG"] = false;
m_algoAutoSelect["IsoEG"] = false;
m_algoAutoSelect["Jet"] = false;
m_algoAutoSelect["CenJet"] = false;
m_algoAutoSelect["ForJet"] = false;
m_algoAutoSelect["TauJet"] = false;
m_algoAutoSelect["ETM"] = false;
m_algoAutoSelect["ETT"] = false;
m_algoAutoSelect["HTM"] = false;
m_algoAutoSelect["HTT"] = false;
if (CatMu.getParameter<bool>("monitor")) {
m_selectedTriggers["Mu"] = CatMu.getParameter<string>("algo");
}
if (CatEG.getParameter<bool>("monitor")) {
m_selectedTriggers["EG"] = CatEG.getParameter<string>("algo");
}
if (CatIsoEG.getParameter<bool>("monitor")) {
m_selectedTriggers["IsoEG"] = CatIsoEG.getParameter<string>("algo");
}
if (CatJet.getParameter<bool>("monitor")) {
m_selectedTriggers["Jet"] = CatJet.getParameter<string>("algo");
}
if (CatCenJet.getParameter<bool>("monitor")) {
m_selectedTriggers["CenJet"] = CatCenJet.getParameter<string>("algo");
}
if (CatForJet.getParameter<bool>("monitor")) {
m_selectedTriggers["CatForJet"] = CatForJet.getParameter<string>("algo");
}
if (CatTauJet.getParameter<bool>("monitor")) {
m_selectedTriggers["TauJet"] = CatTauJet.getParameter<string>("algo");
}
if (CatETM.getParameter<bool>("monitor")) {
m_selectedTriggers["ETM"] = CatETM.getParameter<string>("algo");
}
if (CatETT.getParameter<bool>("monitor")) {
m_selectedTriggers["ETT"] = CatETT.getParameter<string>("algo");
}
if (CatHTM.getParameter<bool>("monitor")) {
m_selectedTriggers["HTM"] = CatHTM.getParameter<string>("algo");
}
if (CatHTT.getParameter<bool>("monitor")) {
m_selectedTriggers["HTT"] = CatHTT.getParameter<string>("algo");
}
}
// If we are using algo-by-algo parametes we get them and set what is needed
} else {
if (CatBPTX.getParameter<bool>("monitor")) {
m_selectedTriggers["BPTX"] = CatBPTX.getParameter<string>("algo");
}
if (CatMu.getParameter<bool>("monitor")) {
m_algoAutoSelect["Mu"] = CatMu.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["Mu"]) {
m_selectedTriggers["Mu"] = CatMu.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["Mu"] = false;
}
if (CatEG.getParameter<bool>("monitor")) {
m_algoAutoSelect["EG"] = CatEG.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["EG"]) {
m_selectedTriggers["EG"] = CatEG.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["EG"] = false;
}
if (CatIsoEG.getParameter<bool>("monitor")) {
m_algoAutoSelect["IsoEG"] = CatIsoEG.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["IsoEG"]) {
m_selectedTriggers["IsoEG"] = CatIsoEG.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["IsoEG"] = false;
}
if (CatJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["Jet"] = CatJet.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["Jet"]) {
m_selectedTriggers["Jet"] = CatJet.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["Jet"] = false;
}
if (CatCenJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["CenJet"] = CatCenJet.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["CenJet"]) {
m_selectedTriggers["CenJet"] = CatCenJet.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["CenJet"] = false;
}
if (CatForJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["CatForJet"] = CatForJet.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["CatForJet"]) {
m_selectedTriggers["CatForJet"] = CatForJet.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["CatForJet"] = false;
}
if (CatTauJet.getParameter<bool>("monitor")) {
m_algoAutoSelect["TauJet"] = CatTauJet.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["TauJet"]) {
m_selectedTriggers["TauJet"] = CatTauJet.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["TauJet"] = false;
}
if (CatETM.getParameter<bool>("monitor")) {
m_algoAutoSelect["ETM"] = CatETM.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["ETM"]) {
m_selectedTriggers["ETM"] = CatETM.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["ETM"] = false;
}
if (CatETT.getParameter<bool>("monitor")) {
m_algoAutoSelect["ETT"] = CatETT.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["ETT"]) {
m_selectedTriggers["ETT"] = CatETT.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["ETT"] = false;
}
if (CatHTM.getParameter<bool>("monitor")) {
m_algoAutoSelect["HTM"] = CatHTM.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["HTM"]) {
m_selectedTriggers["HTM"] = CatHTM.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["HTM"] = false;
}
if (CatHTT.getParameter<bool>("monitor")) {
m_algoAutoSelect["HTT"] = CatHTT.getParameter<bool>("doAutoSelection");
if (!m_algoAutoSelect["HTT"]) {
m_selectedTriggers["HTT"] = CatHTT.getParameter<string>("algo");
}
} else {
m_algoAutoSelect["HTT"] = false;
}
}
m_outputFile = pset.getUntrackedParameter<std::string>("outputFile", "");
if (!m_outputFile.empty()) {
std::cout << "L1T Monitoring histograms will be saved to " << m_outputFile.c_str() << std::endl;
}
bool disable = pset.getUntrackedParameter<bool>("disableROOToutput", false);
if (disable) {
m_outputFile = "";
}
}
//-------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------
L1TSync::~L1TSync() {}
//-------------------------------------------------------------------------------------
/// BeginRun
void L1TSync::dqmBeginRun(edm::Run const&, edm::EventSetup const&) {
//
if (m_verbose) {
cout << "[L1TSync] Called beginRun." << endl;
}
}
//-------------------------------------------------------------------------------------
void L1TSync::bookHistograms(DQMStore::IBooker& ibooker, const edm::Run&, const edm::EventSetup& iSetup) {
// Initializing variables
int maxNbins = 2501;
// Reseting run dependent variables
m_lhcFill = 0;
m_currentLS = 0;
m_certFirstLS.clear();
m_certLastLS.clear();
// Getting Trigger menu from GT
const L1GtTriggerMenu& menu = iSetup.getData(m_menuToken);
// Filling Alias-Bit Map
for (const auto& algo : menu.gtAlgorithmAliasMap()) {
m_algoBit[algo.second.algoAlias()] = algo.second.algoBitNumber();
}
// Getting fill number for this run
//Handle<ConditionsInRunBlock> runConditions;
//iRun.getByType(runConditions);
//int lhcFillNumber = runConditions->lhcFillNumber;
//ESHandle<L1GtPrescaleFactors> l1GtPfAlgo;
//iSetup.get<L1GtPrescaleFactorsAlgoTrigRcd>().get(l1GtPfAlgo);
//const L1GtPrescaleFactors* m_l1GtPfAlgo = l1GtPfAlgo.product();
L1TMenuHelper myMenuHelper = L1TMenuHelper(iSetup, m_helperTokens);
m_selectedTriggers = myMenuHelper.testAlgos(m_selectedTriggers);
m_l1GtUtils.retrieveL1EventSetup(iSetup);
map<string, string> tAutoSelTrig = myMenuHelper.getLUSOTrigger(m_algoAutoSelect, m_refPrescaleSet, m_l1GtUtils);
m_selectedTriggers.insert(tAutoSelTrig.begin(), tAutoSelTrig.end());
// Initializing DQM Monitor Elements
ibooker.setCurrentFolder("L1T/L1TSync");
m_ErrorMonitor = ibooker.book1D("ErrorMonitor", "ErrorMonitor", 7, 0, 7);
m_ErrorMonitor->setBinLabel(UNKNOWN, "UNKNOWN");
m_ErrorMonitor->setBinLabel(WARNING_DB_CONN_FAILED, "WARNING_DB_CONN_FAILED"); // Errors from L1TOMDSHelper
m_ErrorMonitor->setBinLabel(WARNING_DB_QUERY_FAILED, "WARNING_DB_QUERY_FAILED"); // Errors from L1TOMDSHelper
m_ErrorMonitor->setBinLabel(WARNING_DB_INCORRECT_NBUNCHES,
"WARNING_DB_INCORRECT_NBUNCHES"); // Errors from L1TOMDSHelper
m_ErrorMonitor->setBinLabel(ERROR_UNABLE_RETRIVE_PRODUCT, "ERROR_UNABLE_RETRIVE_PRODUCT");
m_ErrorMonitor->setBinLabel(ERROR_TRIGGERALIAS_NOTVALID, "ERROR_TRIGGERALIAS_NOTVALID");
m_ErrorMonitor->setBinLabel(ERROR_LSBLOCK_NOTVALID, "ERROR_LSBLOCK_NOTVALID");
// Looping over selected triggers
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string tCategory = (*i).first;
string tTrigger = (*i).second;
// Initializing LS blocks for certification
m_certFirstLS[(*i).second] = 0;
m_certLastLS[(*i).second] = 0;
// Initializing DQM Monitors
ibooker.setCurrentFolder("L1T/L1TSync/AlgoVsBunchStructure/");
m_algoVsBunchStructure[tTrigger] = ibooker.book2D(
tCategory, "min #Delta(" + tTrigger + ",Bunch)", maxNbins, -0.5, double(maxNbins) - 0.5, 5, -2.5, 2.5);
m_algoVsBunchStructure[tTrigger]->setAxisTitle("Lumi Section", 1);
ibooker.setCurrentFolder("L1T/L1TSync/Certification/");
m_algoCertification[tTrigger] =
ibooker.book1D(tCategory, "fraction of in sync: " + tTrigger, maxNbins, -0.5, double(maxNbins) - 0.5);
m_algoCertification[tTrigger]->setAxisTitle("Lumi Section", 1);
}
}
//_____________________________________________________________________
// Function: beginLuminosityBlock
//_____________________________________________________________________
void L1TSync::beginLuminosityBlock(LuminosityBlock const& lumiBlock, EventSetup const& c) {
if (m_verbose) {
cout << "[L1TSync] Called beginLuminosityBlock." << endl;
}
// If this LS is not the next to last one force closing of current LS blocks
// for certification
if (m_currentLS != 0 && m_currentLS + 1 != lumiBlock.id().luminosityBlock()) {
if (m_verbose) {
cout << "[L1TSync] None consecutive: doFractionInSync() - LAST=" << m_currentLS
<< " CURRENT=" << lumiBlock.id().luminosityBlock() << endl;
}
doFractionInSync(true, false);
}
// Updating current LS number
m_currentLS = lumiBlock.id().luminosityBlock();
// If this is the fist valid LS update first LS for certification
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string theTriggerAlias = (*i).second;
if (m_certFirstLS[theTriggerAlias] == 0) {
m_certFirstLS[theTriggerAlias] = m_currentLS;
}
}
// A LS will be valid if:
// * BeamMode == STABLE for all events monitored
m_currentLSValid = true;
}
//_____________________________________________________________________
// Function: endLuminosityBlock
// * Fills LS by LS ration of trigger out of sync
//_____________________________________________________________________
void L1TSync::endLuminosityBlock(LuminosityBlock const& lumiBlock, EventSetup const& c) {
if (m_verbose) {
cout << "[L1TSync] Called endLuminosityBlock." << endl;
}
if (m_verbose) {
cout << "[L1TSync] m_currentLSValid : " << m_currentLSValid << endl;
cout << "[L1TSync] m_beamConfig.isValid(): " << m_beamConfig.isValid() << endl;
}
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
// Update last LS for certification
string theTriggerAlias = (*i).second;
m_certLastLS[theTriggerAlias] = m_currentLS;
}
// If this LS is valid (i.e. all events recorded with stable beams)
if (m_currentLSValid && m_beamConfig.isValid()) {
if (m_verbose) {
cout << "[L1TSync] Regular call: doFractionInSync()" << endl;
}
doFractionInSync(false, false);
}
// If this LS is not valid it can be in the following context:
// * We still hadn't stable beam (no need to certify nothing
// * Beam just got unstable or dumped (we may have a complete block of data do certify)
else {
//-> First we close all blocks from certFirstLS[] to m_currentLS-1
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string theTriggerAlias = (*i).second;
int fLs = m_certFirstLS[theTriggerAlias];
int lLS = m_certLastLS[theTriggerAlias];
// If this is a single LS block we do nothing (in this step)
if (fLs == lLS) {
m_certFirstLS[theTriggerAlias] = 0;
m_certLastLS[theTriggerAlias] = 0;
}
// If block is multi LS then we remove the current LS
else {
m_certLastLS[theTriggerAlias] = m_currentLS - 1;
}
}
doFractionInSync(true, false);
//-> Second we mark this single LS bad for all triggers
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string theTriggerAlias = (*i).second;
m_certFirstLS[theTriggerAlias] = m_currentLS;
m_certLastLS[theTriggerAlias] = m_currentLS;
}
doFractionInSync(true, true);
if (m_verbose) {
cout << "[L1TSync] Error call: doFractionInSync()" << endl;
}
}
}
//_____________________________________________________________________
void L1TSync::analyze(const Event& iEvent, const EventSetup& eventSetup) {
if (m_verbose) {
cout << "[L1TSync] Called analyze." << endl;
}
// We only start analyzing if current LS is still valid
if (m_currentLSValid) {
if (m_verbose) {
cout << "[L1TSync] -> m_currentLSValid=" << m_currentLSValid << endl;
}
// Retriving information from GT
edm::Handle<L1GlobalTriggerEvmReadoutRecord> gtEvmReadoutRecord;
iEvent.getByToken(m_l1GtEvmSource, gtEvmReadoutRecord);
// Determining beam mode and fill number
if (gtEvmReadoutRecord.isValid()) {
const L1GtfeExtWord& gtfeEvmWord = gtEvmReadoutRecord->gtfeWord();
unsigned int lhcBeamMode = gtfeEvmWord.beamMode(); // Updating beam mode
if (m_lhcFill == 0) {
m_lhcFill = gtfeEvmWord.lhcFillNumber(); // Getting LHC Fill Number from GT
getBeamConfOMDS(); // Getting Beam Configuration from OMDS
}
if (lhcBeamMode != STABLE) {
m_currentLSValid = false;
} // If Beams are not stable we invalidate this LS
} else {
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(ERROR_UNABLE_RETRIVE_PRODUCT);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(ERROR_UNABLE_RETRIVE_PRODUCT, eCount);
}
} else {
if (m_verbose) {
cout << "[L1TSync] -> m_currentLSValid=" << m_currentLSValid << endl;
}
}
//------------------------------------------------------------------------------
// If current LS is valid and Beam Configuration is Valid we analyse this event
//------------------------------------------------------------------------------
if (m_currentLSValid && m_beamConfig.isValid()) {
// Getting Final Decision Logic (FDL) Data from GT
edm::Handle<L1GlobalTriggerReadoutRecord> gtReadoutRecordData;
iEvent.getByToken(m_l1GtDataDaqInputTag, gtReadoutRecordData);
if (gtReadoutRecordData.isValid()) {
const vector<L1GtFdlWord>& gtFdlVectorData = gtReadoutRecordData->gtFdlVector();
// Running over selected triggers
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string tTrigger = (*i).second;
// Analyse only defined triggers
if (tTrigger != "Undefined" && tTrigger != "Undefined (Wrong Name)") {
bool beamSingleConfig = false; // Single beam configured for this event
bool firedAlgo = false; // Algo fired in this event
int eventBx = -1;
// Running over FDL results to get which bits fired
for (unsigned int a = 0; a < gtFdlVectorData.size(); a++) {
// Selecting the FDL that triggered
if (gtFdlVectorData[a].bxInEvent() == 0) {
eventBx = gtFdlVectorData[a].localBxNr();
if (gtFdlVectorData[a].gtDecisionWord()[m_algoBit[tTrigger]]) {
firedAlgo = true;
}
}
}
// Checking beam configuration
if (m_beamConfig.beam1[eventBx] && !m_beamConfig.beam2[eventBx]) {
beamSingleConfig = true;
}
if (!m_beamConfig.beam1[eventBx] && m_beamConfig.beam2[eventBx]) {
beamSingleConfig = true;
}
// Analyse only if this trigger fired in this event
// NOTE: Veto cases where a single beam is configured since
// for this cases this could be a real-satelite bunch collision
// -> Calculate the minimum bx diference between this event and a configured bx
if (firedAlgo && !beamSingleConfig) {
int DifAlgoVsBunchStructure = 9999; // Majorated
for (unsigned int a = 0; a < gtFdlVectorData.size(); a++) {
int bxFDL = gtFdlVectorData[a].localBxNr();
int bxInEvent = gtFdlVectorData[a].bxInEvent();
if (m_beamConfig.bxConfig(bxFDL) && abs(bxInEvent) < abs(DifAlgoVsBunchStructure)) {
DifAlgoVsBunchStructure = -1 * bxInEvent;
}
}
m_algoVsBunchStructure[tTrigger]->Fill(m_currentLS, DifAlgoVsBunchStructure);
}
}
}
} else {
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(ERROR_UNABLE_RETRIVE_PRODUCT);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(ERROR_UNABLE_RETRIVE_PRODUCT, eCount);
}
}
}
//_____________________________________________________________________
// Method: getBunchStructureOMDS
// Description: Attempt to retrive Beam Configuration from OMDS and if
// we find error handle it
//_____________________________________________________________________
void L1TSync::getBeamConfOMDS() {
//Getting connection paremeters
string oracleDB = m_parameters.getParameter<string>("oracleDB");
string pathCondDB = m_parameters.getParameter<string>("pathCondDB");
// Connecting to OMDS
L1TOMDSHelper myOMDSHelper = L1TOMDSHelper();
int conError;
myOMDSHelper.connect(oracleDB, pathCondDB, conError);
if (conError == L1TOMDSHelper::NO_ERROR) {
if (m_verbose) {
cout << "[L1TSync] Connected to DB with no error." << endl;
}
int errorRetrive;
m_beamConfig = myOMDSHelper.getBeamConfiguration(m_lhcFill, errorRetrive);
if (errorRetrive == L1TOMDSHelper::NO_ERROR) {
if (m_verbose) {
cout << "[L1TSync] Retriving LHC Bunch Structure: NO_ERROR" << endl;
cout << "[L1TSync] -> LHC Bunch Structure valid=" << m_beamConfig.m_valid
<< " nBunches=" << m_beamConfig.nCollidingBunches << endl;
}
} else if (errorRetrive == L1TOMDSHelper::WARNING_DB_CONN_FAILED) {
if (m_verbose) {
cout << "[L1TSync] Retriving LHC Bunch Structure: WARNING_DB_CONN_FAILED" << endl;
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(WARNING_DB_INCORRECT_NBUNCHES);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(WARNING_DB_INCORRECT_NBUNCHES, eCount);
} else if (errorRetrive == L1TOMDSHelper::WARNING_DB_QUERY_FAILED) {
if (m_verbose) {
cout << "[L1TSync] Retriving LHC Bunch Structure: WARNING_DB_QUERY_FAILED" << endl;
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(WARNING_DB_QUERY_FAILED);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(WARNING_DB_QUERY_FAILED, eCount);
} else {
if (m_verbose) {
cout << "[L1TSync] Retriving LHC Bunch Structure: UNKNOWN" << endl;
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(UNKNOWN);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(UNKNOWN, eCount);
}
} else {
if (conError == L1TOMDSHelper::WARNING_DB_CONN_FAILED) {
if (m_verbose) {
cout << "[L1TSync] Connect to DB: WARNING_DB_CONN_FAILED" << endl;
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(WARNING_DB_CONN_FAILED);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(WARNING_DB_CONN_FAILED, eCount);
} else {
if (m_verbose) {
cout << "[L1TSync] Connect to DB: UNKNOWN" << endl;
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(UNKNOWN);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(UNKNOWN, eCount);
}
}
}
//_____________________________________________________________________
// Method: doFractionInSync
// Description: Produce plot with the fraction of in sync trigger for
// LS blocks with enough statistics.
// Variable: iForce - Forces closing of all blocks and calculation of
// the respective fractions
// Variable: iBad - (Only works with iForce=true) Forces the current
// all current blocks to be marked as bad
//_____________________________________________________________________
void L1TSync::doFractionInSync(bool iForce, bool iBad) {
for (map<string, string>::const_iterator i = m_selectedTriggers.begin(); i != m_selectedTriggers.end(); i++) {
string theCategory = (*i).first;
string theTriggerAlias = (*i).second;
// Caching frequently used values from maps
unsigned int fLS = m_certFirstLS[theTriggerAlias];
unsigned int lLS = m_certLastLS[theTriggerAlias];
// Checking validity of the trigger alias and of the LS block
bool triggerAlias_isValid = theTriggerAlias != "Undefined" && theTriggerAlias != "Undefined (Wrong Name)";
bool lsBlock_exists = !(fLS == 0 && lLS == 0);
bool lsBlock_isValid = fLS <= lLS && fLS > 0 && lLS > 0;
if (triggerAlias_isValid && lsBlock_exists && lsBlock_isValid) {
// If we are forced to close blocks and mark them bad
if (iForce && iBad) {
certifyLSBlock(theTriggerAlias, fLS, lLS, -1);
m_certFirstLS[theTriggerAlias] = 0;
m_certLastLS[theTriggerAlias] = 0;
}
// If we are not forced to mark bad, we check if we have enough statistics
else {
// Getting events with 0 bx difference between BPTX and Algo for current LS
double CountSync = 0;
double CountAll = 0;
// Adding all entries for current LS block
for (unsigned int ls = fLS; ls <= lLS; ls++) {
CountSync += m_algoVsBunchStructure[theTriggerAlias]->getBinContent(ls + 1, 3);
for (int a = 1; a < 6; a++) {
CountAll += m_algoVsBunchStructure[theTriggerAlias]->getBinContent(ls + 1, a);
}
}
if (m_verbose) {
cout << "Alias = " << theTriggerAlias << " InitLS=" << fLS << " EndLS=" << lLS << " Events=" << CountAll;
}
if (iForce || CountAll >= m_parameters.getParameter<ParameterSet>("Categories")
.getParameter<ParameterSet>(theCategory)
.getParameter<int>("CertMinEvents")) {
if (m_verbose) {
cout << " <--------------- Enough Statistics: ";
}
// Calculating fraction of in time
double fraction = 0;
if (CountAll > 0) {
fraction = CountSync / CountAll;
}
// This is to avoid having an entry equal to zero and thus
// disregarded by the automatic tests
if (fraction == 0) {
fraction = 0.000001;
}
certifyLSBlock(theTriggerAlias, fLS, lLS, fraction);
m_certFirstLS[theTriggerAlias] = 0;
m_certLastLS[theTriggerAlias] = 0;
}
if (m_verbose) {
cout << endl;
}
}
}
// A problem was found. We report it and set a not physical vale (-1) to the certification plot
else {
// If trigger alias is not valid report it to m_ErrorMonitor
if (!triggerAlias_isValid) {
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(ERROR_TRIGGERALIAS_NOTVALID);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(ERROR_TRIGGERALIAS_NOTVALID, eCount);
certifyLSBlock(theTriggerAlias, fLS, lLS, -1);
m_certFirstLS[theTriggerAlias] = 0;
m_certLastLS[theTriggerAlias] = 0;
}
// If LS Block is not valid report it to m_ErrorMonitor
if (lsBlock_exists && !lsBlock_isValid) {
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(ERROR_LSBLOCK_NOTVALID);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(ERROR_LSBLOCK_NOTVALID, eCount);
certifyLSBlock(theTriggerAlias, fLS, lLS, -1);
m_certFirstLS[theTriggerAlias] = 0;
m_certLastLS[theTriggerAlias] = 0;
}
}
}
}
//_____________________________________________________________________
// Method: certifyLSBlock
// Description: Fill the trigger certification plot by blocks
// Variable: iTrigger - Which trigger to certify
// Variable: iInitLs - Blocks initial LS
// Variable: iEndLs - Blocks end LS
// Variable: iValue - Value to be used to fill
//_____________________________________________________________________
void L1TSync::certifyLSBlock(string iTrigger, int iInitLs, int iEndLs, float iValue) {
// Finding correct bins in the histogram for this block
int binInit = m_algoCertification[iTrigger]->getTH1()->FindBin(iInitLs);
int binEnd = m_algoCertification[iTrigger]->getTH1()->FindBin(iEndLs);
for (int ls = binInit; ls <= binEnd; ls++) {
m_algoCertification[iTrigger]->setBinContent(ls, iValue);
}
}
|