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
|
// -*- C++ -*-
//
// Package: DQM/SiStripMonitorHardware
// Class: SiStripFEDMonitorPlugin
//
/**\class SiStripFEDMonitorPlugin SiStripFEDMonitor.cc DQM/SiStripMonitorHardware/plugins/SiStripFEDMonitor.cc
Description: DQM source application to produce data integrety histograms for SiStrip data
*/
//
// Original Author: Nicholas Cripps
// Created: 2008/09/16
//
//Modified : Anne-Marie Magnan
// ---- 2009/04/21 : histogram management put in separate class
// struct helper to simplify arguments of functions
// ---- 2009/04/22 : add TkHistoMap with % of bad channels per module
// ---- 2009/04/27 : create FEDErrors class
#include <sstream>
#include <memory>
#include <list>
#include <algorithm>
#include <cassert>
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESWatcher.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "DataFormats/FEDRawData/interface/FEDRawDataCollection.h"
#include "DataFormats/FEDRawData/interface/FEDRawData.h"
#include "DataFormats/FEDRawData/interface/FEDNumbering.h"
#include "DataFormats/SiStripCommon/interface/SiStripFedKey.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "Geometry/Records/interface/TrackerTopologyRcd.h"
#include "CondFormats/DataRecord/interface/SiStripFedCablingRcd.h"
#include "CondFormats/SiStripObjects/interface/SiStripFedCabling.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DQM/SiStripMonitorHardware/interface/FEDHistograms.hh"
#include "DQM/SiStripMonitorHardware/interface/FEDErrors.hh"
#include "DPGAnalysis/SiStripTools/interface/EventWithHistory.h"
#include <DQMServices/Core/interface/DQMOneEDAnalyzer.h>
//
// Class declaration
//
//class SiStripFEDMonitorPlugin : public DQMOneLumiEDAnalyzer<> {
namespace sifedmon {
struct LumiErrors {
std::vector<unsigned int> nTotal;
std::vector<unsigned int> nErrors;
};
} // namespace sifedmon
class SiStripFEDMonitorPlugin : public DQMOneEDAnalyzer<edm::LuminosityBlockCache<sifedmon::LumiErrors> > {
public:
explicit SiStripFEDMonitorPlugin(const edm::ParameterSet&);
~SiStripFEDMonitorPlugin() override;
private:
void analyze(const edm::Event&, const edm::EventSetup&) override;
std::shared_ptr<sifedmon::LumiErrors> globalBeginLuminosityBlock(const edm::LuminosityBlock& lumi,
const edm::EventSetup& iSetup) const override;
void globalEndLuminosityBlock(const edm::LuminosityBlock& lumi, const edm::EventSetup& iSetup) override;
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
//update the cabling if necessary
void updateCabling(const SiStripFedCablingRcd& cablingRcd);
static bool pairComparison(const std::pair<unsigned int, unsigned int>& pair1,
const std::pair<unsigned int, unsigned int>& pair2);
void getMajority(const std::vector<std::pair<unsigned int, unsigned int> >& aFeMajVec,
unsigned int& aMajorityCounter,
std::vector<unsigned int>& afedIds);
//tag of FEDRawData collection
edm::InputTag rawDataTag_;
edm::EDGetTokenT<FEDRawDataCollection> rawDataToken_;
edm::EDGetTokenT<EventWithHistory> heToken_;
//histogram helper class
FEDHistograms fedHists_;
//folder name for histograms in DQMStore
std::string topFolderName_;
std::string folderName_;
//book detailed histograms even if they will be empty (for merging)
bool fillAllDetailedHistograms_;
//do histos vs time with time=event number. Default time = orbit number (s)
bool fillWithEvtNum_;
//print debug messages when problems are found: 1=error debug, 2=light debug, 3=full debug
unsigned int printDebug_;
//FED cabling
const SiStripFedCabling* cabling_;
edm::ESWatcher<SiStripFedCablingRcd> fedCablingWatcher_;
edm::ESGetToken<SiStripFedCabling, SiStripFedCablingRcd> fedCablingToken_;
edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_;
edm::ESGetToken<TkDetMap, TrackerTopologyRcd> tkDetMapToken_;
//add parameter to save computing time if TkHistoMap/Median/FeMajCheck are not enabled
bool doTkHistoMap_;
bool doMedHists_;
bool doFEMajorityCheck_;
unsigned int nEvt_;
//FED errors
//need class member for lumi histograms
FEDErrors fedErrors_;
unsigned int maxFedBufferSize_;
bool fullDebugMode_;
bool enableFEDerrLumi_;
MonitorElement* lumiErrfac_;
};
//
// Constructors and destructor
//
SiStripFEDMonitorPlugin::SiStripFEDMonitorPlugin(const edm::ParameterSet& iConfig)
: rawDataTag_(iConfig.getUntrackedParameter<edm::InputTag>("RawDataTag", edm::InputTag("source", ""))),
topFolderName_(iConfig.getUntrackedParameter<std::string>("TopFolderName", "SiStrip")),
fillAllDetailedHistograms_(iConfig.getUntrackedParameter<bool>("FillAllDetailedHistograms", false)),
fillWithEvtNum_(iConfig.getUntrackedParameter<bool>("FillWithEventNumber", false)),
printDebug_(iConfig.getUntrackedParameter<unsigned int>("PrintDebugMessages", 1)),
fedCablingWatcher_(this, &SiStripFEDMonitorPlugin::updateCabling),
fedCablingToken_(esConsumes<>()),
tTopoToken_(esConsumes<>()),
tkDetMapToken_(esConsumes<edm::Transition::BeginRun>()),
maxFedBufferSize_(0),
fullDebugMode_(iConfig.getUntrackedParameter<bool>("FullDebugMode", false)) {
std::string subFolderName = iConfig.getUntrackedParameter<std::string>("HistogramFolderName", "ReadoutView");
folderName_ = topFolderName_ + "/" + subFolderName;
rawDataToken_ = consumes<FEDRawDataCollection>(rawDataTag_);
heToken_ = consumes<EventWithHistory>(edm::InputTag("consecutiveHEs"));
if (iConfig.exists("ErrorFractionByLumiBlockHistogramConfig")) {
const edm::ParameterSet& ps =
iConfig.getUntrackedParameter<edm::ParameterSet>("ErrorFractionByLumiBlockHistogramConfig");
enableFEDerrLumi_ = (ps.exists("Enabled") ? ps.getUntrackedParameter<bool>("Enabled") : true);
}
//print config to debug log
std::ostringstream debugStream;
if (printDebug_ > 1) {
debugStream << "[SiStripFEDMonitorPlugin]Configuration for SiStripFEDMonitorPlugin: " << std::endl
<< "[SiStripFEDMonitorPlugin]\tRawDataTag: " << rawDataTag_ << std::endl
<< "[SiStripFEDMonitorPlugin]\tHistogramFolderName: " << folderName_ << std::endl
<< "[SiStripFEDMonitorPlugin]\tFillAllDetailedHistograms? "
<< (fillAllDetailedHistograms_ ? "yes" : "no") << std::endl
<< "[SiStripFEDMonitorPlugin]\tFillWithEventNumber?" << (fillWithEvtNum_ ? "yes" : "no") << std::endl
<< "[SiStripFEDMonitorPlugin]\tPrintDebugMessages? " << (printDebug_ ? "yes" : "no") << std::endl;
}
//don;t generate debug mesages if debug is disabled
std::ostringstream* pDebugStream = (printDebug_ > 1 ? &debugStream : nullptr);
fedHists_.initialise(iConfig, pDebugStream);
doTkHistoMap_ = fedHists_.tkHistoMapEnabled();
doMedHists_ = fedHists_.cmHistosEnabled();
doFEMajorityCheck_ = fedHists_.feMajHistosEnabled();
if (printDebug_) {
LogTrace("SiStripMonitorHardware") << debugStream.str();
}
nEvt_ = 0;
}
SiStripFEDMonitorPlugin::~SiStripFEDMonitorPlugin() {}
//
// Member functions
//
// ------------ method called to for each event ------------
void SiStripFEDMonitorPlugin::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
const auto tTopo = &iSetup.getData(tTopoToken_);
fedCablingWatcher_.check(iSetup);
//get raw data
edm::Handle<FEDRawDataCollection> rawDataCollectionHandle;
iEvent.getByToken(rawDataToken_, rawDataCollectionHandle);
const FEDRawDataCollection& rawDataCollection = *rawDataCollectionHandle;
fedErrors_.initialiseEvent();
//add the deltaBX value if the product exist
edm::Handle<EventWithHistory> he;
iEvent.getByToken(heToken_, he);
//get the fedErrors object for each LS
auto lumiErrors = luminosityBlockCache(iEvent.getLuminosityBlock().index());
auto& nToterr = lumiErrors->nTotal;
auto& nErr = lumiErrors->nErrors;
if (he.isValid() && !he.failedToGet()) {
fedErrors_.fillEventProperties(he->deltaBX());
}
//initialise map of fedId/bad channel number
std::map<unsigned int, std::pair<unsigned short, unsigned short> > badChannelFraction;
unsigned int lNFEDMonitoring = 0;
unsigned int lNFEDUnpacker = 0;
unsigned int lNChannelMonitoring = 0;
unsigned int lNChannelUnpacker = 0;
unsigned int lNTotBadFeds = 0;
unsigned int lNTotBadChannels = 0;
unsigned int lNTotBadActiveChannels = 0;
std::vector<std::vector<std::pair<unsigned int, unsigned int> > > lFeMajFrac;
const unsigned int nParts = 4;
if (doFEMajorityCheck_) {
lFeMajFrac.resize(nParts);
//max nFE per partition
lFeMajFrac[0].reserve(912);
lFeMajFrac[1].reserve(1080);
lFeMajFrac[2].reserve(768);
lFeMajFrac[3].reserve(760);
}
maxFedBufferSize_ = 0;
//loop over siStrip FED IDs
for (unsigned int fedId = FEDNumbering::MINSiStripFEDID; fedId <= FEDNumbering::MAXSiStripFEDID;
fedId++) { //loop over FED IDs
unsigned int lNBadChannels_perFEDID = 0;
const FEDRawData& fedData = rawDataCollection.FEDData(fedId);
//create an object to fill all errors
fedErrors_.initialiseFED(fedId, cabling_, tTopo);
double aLumiSection = iEvent.orbitNumber() / 262144.0;
//Do detailed check
//first check if data exists
bool lDataExist = fedErrors_.checkDataPresent(fedData);
if (!lDataExist) {
fedHists_.fillFEDHistograms(fedErrors_, 0, fullDebugMode_, aLumiSection, lNBadChannels_perFEDID);
continue;
}
//check for problems and fill detailed histograms
fedErrors_.fillFEDErrors(fedData,
fullDebugMode_,
printDebug_,
lNChannelMonitoring,
lNChannelUnpacker,
doMedHists_,
fedHists_.cmHistPointer(false),
fedHists_.cmHistPointer(true),
doFEMajorityCheck_,
lFeMajFrac);
//check filled in previous method.
bool lFailUnpackerFEDcheck = fedErrors_.failUnpackerFEDCheck();
fedErrors_.incrementFEDCounters();
unsigned int lSize = fedData.size();
if (lSize > maxFedBufferSize_) {
maxFedBufferSize_ = lSize;
}
//std::cout << " -- " << fedId << " " << lSize << std::endl;
//fedHists_.fillFEDHistograms(fedErrors_,lSize,fullDebugMode_);
bool lFailMonitoringFEDcheck = fedErrors_.failMonitoringFEDCheck();
if (lFailMonitoringFEDcheck)
lNTotBadFeds++;
//sanity check: if something changed in the unpacking code
//but wasn't propagated here
//print only the summary, and more info if printDebug>1
if (lFailMonitoringFEDcheck != lFailUnpackerFEDcheck) {
if (printDebug_ > 1) {
std::ostringstream debugStream;
debugStream << " --- WARNING: FED " << fedId << std::endl << " ------ Monitoring FED check ";
if (lFailMonitoringFEDcheck)
debugStream << "failed." << std::endl;
else
debugStream << "passed." << std::endl;
debugStream << " ------ Unpacker FED check ";
if (lFailUnpackerFEDcheck)
debugStream << "failed." << std::endl;
else
debugStream << "passed." << std::endl;
edm::LogError("SiStripMonitorHardware") << debugStream.str();
}
if (lFailMonitoringFEDcheck)
lNFEDMonitoring++;
else if (lFailUnpackerFEDcheck)
lNFEDUnpacker++;
}
//Fill TkHistoMap:
//add an entry for all channels (good = 0),
//so that tkHistoMap knows which channels should be there.
if (doTkHistoMap_ && !fedHists_.tkHistoMapPointer()) {
edm::LogWarning("SiStripMonitorHardware")
<< " -- Fedid " << fedId << ", TkHistoMap enabled but pointer is null." << std::endl;
}
fedErrors_.fillBadChannelList(doTkHistoMap_,
fedHists_.tkHistoMapPointer(),
fedHists_.getFedvsAPVpointer(),
lNTotBadChannels,
lNTotBadActiveChannels,
lNBadChannels_perFEDID,
nToterr,
nErr);
fedHists_.fillFEDHistograms(fedErrors_, lSize, fullDebugMode_, aLumiSection, lNBadChannels_perFEDID);
} //loop over FED IDs
if (doFEMajorityCheck_) {
for (unsigned int iP(0); iP < nParts; ++iP) {
//std::cout << " -- Partition " << iP << std::endl;
//std::cout << " --- Number of elements in vec = " << lFeMajFrac[iP].size() << std::endl;
if (lFeMajFrac[iP].empty())
continue;
std::sort(lFeMajFrac[iP].begin(), lFeMajFrac[iP].end(), SiStripFEDMonitorPlugin::pairComparison);
unsigned int lMajorityCounter = 0;
std::vector<unsigned int> lfedIds;
getMajority(lFeMajFrac[iP], lMajorityCounter, lfedIds);
//std::cout << " -- Found " << lfedIds.size() << " unique elements not matching the majority." << std::endl;
fedHists_.fillMajorityHistograms(iP, static_cast<float>(lMajorityCounter) / lFeMajFrac[iP].size(), lfedIds);
}
}
if ((lNTotBadFeds > 0 || lNTotBadChannels > 0) && printDebug_ > 1) {
std::ostringstream debugStream;
debugStream << "[SiStripFEDMonitorPlugin] --- Total number of bad feds = " << lNTotBadFeds << std::endl
<< "[SiStripFEDMonitorPlugin] --- Total number of bad channels = " << lNTotBadChannels << std::endl
<< "[SiStripFEDMonitorPlugin] --- Total number of bad active channels = " << lNTotBadActiveChannels
<< std::endl;
edm::LogInfo("SiStripMonitorHardware") << debugStream.str();
}
if ((lNFEDMonitoring > 0 || lNFEDUnpacker > 0 || lNChannelMonitoring > 0 || lNChannelUnpacker > 0) && printDebug_) {
std::ostringstream debugStream;
debugStream
<< "[SiStripFEDMonitorPlugin]-------------------------------------------------------------------------"
<< std::endl
<< "[SiStripFEDMonitorPlugin]-------------------------------------------------------------------------"
<< std::endl
<< "[SiStripFEDMonitorPlugin]-- Summary of differences between unpacker and monitoring at FED level : "
<< std::endl
<< "[SiStripFEDMonitorPlugin] ---- Number of times monitoring fails but not unpacking = " << lNFEDMonitoring
<< std::endl
<< "[SiStripFEDMonitorPlugin] ---- Number of times unpacking fails but not monitoring = " << lNFEDUnpacker
<< std::endl
<< "[SiStripFEDMonitorPlugin]-------------------------------------------------------------------------"
<< std::endl
<< "[SiStripFEDMonitorPlugin]-- Summary of differences between unpacker and monitoring at Channel level : "
<< std::endl
<< "[SiStripFEDMonitorPlugin] ---- Number of times monitoring fails but not unpacking = " << lNChannelMonitoring
<< std::endl
<< "[SiStripFEDMonitorPlugin] ---- Number of times unpacking fails but not monitoring = " << lNChannelUnpacker
<< std::endl
<< "[SiStripFEDMonitorPlugin]-------------------------------------------------------------------------"
<< std::endl
<< "[SiStripFEDMonitorPlugin]-------------------------------------------------------------------------"
<< std::endl;
edm::LogError("SiStripMonitorHardware") << debugStream.str();
}
fedErrors_.getFEDErrorsCounters().nTotalBadChannels = lNTotBadChannels;
fedErrors_.getFEDErrorsCounters().nTotalBadActiveChannels = lNTotBadActiveChannels;
//time in seconds since beginning of the run or event number
if (fillWithEvtNum_) {
// explicitely casting the event number unsigned long long to double here
double eventNumber = static_cast<double>(iEvent.id().event());
fedHists_.fillCountersHistograms(
fedErrors_.getFEDErrorsCounters(), fedErrors_.getChannelErrorsCounters(), maxFedBufferSize_, eventNumber);
} else {
double aTime = iEvent.orbitNumber() / 11223.;
fedHists_.fillCountersHistograms(
fedErrors_.getFEDErrorsCounters(), fedErrors_.getChannelErrorsCounters(), maxFedBufferSize_, aTime);
}
nEvt_++;
} //analyze method
bool SiStripFEDMonitorPlugin::pairComparison(const std::pair<unsigned int, unsigned int>& pair1,
const std::pair<unsigned int, unsigned int>& pair2) {
return (pair1.second < pair2.second);
}
void SiStripFEDMonitorPlugin::getMajority(const std::vector<std::pair<unsigned int, unsigned int> >& aFeMajVec,
unsigned int& aMajorityCounter,
std::vector<unsigned int>& afedIds) {
unsigned int lMajAddress = 0;
std::vector<std::pair<unsigned int, unsigned int> >::const_iterator lIter = aFeMajVec.begin();
unsigned int lMajAddr = (*lIter).second;
unsigned int lCounter = 0;
//std::cout << " --- First element: addr = " << lMajAddr << " counter = " << lCounter << std::endl;
unsigned int iele = 0;
//bool foundMaj = false;
for (; lIter != aFeMajVec.end(); ++lIter, ++iele) {
//std::cout << " ---- Ele " << iele << " " << (*lIter).first << " " << (*lIter).second << " ref " << lMajAddr << std::endl;
if ((*lIter).second == lMajAddr) {
++lCounter;
//std::cout << " ----- =ref: Counter = " << lCounter << std::endl;
} else {
//std::cout << " ----- !=ref: Counter = " << lCounter << " Majority = " << aMajorityCounter << std::endl;
if (lCounter > aMajorityCounter) {
//std::cout << " ------ >Majority: " << std::endl;
aMajorityCounter = lCounter;
// AV bug here??
lMajAddress = lMajAddr;
// lMajAddress = (*lIter).second;
//foundMaj=true;
}
lCounter = 0;
lMajAddr = (*lIter).second;
--lIter;
--iele;
}
}
// AV Bug here? The check has to be done regardless foundMaj == false or true
// if (!foundMaj) {
if (lCounter > aMajorityCounter) {
//std::cout << " ------ >Majority: " << std::endl;
aMajorityCounter = lCounter;
lMajAddress = lMajAddr;
}
// }
//std::cout << " -- found majority value for " << aMajorityCounter << " elements out of " << aFeMajVec.size() << "." << std::endl;
//get list of feds with address different from majority in partition:
lIter = aFeMajVec.begin();
afedIds.reserve(135);
for (; lIter != aFeMajVec.end(); ++lIter) {
if ((*lIter).second != lMajAddress) {
afedIds.push_back((*lIter).first);
} else {
lIter += aMajorityCounter - 1;
if (lIter >= aFeMajVec.end()) {
std::cout << "Here it is a bug: " << aMajorityCounter << " " << aFeMajVec.size() << " "
<< lIter - aFeMajVec.end() << std::endl;
}
}
}
//std::cout << " -- Found " << lfedIds.size() << " elements not matching the majority." << std::endl;
if (!afedIds.empty()) {
std::sort(afedIds.begin(), afedIds.end());
std::vector<unsigned int>::iterator lIt = std::unique(afedIds.begin(), afedIds.end());
afedIds.erase(lIt, afedIds.end());
}
}
void SiStripFEDMonitorPlugin::bookHistograms(DQMStore::IBooker& ibooker,
const edm::Run& run,
const edm::EventSetup& eSetup) {
ibooker.setCurrentFolder(folderName_);
const auto tkDetMap = &eSetup.getData(tkDetMapToken_);
fedHists_.bookTopLevelHistograms(ibooker, tkDetMap);
if (fillAllDetailedHistograms_)
fedHists_.bookAllFEDHistograms(ibooker, fullDebugMode_);
if (enableFEDerrLumi_) {
ibooker.cd();
ibooker.setCurrentFolder("SiStrip/ReadoutView/PerLumiSection");
{
auto scope = DQMStore::IBooker::UseRunScope(ibooker);
lumiErrfac_ =
ibooker.book1D("lumiErrorFraction", "Fraction of error per lumi section vs subdetector", 6, 0.5, 6.5);
lumiErrfac_->setAxisTitle("SubDetId", 1);
lumiErrfac_->setBinLabel(1, "TECB");
lumiErrfac_->setBinLabel(2, "TECF");
lumiErrfac_->setBinLabel(3, "TIB");
lumiErrfac_->setBinLabel(4, "TIDB");
lumiErrfac_->setBinLabel(5, "TIDF");
lumiErrfac_->setBinLabel(6, "TOB");
}
} else {
lumiErrfac_ = nullptr;
}
}
std::shared_ptr<sifedmon::LumiErrors> SiStripFEDMonitorPlugin::globalBeginLuminosityBlock(
const edm::LuminosityBlock& lumi, const edm::EventSetup& iSetup) const {
auto lumiErrors = std::make_shared<sifedmon::LumiErrors>();
lumiErrors->nTotal.resize(6, 0);
lumiErrors->nErrors.resize(6, 0);
return lumiErrors;
}
void SiStripFEDMonitorPlugin::globalEndLuminosityBlock(const edm::LuminosityBlock& lumi,
const edm::EventSetup& iSetup) {
auto lumiErrors = luminosityBlockCache(lumi.index());
if (enableFEDerrLumi_ && lumiErrfac_) {
for (unsigned int iD(0); iD < lumiErrors->nTotal.size(); iD++) {
if (lumiErrors->nTotal[iD] > 0)
lumiErrfac_->Fill(iD + 1, static_cast<float>(lumiErrors->nErrors[iD]) / lumiErrors->nTotal[iD]);
}
}
}
void SiStripFEDMonitorPlugin::updateCabling(const SiStripFedCablingRcd& cablingRcd) {
cabling_ = &cablingRcd.get(fedCablingToken_);
}
//
// Define as a plug-in
//
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(SiStripFEDMonitorPlugin);
|