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
|
/*
* See header file for a description of this class.
*
* author
*/
// CMSSW FW
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Run.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/Framework/interface/FileBlock.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Utilities/interface/Transition.h"
// Pixel geometry and cabling map
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
#include "CondFormats/DataRecord/interface/SiPixelFedCablingMapRcd.h"
// Condition Format
#include "CondFormats/DataRecord/interface/SiPixelQualityRcd.h"
// CondOutput
#include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
// Dataformat of SiPixel status in ALCAPROMPT data
#include "CalibTracker/SiPixelQuality/interface/SiPixelDetectorStatus.h"
//#include "CondCore/Utilities/bin/cmscond_export_iov.cpp"
//#include "CondCore/Utilities/interface/Utilities.h"
// harvest helper class
#include "CalibTracker/SiPixelQuality/interface/SiPixelStatusManager.h"
// header file
#include "CalibTracker/SiPixelQuality/plugins/SiPixelStatusHarvester.h"
// output format
#include "TH1.h"
#include "TTree.h"
#include "TString.h"
#include <iostream>
#include <cstring>
using namespace edm;
//class MonitorElement;
//--------------------------------------------------------------------------------------------------
SiPixelStatusHarvester::SiPixelStatusHarvester(const edm::ParameterSet& iConfig)
: HistogramManagerHolder(iConfig, consumesCollector()),
thresholdL1_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdL1")),
thresholdL2_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdL2")),
thresholdL3_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdL3")),
thresholdL4_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdL4")),
thresholdRNG1_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdRNG1")),
thresholdRNG2_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<double>("thresholdRNG2")),
outputBase_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<std::string>("outputBase")),
aveDigiOcc_(
iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters").getUntrackedParameter<int>("aveDigiOcc")),
nLumi_(iConfig.getParameter<edm::ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<int>("resetEveryNLumi")),
moduleName_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<std::string>("moduleName")),
label_(iConfig.getParameter<ParameterSet>("SiPixelStatusManagerParameters")
.getUntrackedParameter<std::string>("label")),
trackerGeometryToken_(esConsumes<TrackerGeometry, TrackerDigiGeometryRecord, edm::Transition::EndRun>()),
trackerTopologyToken_(esConsumes<TrackerTopology, TrackerTopologyRcd, edm::Transition::EndRun>()),
siPixelFedCablingMapToken_(esConsumes<SiPixelFedCablingMap, SiPixelFedCablingMapRcd, edm::Transition::EndRun>()),
siPixelQualityToken_(esConsumes<SiPixelQuality, SiPixelQualityFromDbRcd, edm::Transition::EndRun>()) {
SiPixelStatusManager* siPixelStatusManager = new SiPixelStatusManager(iConfig, consumesCollector());
siPixelStatusManager_ = *siPixelStatusManager;
debug_ = iConfig.getUntrackedParameter<bool>("debug");
recordName_ = iConfig.getUntrackedParameter<std::string>("recordName", "SiPixelQualityFromDbRcd");
sensorSize_.clear();
pixelO2O_.clear();
siPixelStatusManager_.reset();
endLumiBlock_ = 0;
countLumi_ = 0;
}
//--------------------------------------------------------------------------------------------------
SiPixelStatusHarvester::~SiPixelStatusHarvester() {}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::beginJob() {}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::bookHistograms(DQMStore::IBooker& iBooker,
edm::Run const&,
edm::EventSetup const& iSetup) {
for (auto& histoman : histo) {
histoman.book(iBooker, iSetup);
}
}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::analyze(const edm::Event& iEvent, const edm::EventSetup&) {}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::dqmEndRun(const edm::Run& iRun, const edm::EventSetup& iSetup) {
// tracker geometry and cabling map to convert offline row/column (module) to online row/column
trackerGeometry_ = &iSetup.getData(trackerGeometryToken_);
const TrackerTopology* trackerTopology = &iSetup.getData(trackerTopologyToken_);
const SiPixelFedCablingMap* siPixelFedCablingMap = &iSetup.getData(siPixelFedCablingMapToken_);
cablingMap_ = siPixelFedCablingMap;
// Pixel Phase-1 helper class
coord_.init(trackerTopology, trackerGeometry_, siPixelFedCablingMap);
for (TrackerGeometry::DetContainer::const_iterator it = trackerGeometry_->dets().begin();
it != trackerGeometry_->dets().end();
it++) {
const PixelGeomDetUnit* pgdu = dynamic_cast<const PixelGeomDetUnit*>((*it));
if (pgdu == nullptr)
continue;
DetId detId = (*it)->geographicalId();
int detid = detId.rawId();
const PixelTopology* topo = static_cast<const PixelTopology*>(&pgdu->specificTopology());
// number of row/columns for a given module
int rowsperroc = topo->rowsperroc();
int colsperroc = topo->colsperroc();
int nROCrows = pgdu->specificTopology().nrows() / rowsperroc;
int nROCcolumns = pgdu->specificTopology().ncolumns() / colsperroc;
unsigned int nrocs = nROCrows * nROCcolumns;
sensorSize_[detid] = nrocs;
std::map<int, std::pair<int, int>> rocToOfflinePixel;
std::vector<sipixelobjects::CablingPathToDetUnit> path = (cablingMap_->det2PathMap()).find(detId.rawId())->second;
typedef std::vector<sipixelobjects::CablingPathToDetUnit>::const_iterator IT;
for (IT it = path.begin(); it != path.end(); ++it) {
// Pixel ROC building from path in cabling map
const sipixelobjects::PixelROC* roc = cablingMap_->findItem(*it);
int idInDetUnit = (int)roc->idInDetUnit();
// local to global conversion
sipixelobjects::LocalPixel::RocRowCol local = {rowsperroc / 2, colsperroc / 2};
sipixelobjects::GlobalPixel global = roc->toGlobal(sipixelobjects::LocalPixel(local));
rocToOfflinePixel[idInDetUnit] = std::pair<int, int>(global.row, global.col);
}
pixelO2O_[detid] = rocToOfflinePixel;
}
// Permananent bad components
badPixelInfo_ = &iSetup.getData(siPixelQualityToken_);
// read in SiPixel occupancy data in ALCARECO/ALCAPROMPT
siPixelStatusManager_.createPayloads();
std::map<edm::LuminosityBlockNumber_t, std::map<int, std::vector<int>>> FEDerror25Map =
siPixelStatusManager_.getFEDerror25Rocs();
std::map<edm::LuminosityBlockNumber_t, SiPixelDetectorStatus> siPixelStatusMap =
siPixelStatusManager_.getBadComponents();
// DB service
edm::Service<cond::service::PoolDBOutputService> poolDbService;
if (poolDbService.isAvailable()) { // if(poolDbService.isAvailable() )
// start producing tag for permanent component removed
SiPixelQuality siPixelQualityPermBad;
const std::vector<SiPixelQuality::disabledModuleType> badComponentList = badPixelInfo_->getBadComponentList();
for (unsigned int i = 0; i < badComponentList.size(); i++) {
siPixelQualityPermBad.addDisabledModule(badComponentList[i]);
uint32_t detId = badComponentList[i].DetID;
int detid = int(detId);
unsigned int nroc = sensorSize_[detid];
for (int iroc = 0; iroc < int(nroc); iroc++) {
if (badPixelInfo_->IsRocBad(detId, short(iroc))) {
std::map<int, std::pair<int, int>> rocToOfflinePixel = pixelO2O_[detid];
int row = rocToOfflinePixel[iroc].first;
int column = rocToOfflinePixel[iroc].second;
histo[PERMANENTBADROC].fill(detId, nullptr, column, row);
}
}
}
if (debug_ == true) { // only produced for debugging reason
cond::Time_t thisIOV = (cond::Time_t)iRun.id().run();
poolDbService->writeOneIOV<SiPixelQuality>(siPixelQualityPermBad, thisIOV, recordName_ + "_permanentBad");
}
// IOV for final payloads. FEDerror25 and pcl
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t> finalIOV;
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t> fedError25IOV;
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t> pclIOV;
// container for SiPixelQuality for the whole run
std::map<int, SiPixelQuality> siPixelQualityStuckTBM_Tag;
// stuckTBM tag from FED error 25 with permanent component removed
for (SiPixelStatusManager::FEDerror25Map_iterator it = FEDerror25Map.begin(); it != FEDerror25Map.end(); it++) {
cond::Time_t thisIOV = 1;
edm::LuminosityBlockID lu(iRun.id().run(), it->first);
thisIOV = (cond::Time_t)(lu.value());
int interval = 0;
// interval is the number of lumi sections in the IOV
SiPixelStatusManager::FEDerror25Map_iterator nextIt = std::next(it);
if (nextIt != FEDerror25Map.end())
interval = int(nextIt->first - it->first);
else
interval = int(endLumiBlock_ - it->first + 1); // +1 because need to include the last lumi section
SiPixelQuality siPixelQuality_stuckTBM;
SiPixelQuality siPixelQuality_FEDerror25;
std::map<int, std::vector<int>> tmpFEDerror25 = it->second;
for (std::map<int, std::vector<int>>::iterator ilist = tmpFEDerror25.begin(); ilist != tmpFEDerror25.end();
ilist++) {
int detid = ilist->first;
uint32_t detId = uint32_t(detid);
SiPixelQuality::disabledModuleType BadModule_stuckTBM, BadModule_FEDerror25;
BadModule_stuckTBM.DetID = uint32_t(detid);
BadModule_FEDerror25.DetID = uint32_t(detid);
BadModule_stuckTBM.errorType = 3;
BadModule_FEDerror25.errorType = 3;
BadModule_stuckTBM.BadRocs = 0;
BadModule_FEDerror25.BadRocs = 0;
std::vector<uint32_t> BadRocList_stuckTBM, BadRocList_FEDerror25;
std::vector<int> list = ilist->second;
for (unsigned int i = 0; i < list.size(); i++) {
int iroc = list[i];
std::map<int, std::pair<int, int>> rocToOfflinePixel = pixelO2O_[detid];
int row = rocToOfflinePixel[iroc].first;
int column = rocToOfflinePixel[iroc].second;
BadRocList_FEDerror25.push_back(uint32_t(iroc));
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[FEDERRORROC].fill(detId, nullptr, column, row); // 1.0/nLumiBlock_);
}
// only include rocs that are not permanent known bad
if (!badPixelInfo_->IsRocBad(detId, short(iroc))) { // stuckTBM = FEDerror25 - permanent bad
BadRocList_stuckTBM.push_back(uint32_t(iroc));
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[STUCKTBMROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
}
}
}
// change module error type if all ROCs are bad
if (BadRocList_stuckTBM.size() == sensorSize_[detid])
BadModule_stuckTBM.errorType = 0;
short badrocs_stuckTBM = 0;
for (std::vector<uint32_t>::iterator iter = BadRocList_stuckTBM.begin(); iter != BadRocList_stuckTBM.end();
++iter) {
badrocs_stuckTBM += 1 << *iter; // 1 << *iter = 2^{*iter} using bitwise shift
}
// fill the badmodule only if there is(are) bad ROC(s) in it
if (badrocs_stuckTBM != 0) {
BadModule_stuckTBM.BadRocs = badrocs_stuckTBM;
siPixelQuality_stuckTBM.addDisabledModule(BadModule_stuckTBM);
}
// change module error type if all ROCs are bad
if (BadRocList_FEDerror25.size() == sensorSize_[detid])
BadModule_FEDerror25.errorType = 0;
short badrocs_FEDerror25 = 0;
for (std::vector<uint32_t>::iterator iter = BadRocList_FEDerror25.begin(); iter != BadRocList_FEDerror25.end();
++iter) {
badrocs_FEDerror25 += 1 << *iter; // 1 << *iter = 2^{*iter} using bitwise shift
}
// fill the badmodule only if there is(are) bad ROC(s) in it
if (badrocs_FEDerror25 != 0) {
BadModule_FEDerror25.BadRocs = badrocs_FEDerror25;
siPixelQuality_FEDerror25.addDisabledModule(BadModule_FEDerror25);
}
} // loop over modules
siPixelQualityStuckTBM_Tag[it->first] = siPixelQuality_stuckTBM;
finalIOV[it->first] = it->first;
fedError25IOV[it->first] = it->first;
if (debug_ == true) // only produced for debugging reason
poolDbService->writeOneIOV<SiPixelQuality>(siPixelQuality_FEDerror25, thisIOV, recordName_ + "_FEDerror25");
}
// IOV for PCL output tags that "combines" permanent bad/stuckTBM/other
for (SiPixelStatusManager::siPixelStatusMap_iterator it = siPixelStatusMap.begin(); it != siPixelStatusMap.end();
it++) {
finalIOV[it->first] = it->first;
pclIOV[it->first] = it->first;
}
// loop over final IOV
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t>::iterator itIOV;
// container for SiPixelQuality for the whole run
std::map<int, SiPixelQuality> siPixelQualityPCL_Tag;
std::map<int, SiPixelQuality> siPixelQualityPrompt_Tag;
std::map<int, SiPixelQuality> siPixelQualityOther_Tag;
for (itIOV = finalIOV.begin(); itIOV != finalIOV.end(); itIOV++) {
int interval = 0;
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t>::iterator nextItIOV = std::next(itIOV);
if (nextItIOV != finalIOV.end())
interval = int(nextItIOV->first - itIOV->first);
else
interval = int(endLumiBlock_ - itIOV->first + 1);
edm::LuminosityBlockNumber_t lumiFEDerror25 = SiPixelStatusHarvester::stepIOV(itIOV->first, fedError25IOV);
edm::LuminosityBlockNumber_t lumiPCL = SiPixelStatusHarvester::stepIOV(itIOV->first, pclIOV);
// get badROC list due to FEDerror25 = stuckTBM + permanent bad components
std::map<int, std::vector<int>> tmpFEDerror25 = FEDerror25Map[lumiFEDerror25];
// get SiPixelDetectorStatus
SiPixelDetectorStatus tmpSiPixelStatus = siPixelStatusMap[lumiPCL];
double DetAverage = tmpSiPixelStatus.perRocDigiOcc();
// For the IOV of which the statistics is too low, for e.g., a cosmic run
// When using dynamicLumibased harvester or runbased harvester
// this only happens when the full run is lack of statistics
if (DetAverage < aveDigiOcc_) {
edm::LogInfo("SiPixelStatusHarvester")
<< "Tag requested for prompt in low statistics IOV in the " << outputBase_ << " harvester" << std::endl;
siPixelQualityPCL_Tag[itIOV->first] = siPixelQualityPermBad;
siPixelQualityPrompt_Tag[itIOV->first] = siPixelQualityPermBad;
// loop over modules to fill the PROMPT DQM plots with permanent bad components
std::map<int, SiPixelModuleStatus> detectorStatus = tmpSiPixelStatus.getDetectorStatus();
std::map<int, SiPixelModuleStatus>::iterator itModEnd = detectorStatus.end();
for (std::map<int, SiPixelModuleStatus>::iterator itMod = detectorStatus.begin(); itMod != itModEnd; ++itMod) {
int detid = itMod->first;
uint32_t detId = uint32_t(detid);
SiPixelModuleStatus modStatus = itMod->second;
for (int iroc = 0; iroc < modStatus.nrocs(); ++iroc) {
if (badPixelInfo_->IsRocBad(detId, short(iroc))) {
std::map<int, std::pair<int, int>> rocToOfflinePixel = pixelO2O_[detid];
int row = rocToOfflinePixel[iroc].first;
int column = rocToOfflinePixel[iroc].second;
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[PROMPTBADROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
histo[PERMANENTBADROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
}
} // if permanent BAD
} // loop over ROCs
} // loop over modules
// add empty bad components to "other" tag
edm::LogInfo("SiPixelStatusHarvester")
<< "Tag requested for other in low statistics IOV in the " << outputBase_ << " harvester" << std::endl;
siPixelQualityOther_Tag[itIOV->first] = SiPixelQuality();
continue;
}
// create the DB object
// payload including all : PCL = permanent bad (low DIGI ROC) + other + stuckTBM
SiPixelQuality siPixelQualityPCL;
SiPixelQuality siPixelQualityOther;
// Prompt = permanent bad(low DIGI + low eff/damaged ROCs + other)
SiPixelQuality siPixelQualityPrompt;
// loop over modules
std::map<int, SiPixelModuleStatus> detectorStatus = tmpSiPixelStatus.getDetectorStatus();
std::map<int, SiPixelModuleStatus>::iterator itModEnd = detectorStatus.end();
for (std::map<int, SiPixelModuleStatus>::iterator itMod = detectorStatus.begin(); itMod != itModEnd; ++itMod) {
// create the bad module list for PCL and other
SiPixelQuality::disabledModuleType BadModulePCL, BadModuleOther;
int detid = itMod->first;
uint32_t detId = uint32_t(detid);
double DetAverage_local = SiPixelStatusHarvester::perLayerRingAverage(detid, tmpSiPixelStatus);
double local_threshold = 0.0;
int layer = coord_.layer(DetId(detid));
int ring = coord_.ring(DetId(detid));
if (layer == 1)
local_threshold = thresholdL1_;
if (layer == 2)
local_threshold = thresholdL2_;
if (layer == 3)
local_threshold = thresholdL3_;
if (layer == 4)
local_threshold = thresholdL4_;
if (ring == 1)
local_threshold = thresholdRNG1_;
if (ring == 2)
local_threshold = thresholdRNG2_;
BadModulePCL.DetID = uint32_t(detid);
BadModuleOther.DetID = uint32_t(detid);
BadModulePCL.errorType = 3;
BadModuleOther.errorType = 3;
BadModulePCL.BadRocs = 0;
BadModuleOther.BadRocs = 0;
std::vector<uint32_t> BadRocListPCL, BadRocListOther;
// module status and FEDerror25 status for module with DetId detId
SiPixelModuleStatus modStatus = itMod->second;
std::vector<int> listFEDerror25 = tmpFEDerror25[detid];
std::map<int, std::pair<int, int>> rocToOfflinePixel = pixelO2O_[detid];
for (int iroc = 0; iroc < modStatus.nrocs(); ++iroc) {
unsigned int rocOccupancy = modStatus.digiOccROC(iroc);
int row = rocToOfflinePixel[iroc].first;
int column = rocToOfflinePixel[iroc].second;
// Bad ROC are from low DIGI Occ ROCs
if (rocOccupancy < local_threshold * DetAverage_local) { // if BAD
//PCL bad roc list
BadRocListPCL.push_back(uint32_t(iroc));
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[BADROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
}
//FEDerror25 list
std::vector<int>::iterator it = std::find(listFEDerror25.begin(), listFEDerror25.end(), iroc);
// other source of bad components = PCL bad - FEDerror25 - permanent bad
if (it == listFEDerror25.end() && !(badPixelInfo_->IsRocBad(detId, short(iroc)))) {
// if neither permanent nor FEDerror25
BadRocListOther.push_back(uint32_t(iroc));
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[OTHERBADROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
}
}
} // if BAD
} // loop over ROCs
// errorType 0 means the full module is bad
if (BadRocListPCL.size() == sensorSize_[detid])
BadModulePCL.errorType = 0;
if (BadRocListOther.size() == sensorSize_[detid])
BadModuleOther.errorType = 0;
// PCL
short badrocsPCL = 0;
for (std::vector<uint32_t>::iterator iterPCL = BadRocListPCL.begin(); iterPCL != BadRocListPCL.end();
++iterPCL) {
badrocsPCL += 1 << *iterPCL; // 1 << *iter = 2^{*iter} using bitwise shift
}
if (badrocsPCL != 0) {
BadModulePCL.BadRocs = badrocsPCL;
siPixelQualityPCL.addDisabledModule(BadModulePCL);
}
// Other
short badrocsOther = 0;
for (std::vector<uint32_t>::iterator iterOther = BadRocListOther.begin(); iterOther != BadRocListOther.end();
++iterOther) {
badrocsOther += 1 << *iterOther; // 1 << *iter = 2^{*iter} using bitwise shift
}
if (badrocsOther != 0) {
BadModuleOther.BadRocs = badrocsOther;
siPixelQualityOther.addDisabledModule(BadModuleOther);
}
// start constructing bad components for prompt = "other" + permanent
SiPixelQuality::disabledModuleType BadModulePrompt;
BadModulePrompt.DetID = uint32_t(detid);
BadModulePrompt.errorType = 3;
BadModulePrompt.BadRocs = 0;
std::vector<uint32_t> BadRocListPrompt;
for (int iroc = 0; iroc < modStatus.nrocs(); ++iroc) {
// if in permannet bad tag or is in other tag
if (badPixelInfo_->IsRocBad(detId, short(iroc)) || ((badrocsOther >> short(iroc)) & 0x1)) {
BadRocListPrompt.push_back(uint32_t(iroc));
std::map<int, std::pair<int, int>> rocToOfflinePixel = pixelO2O_[detid];
int row = rocToOfflinePixel[iroc].first;
int column = rocToOfflinePixel[iroc].second;
for (int iLumi = 0; iLumi < interval; iLumi++) {
histo[PROMPTBADROC].fill(detId, nullptr, column, row); //, 1.0/nLumiBlock_);
}
} // if bad
} // loop over all ROCs
// errorType 0 means the full module is bad
if (BadRocListPrompt.size() == sensorSize_[detid])
BadModulePrompt.errorType = 0;
short badrocsPrompt = 0;
for (std::vector<uint32_t>::iterator iterPrompt = BadRocListPrompt.begin();
iterPrompt != BadRocListPrompt.end();
++iterPrompt) {
badrocsPrompt += 1 << *iterPrompt; // 1 << *iter = 2^{*iter} using bitwise shift
}
if (badrocsPrompt != 0) {
BadModulePrompt.BadRocs = badrocsPrompt;
siPixelQualityPrompt.addDisabledModule(BadModulePrompt);
}
} // end module loop
// PCL
siPixelQualityPCL_Tag[itIOV->first] = siPixelQualityPCL;
// Prompt
siPixelQualityPrompt_Tag[itIOV->first] = siPixelQualityPrompt;
// Other
siPixelQualityOther_Tag[itIOV->first] = siPixelQualityOther;
} // loop over IOV
// Now construct the tags made of payloads
// and only append newIOV if this payload differs wrt last
//PCL
if (debug_ == true) // only produced for debugging reason
SiPixelStatusHarvester::constructTag(siPixelQualityPCL_Tag, poolDbService, "PCL", iRun);
// other
SiPixelStatusHarvester::constructTag(siPixelQualityOther_Tag, poolDbService, "other", iRun);
// prompt
SiPixelStatusHarvester::constructTag(siPixelQualityPrompt_Tag, poolDbService, "prompt", iRun);
// stuckTBM
SiPixelStatusHarvester::constructTag(siPixelQualityStuckTBM_Tag, poolDbService, "stuckTBM", iRun);
// Add a dummy IOV starting from last lumisection+1 to close the tag for the run
if ((outputBase_ == "nLumibased" || outputBase_ == "dynamicLumibased") && !finalIOV.empty()) {
itIOV = std::prev(finalIOV.end()); // go to last element in the pixel quality tag
SiPixelQuality lastPrompt = siPixelQualityPrompt_Tag[itIOV->first];
SiPixelQuality lastOther = siPixelQualityOther_Tag[itIOV->first];
// add permanent bad components to last lumi+1 IF AND ONLY IF the last payload of prompt is not equal to permanent bad components
edm::LuminosityBlockID lu(iRun.id().run(), endLumiBlock_ + 1);
cond::Time_t thisIOV = (cond::Time_t)(lu.value());
if (!SiPixelStatusHarvester::equal(lastPrompt, siPixelQualityPermBad))
poolDbService->writeOneIOV<SiPixelQuality>(siPixelQualityPermBad, thisIOV, recordName_ + "_prompt");
// add empty bad components to last lumi+1 IF AND ONLY IF the last payload of other is not equal to empty
SiPixelQuality siPixelQualityDummy;
if (!SiPixelStatusHarvester::equal(lastOther, siPixelQualityDummy))
poolDbService->writeOneIOV<SiPixelQuality>(siPixelQualityDummy, thisIOV, recordName_ + "_other");
}
} // end of if(poolDbService.isAvailable() )
}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::beginLuminosityBlock(const edm::LuminosityBlock& iLumi, const edm::EventSetup&) {
countLumi_++;
}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::endLuminosityBlock(const edm::LuminosityBlock& iLumi, const edm::EventSetup&) {
siPixelStatusManager_.readLumi(iLumi);
// update endLumiBlock_ by current lumi block
if (endLumiBlock_ < iLumi.luminosityBlock())
endLumiBlock_ = iLumi.luminosityBlock();
}
// step function for IOV
edm::LuminosityBlockNumber_t SiPixelStatusHarvester::stepIOV(
edm::LuminosityBlockNumber_t pin, std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t> IOV) {
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t>::iterator itIOV;
for (itIOV = IOV.begin(); itIOV != IOV.end(); itIOV++) {
std::map<edm::LuminosityBlockNumber_t, edm::LuminosityBlockNumber_t>::iterator nextItIOV;
nextItIOV = itIOV;
nextItIOV++;
if (nextItIOV != IOV.end()) {
if (pin >= itIOV->first && pin < nextItIOV->first) {
return itIOV->first;
}
} else {
if (pin >= itIOV->first) {
return itIOV->first;
}
}
}
// return the firstIOV in case all above fail
return (IOV.begin())->first;
}
//--------------------------------------------------------------------------------------------------
bool SiPixelStatusHarvester::equal(SiPixelQuality a, SiPixelQuality b) {
std::vector<SiPixelQuality::disabledModuleType> badRocListA;
std::vector<SiPixelQuality::disabledModuleType> badRocListB;
for (unsigned int ia = 0; ia < (a.getBadComponentList()).size(); ia++) {
badRocListA.push_back((a.getBadComponentList())[ia]);
}
for (unsigned int ib = 0; ib < (b.getBadComponentList()).size(); ib++) {
badRocListB.push_back((b.getBadComponentList())[ib]);
}
if (badRocListA.size() != badRocListB.size())
return false;
// ordering ROCs by DetId
std::sort(badRocListA.begin(), badRocListA.end(), SiPixelQuality::BadComponentStrictWeakOrdering());
std::sort(badRocListB.begin(), badRocListB.end(), SiPixelQuality::BadComponentStrictWeakOrdering());
for (unsigned int i = 0; i < badRocListA.size(); i++) {
uint32_t detIdA = badRocListA[i].DetID;
uint32_t detIdB = badRocListB[i].DetID;
if (detIdA != detIdB)
return false;
else {
unsigned short BadRocsA = badRocListA[i].BadRocs;
unsigned short BadRocsB = badRocListB[i].BadRocs;
if (BadRocsA != BadRocsB)
return false;
}
}
//if the module list is the same, and for each module, roc list is the same
//the two SiPixelQualitys are equal
return true;
}
//--------------------------------------------------------------------------------------------------
void SiPixelStatusHarvester::constructTag(std::map<int, SiPixelQuality> siPixelQualityTag,
edm::Service<cond::service::PoolDBOutputService>& poolDbService,
std::string tagName,
edm::Run const& iRun) {
for (std::map<int, SiPixelQuality>::iterator qIt = siPixelQualityTag.begin(); qIt != siPixelQualityTag.end(); ++qIt) {
edm::LuminosityBlockID lu(iRun.id().run(), qIt->first);
cond::Time_t thisIOV = (cond::Time_t)(lu.value());
SiPixelQuality thisPayload = qIt->second;
if (qIt == siPixelQualityTag.begin())
poolDbService->writeOneIOV<SiPixelQuality>(thisPayload, thisIOV, recordName_ + "_" + tagName);
else {
SiPixelQuality prevPayload = (std::prev(qIt))->second;
if (!SiPixelStatusHarvester::equal(thisPayload,
prevPayload)) // only append newIOV if this payload differs wrt last
poolDbService->writeOneIOV<SiPixelQuality>(thisPayload, thisIOV, recordName_ + "_" + tagName);
}
}
}
//--------------------------------------------------------------------------------------------------------
double SiPixelStatusHarvester::perLayerRingAverage(int detid, SiPixelDetectorStatus tmpSiPixelStatus) {
unsigned long int ave(0);
int nrocs(0);
int layer = coord_.layer(DetId(detid));
int ring = coord_.ring(DetId(detid));
std::map<int, SiPixelModuleStatus> detectorStatus = tmpSiPixelStatus.getDetectorStatus();
std::map<int, SiPixelModuleStatus>::iterator itModEnd = detectorStatus.end();
for (std::map<int, SiPixelModuleStatus>::iterator itMod = detectorStatus.begin(); itMod != itModEnd; ++itMod) {
if (layer != coord_.layer(DetId(itMod->first)))
continue;
if (ring != coord_.ring(DetId(itMod->first)))
continue;
unsigned long int inc = itMod->second.digiOccMOD();
ave += inc;
nrocs += itMod->second.nrocs();
}
if (nrocs > 0)
return ave * 1.0 / nrocs;
else
return 0.0;
}
std::string SiPixelStatusHarvester::substructure(int detid) {
std::string substructure = "";
int layer = coord_.layer(DetId(detid));
if (layer > 0) {
std::string L = std::to_string(layer);
substructure = "BpixLYR";
substructure += L;
} else {
substructure = "FpixRNG";
int ring = coord_.ring(DetId(detid));
std::string R = std::to_string(ring);
substructure += R;
}
return substructure;
}
DEFINE_FWK_MODULE(SiPixelStatusHarvester);
|