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
|
// -*- C++ -*-
//
// Package: SiPixelGainCalibrationReadDQMFile
// Class: SiPixelGainCalibrationReadDQMFile
//
/**\class SiPixelGainCalibrationReadDQMFile SiPixelGainCalibrationReadDQMFile.cc CalibTracker/SiPixelGainCalibrationReadDQMFile/src/SiPixelGainCalibrationReadDQMFile.cc
Description: <one line class summary>
Implementation:
<Notes on implementation>
*/
//
// Original Author: Freya BLEKMAN
// Created: Tue Aug 5 16:22:46 CEST 2008
// $Id: SiPixelGainCalibrationReadDQMFile.cc,v 1.7 2010/01/12 11:29:54 rougny Exp $
//
//
// system include files
#include <memory>
#include <fstream>
#include <sys/stat.h>
// user include files
#include "CalibTracker/SiPixelESProducers/interface/SiPixelGainCalibrationService.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
#include "CondFormats/SiPixelObjects/interface/SiPixelCalibConfiguration.h"
#include "CondFormats/SiPixelObjects/interface/SiPixelGainCalibration.h"
#include "CondFormats/SiPixelObjects/interface/SiPixelGainCalibrationForHLT.h"
#include "CondFormats/SiPixelObjects/interface/SiPixelGainCalibrationOffline.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
#include "Geometry/CommonTopologies/interface/PixelTopology.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
// ROOT includes
#include "TDirectory.h"
#include "TFile.h"
#include "TH2F.h"
#include "TKey.h"
#include "TList.h"
#include "TString.h"
#include "TTree.h"
//
// class decleration
//
class SiPixelGainCalibrationReadDQMFile : public edm::one::EDAnalyzer<edm::one::SharedResources> {
public:
explicit SiPixelGainCalibrationReadDQMFile(const edm::ParameterSet &);
private:
void analyze(const edm::Event &, const edm::EventSetup &) final;
// functions added by F.B.
void fillDatabase(const edm::EventSetup &iSetup, TFile *);
std::unique_ptr<TFile> getHistograms();
// ----------member data ---------------------------
std::map<uint32_t, std::map<std::string, TString> > bookkeeper_;
std::map<uint32_t, std::map<double, double> > Meankeeper_;
std::map<uint32_t, std::vector<std::map<int, int> > > noisyPixelsKeeper_;
const bool appendMode_;
const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> pddToken_;
SiPixelGainCalibrationService theGainCalibrationDbInputService_;
std::unique_ptr<TH2F> defaultGain_;
std::unique_ptr<TH2F> defaultPed_;
std::unique_ptr<TH2F> defaultChi2_;
std::unique_ptr<TH2F> defaultFitResult_;
std::unique_ptr<TH1F> meanGainHist_;
std::unique_ptr<TH1F> meanPedHist_;
const std::string record_;
// keep track of lowest and highest vals for range
float gainlow_;
float gainhi_;
float pedlow_;
float pedhi_;
const bool usemeanwhenempty_;
const std::string rootfilestring_;
float gainmax_;
float pedmax_;
const double badchi2_;
const size_t nmaxcols;
const size_t nmaxrows;
};
void SiPixelGainCalibrationReadDQMFile::fillDatabase(const edm::EventSetup &iSetup, TFile *therootfile) {
// only create when necessary.
// process the minimum and maximum gain & ped values...
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now starting db fill!!!" << std::endl;
std::map<uint32_t, std::pair<TString, int> > badresults;
edm::Service<TFileService> fs;
// bool usedmean=false;
// bool isdead=false;
TH1F *VCAL_endpoint =
fs->make<TH1F>("VCAL_endpoint", "value where response = 255 ( x = (255 - ped)/gain )", 256, 0, 256);
TH1F *goodgains = fs->make<TH1F>("goodgains", "gain values", 100, 0, 10);
TH1F *goodpeds = fs->make<TH1F>("goodpeds", "pedestal values", 356, -100, 256);
TH1F *totgains = fs->make<TH1F>("totgains", "gain values", 200, 0, 10);
TH1F *totpeds = fs->make<TH1F>("totpeds", "pedestal values", 356, -100, 256);
TTree *tree = new TTree("tree", "tree");
int detidfortree, rowfortree, colfortree, useddefaultfortree;
float pedfortree, gainfortree, chi2fortree;
tree->Branch("detid", &detidfortree, "detid/I");
tree->Branch("row", &rowfortree, "row/I");
tree->Branch("col", &colfortree, "col/I");
tree->Branch("defaultval", &useddefaultfortree, "defaultval/I");
tree->Branch("ped", &pedfortree, "ped/F");
tree->Branch("gain", &gainfortree, "gain/F");
tree->Branch("chi2", &chi2fortree, "chi2/F");
// TH1F *gainPerDetid;
// TH1F *pedPerDetid;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now filling record " << record_ << std::endl;
if (record_ != "SiPixelGainCalibrationForHLTRcd" && record_ != "SiPixelGainCalibrationOfflineRcd") {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< "you passed record " << record_ << ", which I have no idea what to do with!" << std::endl;
return;
}
if (gainlow_ > gainhi_) {
float temp = gainhi_;
gainhi_ = gainlow_;
gainlow_ = temp;
}
if (pedlow_ > pedhi_) {
float temp = pedhi_;
pedhi_ = pedlow_;
pedlow_ = temp;
}
if (gainhi_ > gainmax_)
gainhi_ = gainmax_;
if (pedhi_ > pedmax_)
pedhi_ = pedmax_;
float badpedval = pedlow_ - 200;
float badgainval = gainlow_ - 200;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now filling db: values: pedlow, hi: " << pedlow_ << ", "
<< pedhi_ << " and gainlow, hi: " << gainlow_ << ", " << gainhi_;
float meangain = meanGainHist_->GetMean();
float meanped = meanPedHist_->GetMean();
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << ", and mean gain " << meangain<< ", ped " << meanped ;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << std::endl;
// and fill the dummy histos:
for (size_t icol = 0; icol < nmaxcols; ++icol) {
for (size_t irow = 0; irow < nmaxrows; ++irow) {
defaultGain_->SetBinContent(icol + 1, irow + 1, meangain);
defaultPed_->SetBinContent(icol + 1, irow + 1, meanped);
defaultChi2_->SetBinContent(icol + 1, irow + 1, 1.0);
defaultFitResult_->SetBinContent(icol + 1, irow + 1, 0);
}
}
SiPixelGainCalibration theGainCalibrationDbInput(pedlow_ * 0.999, pedhi_ * 1.001, gainlow_ * 0.999, gainhi_ * 1.001);
SiPixelGainCalibrationForHLT theGainCalibrationDbInputHLT(
pedlow_ * 0.999, pedhi_ * 1.001, gainlow_ * 0.999, gainhi_ * 1.001);
SiPixelGainCalibrationOffline theGainCalibrationDbInputOffline(
pedlow_ * 0.999, pedhi_ * 1.001, gainlow_ * 0.999, gainhi_ * 1.001);
uint32_t nchannels = 0;
uint32_t nmodules = 0;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< "now starting loop on detids, there are " << bookkeeper_.size() << " histograms to consider..." << std::endl;
uint32_t detid = 0;
therootfile->cd();
const TrackerGeometry *pDD = &iSetup.getData(pddToken_);
edm::LogInfo("SiPixelCondObjOfflineBuilder") << " There are " << pDD->dets().size() << " detectors" << std::endl;
for (TrackerGeometry::DetContainer::const_iterator it = pDD->dets().begin(); it != pDD->dets().end(); it++) {
detid = 0;
if (dynamic_cast<PixelGeomDetUnit const *>((*it)) != nullptr)
detid = ((*it)->geographicalId()).rawId();
if (detid == 0)
continue;
//if(detid!=344076812) continue;
int badDetId = 0;
//if(detid==302123296||detid==302126596) badDetId=1;;
//if(detid!=302058516) continue;
useddefaultfortree = 0;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< "now creating database object for detid " << detid
<< std::endl; //<< " " << bookkeeper_[detid]["gain_2d"] << " " << bookkeeper_[detid]["ped_2d"] << std::endl; //edm::LogPrint("SiPixelGainCalibrationReadDQMFile")<< " nrows:" << nrows << " ncols: " << ncols << std::endl;
// Get the module sizes.
TH2F *tempchi2;
TH2F *tempfitresult;
TH2F *tempgain;
TH2F *tempped;
TString tempgainstring;
if (!badDetId) {
TString tempchi2string = bookkeeper_[detid]["chi2prob_2d"];
tempchi2 = dynamic_cast<TH2F *>(therootfile->Get(tempchi2string));
if (tempchi2 == nullptr || badDetId) {
tempchi2 = defaultChi2_.get();
useddefaultfortree = 1;
}
TString tempfitresultstring = bookkeeper_[detid]["fitresult_2d"];
tempfitresult = dynamic_cast<TH2F *>(therootfile->Get(tempfitresultstring));
if (tempfitresult == nullptr) {
tempfitresult = defaultFitResult_.get();
useddefaultfortree = 1;
}
TString tempgainstring = bookkeeper_[detid]["gain_2d"];
tempgain = dynamic_cast<TH2F *>(therootfile->Get(tempgainstring));
if (tempgain == nullptr) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") <<"WARNING, gain histo " << bookkeeper_[detid]["gain_2d"] << " does not exist, using default instead" << std::endl;
tempgain = defaultGain_.get();
useddefaultfortree = 1;
}
TString temppedstring = bookkeeper_[detid]["ped_2d"];
tempped = dynamic_cast<TH2F *>(therootfile->Get(temppedstring));
if (tempped == nullptr) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") <<"WARNING, ped histo " << bookkeeper_[detid]["ped_2d"] << " for detid " << detid << " does not exist, using default instead" << std::endl;
std::pair<TString, int> tempval(tempgainstring, 0);
badresults[detid] = tempval;
tempped = defaultPed_.get();
useddefaultfortree = 1;
}
} else {
tempchi2 = defaultChi2_.get();
tempgain = defaultGain_.get();
tempfitresult = defaultFitResult_.get();
std::pair<TString, int> tempval(tempgainstring, 0);
badresults[detid] = tempval;
tempped = defaultPed_.get();
useddefaultfortree = 1;
}
const PixelGeomDetUnit *pixDet = dynamic_cast<const PixelGeomDetUnit *>((*it));
const PixelTopology &topol = pixDet->specificTopology();
// Get the module sizes.
size_t nrows = topol.nrows(); // rows in x
size_t ncols = topol.ncolumns(); // cols in y
// int nrows=tempgain->GetNbinsY();
// int ncols=tempgain->GetNbinsX();
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "next histo " << tempgain->GetTitle() << " has nrow,ncol:" << nrows << ","<< ncols << std::endl;
size_t nrowsrocsplit = theGainCalibrationDbInputHLT.getNumberOfRowsToAverageOver();
if (theGainCalibrationDbInputOffline.getNumberOfRowsToAverageOver() != nrowsrocsplit)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationAnalysis::fillDatabase] ERROR the SiPixelGainCalibrationOffline and "
"SiPixelGainCalibrationForHLT database payloads have different settings for the number of rows per roc: "
<< theGainCalibrationDbInputHLT.getNumberOfRowsToAverageOver() << "(HLT), "
<< theGainCalibrationDbInputOffline.getNumberOfRowsToAverageOver() << "(offline)";
std::vector<char> theSiPixelGainCalibrationPerPixel;
std::vector<char> theSiPixelGainCalibrationPerColumn;
std::vector<char> theSiPixelGainCalibrationGainPerColPedPerPixel;
//Get mean of gain/pedestal of this Detid
meangain = meanGainHist_->GetMean();
meanped = meanPedHist_->GetMean();
int npix = 0;
double meanGainForThisModule = 0;
double meanPedForThisModule = 0;
for (size_t icol = 1; icol <= ncols; icol++) {
for (size_t jrow = 1; jrow <= nrows; jrow++) {
if (tempfitresult->GetBinContent(icol, jrow) > 0) {
npix++;
meanGainForThisModule += tempgain->GetBinContent(icol, jrow);
meanPedForThisModule += tempped->GetBinContent(icol, jrow);
}
}
}
if (npix != 0)
meanPedForThisModule /= npix;
if (npix != 0)
meanGainForThisModule /= npix;
if (usemeanwhenempty_) {
if (meanGainForThisModule > gainlow_ && meanGainForThisModule < gainhi_ && npix > 100)
meangain = meanGainForThisModule;
if (meanPedForThisModule > pedlow_ && meanPedForThisModule < pedhi_ && npix > 100)
meanped = meanPedForThisModule;
}
// Loop over columns and rows of this DetID
float peds[160];
float gains[160];
float pedforthiscol[2];
float gainforthiscol[2];
int nusedrows[2];
//edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << pedlow_<<" "<<pedhi_<<" "<<gainlow_<<" "<<gainhi_<< std::endl;
for (size_t icol = 1; icol <= ncols; icol++) {
nusedrows[0] = nusedrows[1] = 0;
pedforthiscol[0] = pedforthiscol[1] = 0;
gainforthiscol[0] = gainforthiscol[1] = 0;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now lookign at col " << icol << std::endl;
for (size_t jrow = 1; jrow <= nrows; jrow++) {
size_t iglobalrow = 0;
if (jrow > nrowsrocsplit)
iglobalrow = 1;
peds[jrow] = badpedval;
gains[jrow] = badgainval;
float ped = tempped->GetBinContent(icol, jrow);
float gain = tempgain->GetBinContent(icol, jrow);
float chi2 = tempchi2->GetBinContent(icol, jrow);
float fitresult = tempfitresult->GetBinContent(icol, jrow);
if (ped > pedlow_ && gain > gainlow_ && ped < pedhi_ && gain < gainhi_ && (fitresult > 0)) {
VCAL_endpoint->Fill((255 - ped) / gain);
peds[jrow] = ped;
gains[jrow] = gain;
pedforthiscol[iglobalrow] += ped;
gainforthiscol[iglobalrow] += gain;
nusedrows[iglobalrow]++;
goodpeds->Fill(ped);
goodgains->Fill(gain);
detidfortree = detid;
rowfortree = jrow - 1;
colfortree = icol - 1;
gainfortree = gain;
pedfortree = ped;
chi2fortree = chi2;
tree->Fill();
} else {
if (usemeanwhenempty_) {
peds[jrow] = meanped;
gains[jrow] = meangain;
std::pair<TString, int> tempval(tempgainstring, 1);
badresults[detid] = tempval;
} else {
std::pair<TString, int> tempval(tempgainstring, 2);
badresults[detid] = tempval;
// if everything else fails: set the gain & ped now to dead
peds[jrow] = badpedval;
gains[jrow] = badgainval;
}
}
//edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << detid << " " << jrow << " " << icol << " " << peds[jrow] << " " << gains[jrow] << " " << chi2 << " " << fitresult << std::endl;
totgains->Fill(gains[jrow]);
totpeds->Fill(peds[jrow]);
} // now collected all info, actually do the filling
for (size_t jrow = 1; jrow <= nrows; jrow++) {
nchannels++;
size_t iglobalrow = 0;
if (jrow > nrowsrocsplit)
iglobalrow = 1;
float ped = peds[jrow];
float gain = gains[jrow];
if (ped > pedlow_ && gain > gainlow_ && ped < pedhi_ && gain < gainhi_) {
theGainCalibrationDbInput.setData(ped, gain, theSiPixelGainCalibrationPerPixel);
theGainCalibrationDbInputOffline.setDataPedestal(ped, theSiPixelGainCalibrationGainPerColPedPerPixel);
} else {
theGainCalibrationDbInput.setDeadPixel(theSiPixelGainCalibrationPerPixel);
theGainCalibrationDbInputOffline.setDeadPixel(theSiPixelGainCalibrationGainPerColPedPerPixel);
}
if (jrow % nrowsrocsplit == 0) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now in col " << icol << " " << jrow << " " << iglobalrow << std::endl;
if (nusedrows[iglobalrow] > 0) {
pedforthiscol[iglobalrow] /= (float)nusedrows[iglobalrow];
gainforthiscol[iglobalrow] /= (float)nusedrows[iglobalrow];
}
if (gainforthiscol[iglobalrow] > gainlow_ && gainforthiscol[iglobalrow] < gainhi_ &&
pedforthiscol[iglobalrow] > pedlow_ && pedforthiscol[iglobalrow] < pedhi_) { // good
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "setting ped & col aves: " << pedforthiscol[iglobalrow] << " " << gainforthiscol[iglobalrow]<< std::endl;
} else {
if (usemeanwhenempty_) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "setting ped & col aves: " << pedforthiscol[iglobalrow] << " " << gainforthiscol[iglobalrow]<< std::endl;
pedforthiscol[iglobalrow] = meanped;
gainforthiscol[iglobalrow] = meangain;
std::pair<TString, int> tempval(tempgainstring, 3);
badresults[detid] = tempval;
} else { //make dead
pedforthiscol[iglobalrow] = badpedval;
gainforthiscol[iglobalrow] = badgainval;
std::pair<TString, int> tempval(tempgainstring, 4);
badresults[detid] = tempval;
}
}
if (gainforthiscol[iglobalrow] > gainlow_ && gainforthiscol[iglobalrow] < gainhi_ &&
pedforthiscol[iglobalrow] > pedlow_ && pedforthiscol[iglobalrow] < pedhi_) {
theGainCalibrationDbInputOffline.setDataGain(
gainforthiscol[iglobalrow], nrowsrocsplit, theSiPixelGainCalibrationGainPerColPedPerPixel);
theGainCalibrationDbInputHLT.setData(
pedforthiscol[iglobalrow], gainforthiscol[iglobalrow], theSiPixelGainCalibrationPerColumn);
} else {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << pedforthiscol[iglobalrow] << " " << gainforthiscol[iglobalrow] << std::endl;
theGainCalibrationDbInputOffline.setDeadColumn(nrowsrocsplit,
theSiPixelGainCalibrationGainPerColPedPerPixel);
theGainCalibrationDbInputHLT.setDeadColumn(nrowsrocsplit, theSiPixelGainCalibrationPerColumn);
}
}
}
}
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "setting range..." << std::endl;
SiPixelGainCalibration::Range range(theSiPixelGainCalibrationPerPixel.begin(),
theSiPixelGainCalibrationPerPixel.end());
SiPixelGainCalibrationForHLT::Range hltrange(theSiPixelGainCalibrationPerColumn.begin(),
theSiPixelGainCalibrationPerColumn.end());
SiPixelGainCalibrationOffline::Range offlinerange(theSiPixelGainCalibrationGainPerColPedPerPixel.begin(),
theSiPixelGainCalibrationGainPerColPedPerPixel.end());
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") <<"putting things in db..." << std::endl;
// now start creating the various database objects
if (!theGainCalibrationDbInput.put(detid, range, ncols))
edm::LogError("SiPixelGainCalibrationAnalysis")
<< "warning: detid already exists for Offline (gain per col, ped per pixel) calibration database"
<< std::endl;
if (!theGainCalibrationDbInputOffline.put(detid, offlinerange, ncols))
edm::LogError("SiPixelGainCalibrationAnalysis")
<< "warning: detid already exists for Offline (gain per col, ped per pixel) calibration database"
<< std::endl;
if (!theGainCalibrationDbInputHLT.put(detid, hltrange, ncols))
edm::LogError("SiPixelGainCalibrationAnalysis")
<< "warning: detid already exists for HLT (pedestal and gain per column) calibration database" << std::endl;
//delete gainPerDetid;
}
// now printing out summary:
size_t nempty = 0;
size_t ndefault = 0;
size_t ndead = 0;
size_t ncoldefault = 0;
size_t ncoldead = 0;
for (std::map<uint32_t, std::pair<TString, int> >::const_iterator ibad = badresults.begin(); ibad != badresults.end();
++ibad) {
uint32_t detid = ibad->first;
if (badresults[detid].second == 0) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " used pixel mean value";
nempty++;
} else if (badresults[detid].second == 1) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " used pixel mean value";
ndefault++;
} else if (badresults[detid].second == 2) {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << badresults[detid].first;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " has one or more dead pixels";
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << std::endl;
ndead++;
} else if (badresults[detid].second == 3) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " used column mean value";
ncoldefault++;
} else if (badresults[detid].second == 4) {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << badresults[detid].first;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " has one or more dead columns";
ncoldead++;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << std::endl;
}
}
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< nempty << " modules were empty and now have pixels filled with default values." << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< ndefault << " modules have pixels filled with default values." << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << ndead << " modules have pixels flagged as dead." << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< ncoldefault << " modules have columns filled with default values." << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< ncoldead << " modules have columns filled with dead values." << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " ---> PIXEL Modules " << nmodules << "\n"
<< " ---> PIXEL Channels " << nchannels << std::endl;
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << " --- writing to DB!" << std::endl;
edm::Service<cond::service::PoolDBOutputService> mydbservice;
if (!mydbservice.isAvailable()) {
edm::LogError("db service unavailable");
return;
} else {
if (record_ == "SiPixelGainCalibrationForHLTRcd") {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< "now doing SiPixelGainCalibrationForHLTRcd payload..." << std::endl;
if (mydbservice->isNewTagRequest(record_)) {
mydbservice->createOneIOV<SiPixelGainCalibrationForHLT>(
theGainCalibrationDbInputHLT, mydbservice->beginOfTime(), "SiPixelGainCalibrationForHLTRcd");
} else {
mydbservice->appendOneIOV<SiPixelGainCalibrationForHLT>(
theGainCalibrationDbInputHLT, mydbservice->currentTime(), "SiPixelGainCalibrationForHLTRcd");
}
} else if (record_ == "SiPixelGainCalibrationOfflineRcd") {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile")
<< "now doing SiPixelGainCalibrationOfflineRcd payload..." << std::endl;
if (mydbservice->isNewTagRequest(record_)) {
mydbservice->createOneIOV<SiPixelGainCalibrationOffline>(
theGainCalibrationDbInputOffline, mydbservice->beginOfTime(), "SiPixelGainCalibrationOfflineRcd");
} else {
mydbservice->appendOneIOV<SiPixelGainCalibrationOffline>(
theGainCalibrationDbInputOffline, mydbservice->currentTime(), "SiPixelGainCalibrationOfflineRcd");
}
}
edm::LogInfo(" --- all OK");
}
}
SiPixelGainCalibrationReadDQMFile::SiPixelGainCalibrationReadDQMFile(const edm::ParameterSet &iConfig)
: appendMode_(iConfig.getUntrackedParameter<bool>("appendMode", true)),
pddToken_(esConsumes()),
theGainCalibrationDbInputService_(iConfig, consumesCollector()),
record_(iConfig.getUntrackedParameter<std::string>("record", "SiPixelGainCalibrationOfflineRcd")),
gainlow_(10.),
gainhi_(0.),
pedlow_(255.),
pedhi_(-256),
usemeanwhenempty_(iConfig.getUntrackedParameter<bool>("useMeanWhenEmpty", false)),
rootfilestring_(iConfig.getUntrackedParameter<std::string>("inputrootfile", "inputfile.root")),
gainmax_(20),
pedmax_(200),
badchi2_(iConfig.getUntrackedParameter<double>("badChi2Prob", 0.01)),
nmaxcols(10 * 52),
nmaxrows(160) {
usesResource(TFileService::kSharedResource);
//now do what ever initialization is needed
::putenv((char *)"CORAL_AUTH_USER=me");
::putenv((char *)"CORAL_AUTH_PASSWORD=test");
meanGainHist_ = std::make_unique<TH1F>("meanGainHist", "mean Gain Hist", 500, 0, gainmax_);
meanPedHist_ = std::make_unique<TH1F>("meanPedHist", "mean Ped Hist", 512, -200, pedmax_);
defaultGain_ = std::make_unique<TH2F>("defaultGain",
"default gain, contains mean",
nmaxcols,
0,
nmaxcols,
nmaxrows,
0,
nmaxrows); // using dummy (largest) module size
defaultPed_ = std::make_unique<TH2F>("defaultPed",
"default pedestal, contains mean",
nmaxcols,
0,
nmaxcols,
nmaxrows,
0,
nmaxrows); // using dummy (largest) module size
defaultFitResult_ = std::make_unique<TH2F>("defaultFitResult",
"default fitresult, contains '0'",
nmaxcols,
0,
nmaxcols,
nmaxrows,
0,
nmaxrows); // using dummy (largest) module size
defaultChi2_ = std::make_unique<TH2F>("defaultChi2",
"default chi2 probability, contains '1'",
nmaxcols,
0,
nmaxcols,
nmaxrows,
0,
nmaxrows); // using dummy (largest) module size
}
//
// member functions
//
// ------------ method called to for each event ------------
void SiPixelGainCalibrationReadDQMFile::analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) {
auto histfile = getHistograms();
fillDatabase(iSetup, histfile.get());
// empty but should not be called anyway
}
std::unique_ptr<TFile> SiPixelGainCalibrationReadDQMFile::getHistograms() {
edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now parsing file " << rootfilestring_ << std::endl;
auto therootfile = std::make_unique<TFile>(rootfilestring_.c_str());
therootfile->cd();
TDirectory *dir = therootfile->GetDirectory("DQMData");
TList *list = dir->GetListOfKeys();
TString comparestring = "Module";
std::vector<TString> keylist;
std::vector<TString> hist2list;
std::vector<TString> dirlist;
std::vector<TString> notdonelist;
std::vector<int> nsubdirs;
int ikey = 0;
for (ikey = 0; ikey < list->GetEntries(); ikey++) {
TKey *thekey = (TKey *)list->At(ikey);
if (thekey == nullptr)
continue;
TString keyname = thekey->GetName();
TString keytype = thekey->GetClassName();
// if(keyname=="EventInfo")
// continue;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << keytype << " " << keyname << std::endl;
if (keytype == "TDirectoryFile") {
TString dirname = dir->GetPath();
dirname += "/";
dirname += keyname;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirname << std::endl;
dir = therootfile->GetDirectory(dirname);
list = dir->GetListOfKeys();
if (dirname.Contains(comparestring)) {
dirlist.push_back(dirname);
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirname << std::endl;
} else {
notdonelist.push_back(dirname);
nsubdirs.push_back(-1);
}
}
}
size_t nempty = 0;
while (nempty != notdonelist.size()) {
for (size_t idir = 0; idir < notdonelist.size(); ++idir) {
if (nsubdirs[idir] == 0)
continue;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now examining " << notdonelist[idir]<< " " << nsubdirs[idir] << std::endl;
dir = therootfile->GetDirectory(notdonelist[idir]);
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dir->GetName() << std::endl;
list = dir->GetListOfKeys();
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << list->GetEntries() << std::endl;
int ndirectories = 0;
for (ikey = 0; ikey < list->GetEntries(); ikey++) {
TKey *thekey = (TKey *)list->At(ikey);
if (thekey == nullptr)
continue;
TString keyname = thekey->GetName();
TString keytype = thekey->GetClassName();
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << keyname << " " << keytype << std::endl;
if (keytype == "TDirectoryFile") {
TString dirname = dir->GetPath();
dirname += "/";
dirname += keyname;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirname << std::endl;
ndirectories++;
if (dirname.Contains(comparestring)) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirname << std::endl;
dirlist.push_back(dirname);
} else {
notdonelist.push_back(dirname);
nsubdirs.push_back(-1);
}
}
}
nsubdirs[idir] = ndirectories;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "now done examining " << notdonelist[idir]<< " " << nsubdirs[idir] << std::endl;
}
nempty = 0;
for (size_t i = 0; i < nsubdirs.size(); i++) {
if (nsubdirs[i] != -1)
nempty++;
}
}
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "\n done!" << std::endl;
for (size_t idir = 0; idir < dirlist.size(); ++idir) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << "good dir " << dirlist[idir] << std::endl;
uint32_t detid = 1;
dir = therootfile->GetDirectory(dirlist[idir]);
list = dir->GetListOfKeys();
for (ikey = 0; ikey < list->GetEntries(); ikey++) {
TKey *thekey = (TKey *)list->At(ikey);
if (thekey == nullptr)
continue;
TString keyname = thekey->GetName();
TString keytype = thekey->GetClassName();
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << keyname << " " << keytype << std::endl;
if (keytype == "TH2F" && (keyname.Contains("Gain2d") || keyname.Contains("Pedestal2d") ||
keyname.Contains("GainChi2Prob2d") || keyname.Contains("GainFitResult2d"))) {
TString detidstring = keyname;
detidstring.Remove(0, detidstring.Sizeof() - 10);
detid = atoi(detidstring.Data());
if (keyname.Contains("GainChi2Prob2d")) {
TString tempstr = dirlist[idir];
tempstr += "/";
tempstr += keyname;
TString replacestring = rootfilestring_;
replacestring += ":";
tempstr.ReplaceAll(replacestring, "");
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << tempstr << std::endl;
bookkeeper_[detid]["chi2prob_2d"] = tempstr;
} else if (keyname.Contains("GainFitResult2d")) {
TString tempstr = dirlist[idir];
tempstr += "/";
tempstr += keyname;
TString replacestring = rootfilestring_;
replacestring += ":";
tempstr.ReplaceAll(replacestring, "");
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << tempstr << std::endl;
bookkeeper_[detid]["fitresult_2d"] = tempstr;
} else if (keyname.Contains("Gain2d")) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirlist[idir] << std::endl;
std::map<std::string, TString> tempmap;
TString tempstr = dirlist[idir];
tempstr += "/";
tempstr += keyname;
TString replacestring = rootfilestring_;
replacestring += ":";
tempstr.ReplaceAll(replacestring, "");
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << tempstr << std::endl;
bookkeeper_[detid]["gain_2d"] = tempstr;
//edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << detidstring << " " << keyname << " " << detid << " " << bookkeeper_[detid]["gain_2d"] << std::endl ;
}
if (keyname.Contains("Pedestal2d")) {
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << dirlist[idir] << std::endl;
std::map<std::string, TString> tempmap;
TString tempstr = dirlist[idir];
tempstr += "/";
tempstr += keyname;
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << tempstr << std::endl;
TString replacestring = rootfilestring_;
replacestring += ":";
tempstr.ReplaceAll(replacestring, "");
bookkeeper_[detid]["ped_2d"] = tempstr;
//edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << detidstring << " " << keyname << " " << detid << " " << bookkeeper_[detid]["ped_2d"] << std::endl ;
}
// edm::LogPrint("SiPixelGainCalibrationReadDQMFile") << keyname << " " << keytype << std::endl;
}
}
TH2F *temphistoped = dynamic_cast<TH2F *>(therootfile->Get(bookkeeper_[detid]["ped_2d"]));
TH2F *temphistogain = dynamic_cast<TH2F *>(therootfile->Get(bookkeeper_[detid]["gain_2d"]));
TH2F *temphistofitresult = dynamic_cast<TH2F *>(therootfile->Get(bookkeeper_[detid]["gain_2d"]));
for (int xbin = 1; xbin <= temphistoped->GetNbinsX(); ++xbin) {
for (int ybin = 1; ybin <= temphistoped->GetNbinsY(); ++ybin) {
if (temphistofitresult->GetBinContent(xbin, ybin) <= 0)
continue;
float val = temphistoped->GetBinContent(xbin, ybin);
if (val > pedmax_)
continue;
if (pedlow_ > val)
pedlow_ = val;
if (pedhi_ < val)
pedhi_ = val;
meanPedHist_->Fill(val);
}
}
for (int xbin = 1; xbin <= temphistogain->GetNbinsX(); ++xbin) {
for (int ybin = 1; ybin <= temphistogain->GetNbinsY(); ++ybin) {
if (temphistofitresult->GetBinContent(xbin, ybin) <= 0)
continue;
float val = temphistogain->GetBinContent(xbin, ybin);
if (val <= 0.0001)
continue;
if (gainlow_ > val)
gainlow_ = val;
if (gainhi_ < val)
gainhi_ = val;
meanGainHist_->Fill(val);
}
}
} // end of loop over dirlist
return therootfile;
}
//define this as a plug-in
DEFINE_FWK_MODULE(SiPixelGainCalibrationReadDQMFile);
|