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
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
|
// system include files
#include <memory>
// CMSSW includes
#include "CondFormats/SiStripObjects/interface/SiStripApvGain.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/SiStripCluster/interface/SiStripClusterCollection.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
#include "DataFormats/TrackReco/interface/Track.h"
#include "DataFormats/TrackReco/interface/TrackFwd.h"
#include "DataFormats/TrackerRecHit2D/interface/SiPixelRecHit.h"
#include "DataFormats/TrackerRecHit2D/interface/SiStripMatchedRecHit2D.h"
#include "DataFormats/TrackerRecHit2D/interface/SiStripRecHit1D.h"
#include "DataFormats/TrackerRecHit2D/interface/SiStripRecHit2D.h"
#include "Geometry/CommonDetUnit/interface/TrackingGeometry.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/TrackerNumberingBuilder/interface/GeometricDet.h"
// user include files
#include "CalibTracker/SiStripChannelGain/interface/SiStripGainsPCLHarvester.h"
#include "CalibTracker/SiStripChannelGain/interface/APVGainHelpers.h"
#include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include <iostream>
#include <sstream>
// ROOT includes
#include <TROOT.h>
#include <TTree.h>
//********************************************************************************//
SiStripGainsPCLHarvester::SiStripGainsPCLHarvester(const edm::ParameterSet& ps)
: doStoreOnDB(false), GOOD(0), BAD(0), MASKED(0), NStripAPVs(0), NPixelDets(0) {
m_Record = ps.getUntrackedParameter<std::string>("Record", "SiStripApvGainRcd");
CalibrationLevel = ps.getUntrackedParameter<int>("CalibrationLevel", 0);
MinNrEntries = ps.getUntrackedParameter<double>("minNrEntries", 20);
m_DQMdir = ps.getUntrackedParameter<std::string>("DQMdir", "AlCaReco/SiStripGains");
m_calibrationMode = ps.getUntrackedParameter<std::string>("calibrationMode", "StdBunch");
tagCondition_NClusters = ps.getUntrackedParameter<double>("NClustersForTagProd", 2E8);
tagCondition_GoodFrac = ps.getUntrackedParameter<double>("GoodFracForTagProd", 0.95);
doChargeMonitorPerPlane = ps.getUntrackedParameter<bool>("doChargeMonitorPerPlane", false);
VChargeHisto = ps.getUntrackedParameter<std::vector<std::string>>("ChargeHisto");
fit_gaussianConvolution_ = ps.getUntrackedParameter<bool>("FitGaussianConvolution", false);
fit_gaussianConvolutionTOBL56_ = ps.getUntrackedParameter<bool>("FitGaussianConvolutionTOBL5L6", false);
fit_dataDrivenRange_ = ps.getUntrackedParameter<bool>("FitDataDrivenRange", false);
storeGainsTree_ = ps.getUntrackedParameter<bool>("StoreGainsTree", false);
//Set the monitoring element tag and store
dqm_tag_.reserve(7);
dqm_tag_.clear();
dqm_tag_.push_back("StdBunch"); // statistic collection from Standard Collision Bunch @ 3.8 T
dqm_tag_.push_back("StdBunch0T"); // statistic collection from Standard Collision Bunch @ 0 T
dqm_tag_.push_back("AagBunch"); // statistic collection from First Collision After Abort Gap @ 3.8 T
dqm_tag_.push_back("AagBunch0T"); // statistic collection from First Collision After Abort Gap @ 0 T
dqm_tag_.push_back("IsoMuon"); // statistic collection from Isolated Muon @ 3.8 T
dqm_tag_.push_back("IsoMuon0T"); // statistic collection from Isolated Muon @ 0 T
dqm_tag_.push_back("Harvest"); // statistic collection: Harvest
tTopoTokenBR_ = esConsumes<edm::Transition::BeginRun>();
tTopoTokenER_ = esConsumes<edm::Transition::EndRun>();
tkGeomToken_ = esConsumes<edm::Transition::BeginRun>();
gainToken_ = esConsumes<edm::Transition::BeginRun>();
qualityToken_ = esConsumes<edm::Transition::BeginRun>();
}
//********************************************************************************//
// ------------ method called for each event ------------
void SiStripGainsPCLHarvester::beginRun(edm::Run const& run, const edm::EventSetup& iSetup) {
using namespace edm;
static constexpr float defaultGainTick = 690. / 640.;
this->checkBookAPVColls(iSetup); // check whether APV colls are booked and do so if not yet done
const auto gainHandle = iSetup.getHandle(gainToken_);
if (!gainHandle.isValid()) {
edm::LogError("SiStripGainPCLHarvester") << "gainHandle is not valid\n";
exit(0);
}
const auto& stripQuality = iSetup.getData(qualityToken_);
for (unsigned int a = 0; a < APVsCollOrdered.size(); a++) {
std::shared_ptr<stAPVGain> APV = APVsCollOrdered[a];
if (APV->SubDet == PixelSubdetector::PixelBarrel || APV->SubDet == PixelSubdetector::PixelEndcap)
continue;
APV->isMasked = stripQuality.IsApvBad(APV->DetId, APV->APVId);
if (gainHandle->getNumberOfTags() != 2) {
edm::LogError("SiStripGainPCLHarvester") << "NUMBER OF GAIN TAG IS EXPECTED TO BE 2\n";
fflush(stdout);
exit(0);
};
float newPreviousGain = gainHandle->getApvGain(APV->APVId, gainHandle->getRange(APV->DetId, 1), 1);
if (APV->PreviousGain != 1 and newPreviousGain != APV->PreviousGain)
edm::LogWarning("SiStripGainPCLHarvester") << "WARNING: ParticleGain in the global tag changed\n";
APV->PreviousGain = newPreviousGain;
float newPreviousGainTick =
APV->isMasked ? defaultGainTick : gainHandle->getApvGain(APV->APVId, gainHandle->getRange(APV->DetId, 0), 0);
if (APV->PreviousGainTick != 1 and newPreviousGainTick != APV->PreviousGainTick) {
edm::LogWarning("SiStripGainPCLHarvester")
<< "WARNING: TickMarkGain in the global tag changed\n"
<< std::endl
<< " APV->SubDet: " << APV->SubDet << " APV->APVId:" << APV->APVId << std::endl
<< " APV->PreviousGainTick: " << APV->PreviousGainTick << " newPreviousGainTick: " << newPreviousGainTick
<< std::endl;
}
APV->PreviousGainTick = newPreviousGainTick;
}
}
//********************************************************************************//
void SiStripGainsPCLHarvester::dqmEndJob(DQMStore::IBooker& ibooker_, DQMStore::IGetter& igetter_) {
edm::LogInfo("SiStripGainsPCLHarvester") << "Starting harvesting statistics" << std::endl;
std::string DQM_dir = m_DQMdir;
std::string stag = *(std::find(dqm_tag_.begin(), dqm_tag_.end(), m_calibrationMode));
if (!stag.empty() && stag[0] != '_')
stag.insert(0, 1, '_');
std::string cvi = DQM_dir + std::string("/Charge_Vs_Index") + stag;
MonitorElement* Charge_Vs_Index = igetter_.get(cvi);
if (Charge_Vs_Index == nullptr) {
edm::LogError("SiStripGainsPCLHarvester")
<< "Harvesting: could not retrieve " << cvi.c_str() << ", statistics will not be summed!" << std::endl;
} else {
edm::LogInfo("SiStripGainsPCLHarvester")
<< "Harvesting " << (Charge_Vs_Index)->getTH2S()->GetEntries() << " more clusters" << std::endl;
}
algoComputeMPVandGain(Charge_Vs_Index);
std::unique_ptr<SiStripApvGain> theAPVGains = this->getNewObject(Charge_Vs_Index);
// write out the APVGains record
edm::Service<cond::service::PoolDBOutputService> poolDbService;
if (doStoreOnDB) {
if (poolDbService.isAvailable())
poolDbService->writeOneIOV(*theAPVGains, poolDbService->currentTime(), m_Record);
else
throw std::runtime_error("PoolDBService required.");
} else {
edm::LogInfo("SiStripGainsPCLHarvester") << "Will not produce payload!" << std::endl;
}
//Collect the statistics for monitoring and validation
gainQualityMonitor(ibooker_, Charge_Vs_Index);
if (storeGainsTree_) {
if (Charge_Vs_Index != nullptr) {
storeGainsTree(Charge_Vs_Index->getTH2S()->GetXaxis());
} else {
edm::LogError("SiStripGainsPCLHarvester")
<< "Harvesting: could not retrieve " << cvi.c_str() << "Tree won't be stored" << std::endl;
}
}
}
//********************************************************************************//
void SiStripGainsPCLHarvester::gainQualityMonitor(DQMStore::IBooker& ibooker_,
const MonitorElement* Charge_Vs_Index) const {
ibooker_.setCurrentFolder("AlCaReco/SiStripGainsHarvesting/");
std::vector<APVGain::APVmon> new_charge_histos;
std::vector<std::pair<std::string, std::string>> cnames =
APVGain::monHnames(VChargeHisto, doChargeMonitorPerPlane, "newG2");
for (unsigned int i = 0; i < cnames.size(); i++) {
MonitorElement* monitor = ibooker_.book1DD((cnames[i]).first, (cnames[i]).second.c_str(), 100, 0., 1000.);
int thick = APVGain::thickness((cnames[i]).first);
int id = APVGain::subdetectorId((cnames[i]).first);
int side = APVGain::subdetectorSide((cnames[i]).first);
int plane = APVGain::subdetectorPlane((cnames[i]).first);
new_charge_histos.push_back(APVGain::APVmon(thick, id, side, plane, monitor));
}
int MPVbin = 300;
float MPVmin = 0.;
float MPVmax = 600.;
MonitorElement* MPV_Vs_EtaTIB =
ibooker_.book2DD("MPVvsEtaTIB", "MPV vs Eta TIB", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_EtaTID =
ibooker_.book2DD("MPVvsEtaTID", "MPV vs Eta TID", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_EtaTOB =
ibooker_.book2DD("MPVvsEtaTOB", "MPV vs Eta TOB", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_EtaTEC =
ibooker_.book2DD("MPVvsEtaTEC", "MPV vs Eta TEC", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_EtaTECthin =
ibooker_.book2DD("MPVvsEtaTEC1", "MPV vs Eta TEC-thin", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_EtaTECthick =
ibooker_.book2DD("MPVvsEtaTEC2", "MPV vs Eta TEC-thick", 50, -3.0, 3.0, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTIB =
ibooker_.book2DD("MPVvsPhiTIB", "MPV vs Phi TIB", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTID =
ibooker_.book2DD("MPVvsPhiTID", "MPV vs Phi TID", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTOB =
ibooker_.book2DD("MPVvsPhiTOB", "MPV vs Phi TOB", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTEC =
ibooker_.book2DD("MPVvsPhiTEC", "MPV vs Phi TEC", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTECthin =
ibooker_.book2DD("MPVvsPhiTEC1", "MPV vs Phi TEC-thin ", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* MPV_Vs_PhiTECthick =
ibooker_.book2DD("MPVvsPhiTEC2", "MPV vs Phi TEC-thick", 50, -3.4, 3.4, MPVbin, MPVmin, MPVmax);
MonitorElement* NoMPVfit = ibooker_.book2DD("NoMPVfit", "Modules with bad Landau Fit", 350, -350, 350, 240, 0, 120);
MonitorElement* NoMPVmasked = ibooker_.book2DD("NoMPVmasked", "Masked Modules", 350, -350, 350, 240, 0, 120);
MonitorElement* Gains = ibooker_.book1DD("Gains", "Gains", 300, 0, 2);
MonitorElement* MPVs = ibooker_.book1DD("MPVs", "MPVs", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVs320 = ibooker_.book1DD("MPV_320", "MPV 320 thickness", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVs500 = ibooker_.book1DD("MPV_500", "MPV 500 thickness", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTIB = ibooker_.book1DD("MPV_TIB", "MPV TIB", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTID = ibooker_.book1DD("MPV_TID", "MPV TID", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTIDP = ibooker_.book1DD("MPV_TIDP", "MPV TIDP", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTIDM = ibooker_.book1DD("MPV_TIDM", "MPV TIDM", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTOB = ibooker_.book1DD("MPV_TOB", "MPV TOB", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTEC = ibooker_.book1DD("MPV_TEC", "MPV TEC", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECP = ibooker_.book1DD("MPV_TECP", "MPV TECP", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECM = ibooker_.book1DD("MPV_TECM", "MPV TECM", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECthin = ibooker_.book1DD("MPV_TEC1", "MPV TEC thin", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECthick = ibooker_.book1DD("MPV_TEC2", "MPV TEC thick", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECP1 = ibooker_.book1DD("MPV_TECP1", "MPV TECP thin ", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECP2 = ibooker_.book1DD("MPV_TECP2", "MPV TECP thick", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECM1 = ibooker_.book1DD("MPV_TECM1", "MPV TECM thin", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVsTECM2 = ibooker_.book1DD("MPV_TECM2", "MPV TECM thick", MPVbin, MPVmin, MPVmax);
MonitorElement* MPVError = ibooker_.book1DD("MPVError", "MPV Error", 150, 0, 150);
MonitorElement* MPVErrorVsMPV = ibooker_.book2DD("MPVErrorVsMPV", "MPV Error vs MPV", 300, 0, 600, 150, 0, 150);
MonitorElement* MPVErrorVsEta = ibooker_.book2DD("MPVErrorVsEta", "MPV Error vs Eta", 50, -3.0, 3.0, 150, 0, 150);
MonitorElement* MPVErrorVsPhi = ibooker_.book2DD("MPVErrorVsPhi", "MPV Error vs Phi", 50, -3.4, 3.4, 150, 0, 150);
MonitorElement* MPVErrorVsN = ibooker_.book2DD("MPVErrorVsN", "MPV Error vs N", 500, 0, 1000, 150, 0, 150);
MonitorElement* DiffWRTPrevGainTIB = ibooker_.book1DD("DiffWRTPrevGainTIB", "Diff w.r.t. PrevGain TIB", 250, 0, 2);
MonitorElement* DiffWRTPrevGainTID = ibooker_.book1DD("DiffWRTPrevGainTID", "Diff w.r.t. PrevGain TID", 250, 0, 2);
MonitorElement* DiffWRTPrevGainTOB = ibooker_.book1DD("DiffWRTPrevGainTOB", "Diff w.r.t. PrevGain TOB", 250, 0, 2);
MonitorElement* DiffWRTPrevGainTEC = ibooker_.book1DD("DiffWRTPrevGainTEC", "Diff w.r.t. PrevGain TEC", 250, 0, 2);
MonitorElement* GainVsPrevGainTIB =
ibooker_.book2DD("GainVsPrevGainTIB", "Gain vs PrevGain TIB", 100, 0, 2, 100, 0, 2);
MonitorElement* GainVsPrevGainTID =
ibooker_.book2DD("GainVsPrevGainTID", "Gain vs PrevGain TID", 100, 0, 2, 100, 0, 2);
MonitorElement* GainVsPrevGainTOB =
ibooker_.book2DD("GainVsPrevGainTOB", "Gain vs PrevGain TOB", 100, 0, 2, 100, 0, 2);
MonitorElement* GainVsPrevGainTEC =
ibooker_.book2DD("GainVsPrevGainTEC", "Gain vs PrevGain TEC", 100, 0, 2, 100, 0, 2);
for (unsigned int a = 0; a < APVsCollOrdered.size(); a++) {
std::shared_ptr<stAPVGain> APV = APVsCollOrdered[a];
if (APV == nullptr)
continue;
unsigned int Index = APV->Index;
unsigned int SubDet = APV->SubDet;
unsigned int DetId = APV->DetId;
float z = APV->z;
float Eta = APV->Eta;
float R = APV->R;
float Phi = APV->Phi;
float Thickness = APV->Thickness;
double FitMPV = APV->FitMPV;
double FitMPVErr = APV->FitMPVErr;
double Gain = APV->Gain;
double NEntries = APV->NEntries;
double PreviousGain = APV->PreviousGain;
if (SubDet < 3)
continue; // avoid to loop over Pixel det id
if (Gain != 1.) {
std::vector<MonitorElement*> charge_histos = APVGain::FetchMonitor(new_charge_histos, DetId, tTopo_.get());
if (!Charge_Vs_Index)
continue;
TH2S* chvsidx = (Charge_Vs_Index)->getTH2S();
int bin = chvsidx->GetXaxis()->FindBin(Index);
TH1D* Proj = chvsidx->ProjectionY("proj", bin, bin);
for (int binId = 0; binId < Proj->GetXaxis()->GetNbins(); binId++) {
double new_charge = Proj->GetXaxis()->GetBinCenter(binId) / Gain;
if (Proj->GetBinContent(binId) != 0.) {
for (unsigned int h = 0; h < charge_histos.size(); h++) {
TH1D* chisto = (charge_histos[h])->getTH1D();
for (int e = 0; e < Proj->GetBinContent(binId); e++)
chisto->Fill(new_charge);
}
}
}
}
if (FitMPV <= 0.) { // No fit of MPV
if (APV->isMasked)
NoMPVmasked->Fill(z, R);
else
NoMPVfit->Fill(z, R);
} else { // Fit of MPV
if (FitMPV > 0.)
Gains->Fill(Gain);
MPVs->Fill(FitMPV);
if (Thickness < 0.04)
MPVs320->Fill(FitMPV);
if (Thickness > 0.04)
MPVs500->Fill(FitMPV);
MPVError->Fill(FitMPVErr);
MPVErrorVsMPV->Fill(FitMPV, FitMPVErr);
MPVErrorVsEta->Fill(Eta, FitMPVErr);
MPVErrorVsPhi->Fill(Phi, FitMPVErr);
MPVErrorVsN->Fill(NEntries, FitMPVErr);
if (SubDet == 3) {
MPV_Vs_EtaTIB->Fill(Eta, FitMPV);
MPV_Vs_PhiTIB->Fill(Phi, FitMPV);
MPVsTIB->Fill(FitMPV);
} else if (SubDet == 4) {
MPV_Vs_EtaTID->Fill(Eta, FitMPV);
MPV_Vs_PhiTID->Fill(Phi, FitMPV);
MPVsTID->Fill(FitMPV);
if (Eta < 0.)
MPVsTIDM->Fill(FitMPV);
if (Eta > 0.)
MPVsTIDP->Fill(FitMPV);
} else if (SubDet == 5) {
MPV_Vs_EtaTOB->Fill(Eta, FitMPV);
MPV_Vs_PhiTOB->Fill(Phi, FitMPV);
MPVsTOB->Fill(FitMPV);
} else if (SubDet == 6) {
MPV_Vs_EtaTEC->Fill(Eta, FitMPV);
MPV_Vs_PhiTEC->Fill(Phi, FitMPV);
MPVsTEC->Fill(FitMPV);
if (Eta < 0.)
MPVsTECM->Fill(FitMPV);
if (Eta > 0.)
MPVsTECP->Fill(FitMPV);
if (Thickness < 0.04) {
MPV_Vs_EtaTECthin->Fill(Eta, FitMPV);
MPV_Vs_PhiTECthin->Fill(Phi, FitMPV);
MPVsTECthin->Fill(FitMPV);
if (Eta > 0.)
MPVsTECP1->Fill(FitMPV);
if (Eta < 0.)
MPVsTECM1->Fill(FitMPV);
}
if (Thickness > 0.04) {
MPV_Vs_EtaTECthick->Fill(Eta, FitMPV);
MPV_Vs_PhiTECthick->Fill(Phi, FitMPV);
MPVsTECthick->Fill(FitMPV);
if (Eta > 0.)
MPVsTECP2->Fill(FitMPV);
if (Eta < 0.)
MPVsTECM2->Fill(FitMPV);
}
}
}
if (SubDet == 3 && PreviousGain != 0.)
DiffWRTPrevGainTIB->Fill(Gain / PreviousGain);
else if (SubDet == 4 && PreviousGain != 0.)
DiffWRTPrevGainTID->Fill(Gain / PreviousGain);
else if (SubDet == 5 && PreviousGain != 0.)
DiffWRTPrevGainTOB->Fill(Gain / PreviousGain);
else if (SubDet == 6 && PreviousGain != 0.)
DiffWRTPrevGainTEC->Fill(Gain / PreviousGain);
if (SubDet == 3)
GainVsPrevGainTIB->Fill(PreviousGain, Gain);
else if (SubDet == 4)
GainVsPrevGainTID->Fill(PreviousGain, Gain);
else if (SubDet == 5)
GainVsPrevGainTOB->Fill(PreviousGain, Gain);
else if (SubDet == 6)
GainVsPrevGainTEC->Fill(PreviousGain, Gain);
}
}
namespace {
std::pair<double, double> findFitRange(TH1* inputHisto) {
const auto prevErrorIgnoreLevel = gErrorIgnoreLevel;
gErrorIgnoreLevel = kError;
auto charge_clone = std::unique_ptr<TH1D>(dynamic_cast<TH1D*>(inputHisto->Rebin(10, "charge_clone")));
gErrorIgnoreLevel = prevErrorIgnoreLevel;
float max_content = -1;
float xMax = -1;
for (int i = 1; i < charge_clone->GetNbinsX() + 1; ++i) {
const auto bin_content = charge_clone->GetBinContent(i);
const auto bin_center = charge_clone->GetXaxis()->GetBinCenter(i);
if ((bin_content > max_content) && (bin_center > 100.)) {
max_content = bin_content;
xMax = bin_center;
}
}
return std::pair<double, double>(xMax - 100., xMax + 500.);
}
Double_t langaufun(Double_t* x, Double_t* par) {
// Numeric constants
Double_t invsq2pi = 0.3989422804014; // (2 pi)^(-1/2)
Double_t mpshift = -0.22278298; // Landau maximum location
// Control constants
Double_t np = 100.0; // number of convolution steps
Double_t sc = 5.0; // convolution extends to +-sc Gaussian sigmas
// Variables
Double_t xx;
Double_t mpc;
Double_t fland;
Double_t sum = 0.0;
Double_t xlow, xupp;
Double_t step;
Double_t i;
// MP shift correction
mpc = par[1] - mpshift * par[0];
// Range of convolution integral
xlow = x[0] - sc * par[3];
xupp = x[0] + sc * par[3];
step = (xupp - xlow) / np;
// Convolution integral of Landau and Gaussian by sum
for (i = 1.0; i <= np / 2; i++) {
xx = xlow + (i - .5) * step;
fland = TMath::Landau(xx, mpc, par[0]) / par[0];
sum += fland * TMath::Gaus(x[0], xx, par[3]);
xx = xupp - (i - .5) * step;
fland = TMath::Landau(xx, mpc, par[0]) / par[0];
sum += fland * TMath::Gaus(x[0], xx, par[3]);
}
return (par[2] * step * sum * invsq2pi / par[3]);
}
std::unique_ptr<TF1> langaufit(TH1D* his,
Double_t* fitrange,
Double_t* startvalues,
Double_t* parlimitslo,
Double_t* parlimitshi,
Double_t* fitparams,
Double_t* fiterrors,
Double_t* ChiSqr,
Int_t* NDF) {
Int_t i;
Char_t FunName[100];
sprintf(FunName, "Fitfcn_%s", his->GetName());
TF1* ffitold = dynamic_cast<TF1*>(gROOT->GetListOfFunctions()->FindObject(FunName));
if (ffitold)
delete ffitold;
auto ffit = std::make_unique<TF1>(FunName, langaufun, fitrange[0], fitrange[1], 4);
//TF1 *ffit = new TF1(FunName,langaufun,his->GetXaxis()->GetXmin(),his->GetXaxis()->GetXmax(),4);
ffit->SetParameters(startvalues);
ffit->SetParNames("Width", "MP", "Area", "GSigma");
for (i = 0; i < 4; i++) {
ffit->SetParLimits(i, parlimitslo[i], parlimitshi[i]);
}
his->Fit(FunName, "QRB0"); // fit within specified range, use ParLimits, do not plot
ffit->GetParameters(fitparams); // obtain fit parameters
for (i = 0; i < 4; i++) {
fiterrors[i] = ffit->GetParError(i); // obtain fit parameter errors
}
ChiSqr[0] = ffit->GetChisquare(); // obtain chi^2
NDF[0] = ffit->GetNDF(); // obtain ndf
return ffit; // return fit function
}
} // namespace
//********************************************************************************//
void SiStripGainsPCLHarvester::algoComputeMPVandGain(const MonitorElement* Charge_Vs_Index) {
unsigned int I = 0;
TH1D* Proj = nullptr;
static constexpr double DEF_F = -9999.;
double FitResults[6] = {DEF_F, DEF_F, DEF_F, DEF_F, DEF_F, DEF_F};
double MPVmean = 300;
if (Charge_Vs_Index == nullptr) {
edm::LogError("SiStripGainsPCLHarvester")
<< "Harvesting: could not execute algoComputeMPVandGain method because " << m_calibrationMode
<< " statistics cannot be retrieved.\n"
<< "Please check if input contains " << m_calibrationMode << " data." << std::endl;
return;
}
TH2S* chvsidx = (Charge_Vs_Index)->getTH2S();
printf("Progressing Bar :0%% 20%% 40%% 60%% 80%% 100%%\n");
printf("Fitting Charge Distribution :");
int TreeStep = APVsColl.size() / 50;
for (auto it = APVsColl.begin(); it != APVsColl.end(); it++, I++) {
if (I % TreeStep == 0) {
printf(".");
fflush(stdout);
}
std::shared_ptr<stAPVGain> APV = it->second;
if (APV->Bin < 0)
APV->Bin = chvsidx->GetXaxis()->FindBin(APV->Index);
if (APV->isMasked) {
APV->Gain = APV->PreviousGain;
MASKED++;
continue;
}
Proj = chvsidx->ProjectionY(
"", chvsidx->GetXaxis()->FindBin(APV->Index), chvsidx->GetXaxis()->FindBin(APV->Index), "e");
if (!Proj)
continue;
if (CalibrationLevel == 0) {
} else if (CalibrationLevel == 1) {
int SecondAPVId = APV->APVId;
if (SecondAPVId % 2 == 0) {
SecondAPVId = SecondAPVId + 1;
} else {
SecondAPVId = SecondAPVId - 1;
}
std::shared_ptr<stAPVGain> APV2 = APVsColl[(APV->DetId << 4) | SecondAPVId];
if (APV2->Bin < 0)
APV2->Bin = chvsidx->GetXaxis()->FindBin(APV2->Index);
TH1D* Proj2 = chvsidx->ProjectionY("", APV2->Bin, APV2->Bin, "e");
if (Proj2) {
Proj->Add(Proj2, 1);
delete Proj2;
}
} else if (CalibrationLevel == 2) {
for (unsigned int i = 0; i < 16; i++) { //loop up to 6APV for Strip and up to 16 for Pixels
auto tmpit = APVsColl.find((APV->DetId << 4) | i);
if (tmpit == APVsColl.end())
continue;
std::shared_ptr<stAPVGain> APV2 = tmpit->second;
if (APV2->DetId != APV->DetId || APV2->APVId == APV->APVId)
continue;
if (APV2->Bin < 0)
APV2->Bin = chvsidx->GetXaxis()->FindBin(APV2->Index);
TH1D* Proj2 = chvsidx->ProjectionY("", APV2->Bin, APV2->Bin, "e");
if (Proj2) {
Proj->Add(Proj2, 1);
delete Proj2;
}
}
} else {
CalibrationLevel = 0;
printf("Unknown Calibration Level, will assume %i\n", CalibrationLevel);
}
std::pair<double, double> fitRange{50., 5400.};
if (fit_dataDrivenRange_) {
fitRange = findFitRange(Proj);
}
const bool isTOBL5L6 =
(DetId{APV->DetId}.subdetId() == StripSubdetector::TOB) && (tTopo_->tobLayer(APV->DetId) > 4);
getPeakOfLandau(Proj,
FitResults,
fitRange.first,
fitRange.second,
(isTOBL5L6 ? fit_gaussianConvolutionTOBL56_ : fit_gaussianConvolution_));
// throw if the fit results are not set
assert(FitResults[0] != DEF_F);
APV->FitMPV = FitResults[0];
APV->FitMPVErr = FitResults[1];
APV->FitWidth = FitResults[2];
APV->FitWidthErr = FitResults[3];
APV->FitChi2 = FitResults[4];
APV->FitNorm = FitResults[5];
APV->NEntries = Proj->GetEntries();
// fall back to legacy fit in case of very low chi2 probability
if (APV->FitChi2 <= 0.1) {
edm::LogInfo("SiStripGainsPCLHarvester")
<< "fit failed on this APV:" << APV->DetId << ":" << APV->APVId << " !" << std::endl;
std::fill(FitResults, FitResults + 6, 0);
fitRange = std::make_pair(50., 5400.);
APV->FitGrade = fitgrade::B;
getPeakOfLandau(Proj, FitResults, fitRange.first, fitRange.second, false);
APV->FitMPV = FitResults[0];
APV->FitMPVErr = FitResults[1];
APV->FitWidth = FitResults[2];
APV->FitWidthErr = FitResults[3];
APV->FitChi2 = FitResults[4];
APV->FitNorm = FitResults[5];
APV->NEntries = Proj->GetEntries();
} else {
APV->FitGrade = fitgrade::A;
}
if (IsGoodLandauFit(FitResults)) {
APV->Gain = APV->FitMPV / MPVmean;
if (APV->SubDet > 2)
GOOD++;
} else {
APV->Gain = APV->PreviousGain;
if (APV->SubDet > 2)
BAD++;
}
if (APV->Gain <= 0)
APV->Gain = 1;
delete Proj;
}
printf("\n");
}
//********************************************************************************//
void SiStripGainsPCLHarvester::getPeakOfLandau(
TH1* InputHisto, double* FitResults, double LowRange, double HighRange, bool gaussianConvolution) {
// undo defaults (checked for assertion)
FitResults[0] = -0.5; //MPV
FitResults[1] = 0; //MPV error
FitResults[2] = -0.5; //Width
FitResults[3] = 0; //Width error
FitResults[4] = -0.5; //Fit Chi2/NDF
FitResults[5] = 0; //Normalization
if (InputHisto->GetEntries() < MinNrEntries)
return;
if (gaussianConvolution) {
// perform fit with landau convoluted with a gaussian
Double_t fr[2] = {LowRange, HighRange};
Double_t sv[4] = {25., 300., InputHisto->Integral(), 40.};
Double_t pllo[4] = {0.5, 100., 1.0, 0.4};
Double_t plhi[4] = {100., 500., 1.e7, 100.};
Double_t fp[4], fpe[4];
Double_t chisqr;
Int_t ndf;
auto fitsnr = langaufit(dynamic_cast<TH1D*>(InputHisto), fr, sv, pllo, plhi, fp, fpe, &chisqr, &ndf);
FitResults[0] = fitsnr->GetMaximumX(); //MPV
FitResults[1] = fpe[1]; //MPV error // FIXME add error propagation
FitResults[2] = fp[0]; //Width
FitResults[3] = fpe[0]; //Width error
FitResults[4] = chisqr / ndf; //Fit Chi2/NDF
FitResults[5] = fp[2];
} else {
// perform fit with standard landau
TF1 MyLandau("MyLandau", "landau", LowRange, HighRange);
MyLandau.SetParameter(1, 300);
InputHisto->Fit(&MyLandau, "0QR WW");
// MPV is parameter 1 (0=constant, 1=MPV, 2=Sigma)
FitResults[0] = MyLandau.GetParameter(1); //MPV
FitResults[1] = MyLandau.GetParError(1); //MPV error
FitResults[2] = MyLandau.GetParameter(2); //Width
FitResults[3] = MyLandau.GetParError(2); //Width error
FitResults[4] = MyLandau.GetChisquare() / MyLandau.GetNDF(); //Fit Chi2/NDF
FitResults[5] = MyLandau.GetParameter(0);
}
}
//********************************************************************************//
bool SiStripGainsPCLHarvester::IsGoodLandauFit(double* FitResults) {
if (FitResults[0] <= 0)
return false;
// if(FitResults[1] > MaxMPVError )return false;
// if(FitResults[4] > MaxChi2OverNDF)return false;
return true;
}
//********************************************************************************//
// ------------ method called once each job just before starting event loop ------------
void SiStripGainsPCLHarvester::checkBookAPVColls(const edm::EventSetup& es) {
auto newBareTkGeomPtr = &es.getData(tkGeomToken_);
auto bareTkTopoPtr = &es.getData(tTopoTokenBR_);
if (newBareTkGeomPtr == bareTkGeomPtr_)
return; // already filled APVColls, nothing changed
if (!bareTkGeomPtr_) { // pointer not yet set: called the first time => fill the APVColls
auto const& Det = newBareTkGeomPtr->dets();
unsigned int Index = 0;
for (unsigned int i = 0; i < Det.size(); i++) {
DetId Detid = Det[i]->geographicalId();
int SubDet = Detid.subdetId();
if (SubDet == StripSubdetector::TIB || SubDet == StripSubdetector::TID || SubDet == StripSubdetector::TOB ||
SubDet == StripSubdetector::TEC) {
auto DetUnit = dynamic_cast<const StripGeomDetUnit*>(Det[i]);
if (!DetUnit)
continue;
const StripTopology& Topo = DetUnit->specificTopology();
unsigned int NAPV = Topo.nstrips() / 128;
for (unsigned int j = 0; j < NAPV; j++) {
auto APV = std::make_shared<stAPVGain>();
APV->Index = Index;
APV->Bin = -1;
APV->DetId = Detid.rawId();
APV->Side = 0;
if (SubDet == StripSubdetector::TID) {
APV->Side = bareTkTopoPtr->tidSide(Detid);
} else if (SubDet == StripSubdetector::TEC) {
APV->Side = bareTkTopoPtr->tecSide(Detid);
}
APV->APVId = j;
APV->SubDet = SubDet;
APV->FitMPV = -1;
APV->FitMPVErr = -1;
APV->FitWidth = -1;
APV->FitWidthErr = -1;
APV->FitChi2 = -1;
APV->FitNorm = -1;
APV->FitGrade = fitgrade::NONE;
APV->Gain = -1;
APV->PreviousGain = 1;
APV->PreviousGainTick = 1;
APV->x = DetUnit->position().basicVector().x();
APV->y = DetUnit->position().basicVector().y();
APV->z = DetUnit->position().basicVector().z();
APV->Eta = DetUnit->position().basicVector().eta();
APV->Phi = DetUnit->position().basicVector().phi();
APV->R = DetUnit->position().basicVector().transverse();
APV->Thickness = DetUnit->surface().bounds().thickness();
APV->NEntries = 0;
APV->isMasked = false;
APVsCollOrdered.push_back(APV);
APVsColl[(APV->DetId << 4) | APV->APVId] = APV;
Index++;
NStripAPVs++;
} // loop on APVs
} // if is Strips
} // loop on dets
for (unsigned int i = 0; i < Det.size();
i++) { //Make two loop such that the Pixel information is added at the end --> make transition simpler
DetId Detid = Det[i]->geographicalId();
int SubDet = Detid.subdetId();
if (SubDet == PixelSubdetector::PixelBarrel || SubDet == PixelSubdetector::PixelEndcap) {
auto DetUnit = dynamic_cast<const PixelGeomDetUnit*>(Det[i]);
if (!DetUnit)
continue;
const PixelTopology& Topo = DetUnit->specificTopology();
unsigned int NROCRow = Topo.nrows() / (80.);
unsigned int NROCCol = Topo.ncolumns() / (52.);
for (unsigned int j = 0; j < NROCRow; j++) {
for (unsigned int i = 0; i < NROCCol; i++) {
auto APV = std::make_shared<stAPVGain>();
APV->Index = Index;
APV->Bin = -1;
APV->DetId = Detid.rawId();
APV->Side = 0;
APV->APVId = (j << 3 | i);
APV->SubDet = SubDet;
APV->FitMPV = -1;
APV->FitMPVErr = -1;
APV->FitWidth = -1;
APV->FitWidthErr = -1;
APV->FitChi2 = -1;
APV->FitGrade = fitgrade::NONE;
APV->Gain = -1;
APV->PreviousGain = 1;
APV->PreviousGainTick = 1;
APV->x = DetUnit->position().basicVector().x();
APV->y = DetUnit->position().basicVector().y();
APV->z = DetUnit->position().basicVector().z();
APV->Eta = DetUnit->position().basicVector().eta();
APV->Phi = DetUnit->position().basicVector().phi();
APV->R = DetUnit->position().basicVector().transverse();
APV->Thickness = DetUnit->surface().bounds().thickness();
APV->isMasked = false; //SiPixelQuality_->IsModuleBad(Detid.rawId());
APV->NEntries = 0;
APVsCollOrdered.push_back(APV);
APVsColl[(APV->DetId << 4) | APV->APVId] = APV;
Index++;
NPixelDets++;
} // loop on ROC cols
} // loop on ROC rows
} // if Pixel
} // loop on Dets
} //if (!bareTkGeomPtr_) ...
bareTkGeomPtr_ = newBareTkGeomPtr;
}
//********************************************************************************//
bool SiStripGainsPCLHarvester::produceTagFilter(const MonitorElement* Charge_Vs_Index) {
// The goal of this function is to check wether or not there is enough statistics
// to produce a meaningful tag for the DB
if (Charge_Vs_Index == nullptr) {
edm::LogError("SiStripGainsPCLHarvester")
<< "produceTagFilter -> Return false: could not retrieve the " << m_calibrationMode << " statistics.\n"
<< "Please check if input contains " << m_calibrationMode << " data." << std::endl;
return false;
}
float integral = (Charge_Vs_Index)->getTH2S()->Integral();
if ((Charge_Vs_Index)->getTH2S()->Integral(0, NStripAPVs + 1, 0, 99999) < tagCondition_NClusters) {
edm::LogWarning("SiStripGainsPCLHarvester")
<< "calibrationMode -> " << m_calibrationMode << "\n"
<< "produceTagFilter -> Return false: Statistics is too low : " << integral << std::endl;
return false;
}
if ((1.0 * GOOD) / (GOOD + BAD) < tagCondition_GoodFrac) {
edm::LogWarning("SiStripGainsPCLHarvester")
<< "calibrationMode -> " << m_calibrationMode << "\n"
<< "produceTagFilter -> Return false: ratio of GOOD/TOTAL is too low: " << (1.0 * GOOD) / (GOOD + BAD)
<< std::endl;
return false;
}
return true;
}
//********************************************************************************//
std::unique_ptr<SiStripApvGain> SiStripGainsPCLHarvester::getNewObject(const MonitorElement* Charge_Vs_Index) {
std::unique_ptr<SiStripApvGain> obj = std::make_unique<SiStripApvGain>();
if (!produceTagFilter(Charge_Vs_Index)) {
edm::LogWarning("SiStripGainsPCLHarvester")
<< "getNewObject -> will not produce a paylaod because produceTagFilter returned false " << std::endl;
return obj;
} else {
doStoreOnDB = true;
}
std::vector<float> theSiStripVector;
unsigned int PreviousDetId = 0;
for (unsigned int a = 0; a < APVsCollOrdered.size(); a++) {
std::shared_ptr<stAPVGain> APV = APVsCollOrdered[a];
if (APV == nullptr) {
printf("Bug\n");
continue;
}
if (APV->SubDet <= 2)
continue;
if (APV->DetId != PreviousDetId) {
if (!theSiStripVector.empty()) {
SiStripApvGain::Range range(theSiStripVector.begin(), theSiStripVector.end());
if (!obj->put(PreviousDetId, range))
printf("Bug to put detId = %i\n", PreviousDetId);
}
theSiStripVector.clear();
PreviousDetId = APV->DetId;
}
theSiStripVector.push_back(APV->Gain);
LogDebug("SiStripGainsPCLHarvester") << " DetId: " << APV->DetId << " APV: " << APV->APVId
<< " Gain: " << APV->Gain << std::endl;
}
if (!theSiStripVector.empty()) {
SiStripApvGain::Range range(theSiStripVector.begin(), theSiStripVector.end());
if (!obj->put(PreviousDetId, range))
printf("Bug to put detId = %i\n", PreviousDetId);
}
return obj;
}
void SiStripGainsPCLHarvester::storeGainsTree(const TAxis* chVsIdxXaxis) const {
unsigned int t_Index, t_Bin, t_DetId;
unsigned char t_APVId, t_SubDet;
float t_x, t_y, t_z, t_Eta, t_R, t_Phi, t_Thickness;
float t_FitMPV, t_FitMPVErr, t_FitWidth, t_FitWidthErr, t_FitChi2NDF, t_FitNorm, t_FitGrade;
double t_Gain, t_PrevGain, t_PrevGainTick, t_NEntries;
bool t_isMasked;
auto tree = edm::Service<TFileService>()->make<TTree>("APVGain", "APVGain");
tree->Branch("Index", &t_Index, "Index/i");
tree->Branch("Bin", &t_Bin, "Bin/i");
tree->Branch("DetId", &t_DetId, "DetId/i");
tree->Branch("APVId", &t_APVId, "APVId/b");
tree->Branch("SubDet", &t_SubDet, "SubDet/b");
tree->Branch("x", &t_x, "x/F");
tree->Branch("y", &t_y, "y/F");
tree->Branch("z", &t_z, "z/F");
tree->Branch("Eta", &t_Eta, "Eta/F");
tree->Branch("R", &t_R, "R/F");
tree->Branch("Phi", &t_Phi, "Phi/F");
tree->Branch("Thickness", &t_Thickness, "Thickness/F");
tree->Branch("FitMPV", &t_FitMPV, "FitMPV/F");
tree->Branch("FitMPVErr", &t_FitMPVErr, "FitMPVErr/F");
tree->Branch("FitWidth", &t_FitWidth, "FitWidth/F");
tree->Branch("FitWidthErr", &t_FitWidthErr, "FitWidthErr/F");
tree->Branch("FitChi2NDF", &t_FitChi2NDF, "FitChi2NDF/F");
tree->Branch("FitNorm", &t_FitNorm, "FitNorm/F");
tree->Branch("FitGrade", &t_FitGrade, "FitGrade/F");
tree->Branch("Gain", &t_Gain, "Gain/D");
tree->Branch("PrevGain", &t_PrevGain, "PrevGain/D");
tree->Branch("PrevGainTick", &t_PrevGainTick, "PrevGainTick/D");
tree->Branch("NEntries", &t_NEntries, "NEntries/D");
tree->Branch("isMasked", &t_isMasked, "isMasked/O");
for (const auto& iAPV : APVsCollOrdered) {
if (iAPV) {
t_Index = iAPV->Index;
t_Bin = chVsIdxXaxis->FindBin(iAPV->Index);
t_DetId = iAPV->DetId;
t_APVId = iAPV->APVId;
t_SubDet = iAPV->SubDet;
t_x = iAPV->x;
t_y = iAPV->y;
t_z = iAPV->z;
t_Eta = iAPV->Eta;
t_R = iAPV->R;
t_Phi = iAPV->Phi;
t_Thickness = iAPV->Thickness;
t_FitMPV = iAPV->FitMPV;
t_FitMPVErr = iAPV->FitMPVErr;
t_FitWidth = iAPV->FitWidth;
t_FitWidthErr = iAPV->FitWidthErr;
t_FitChi2NDF = iAPV->FitChi2;
t_FitNorm = iAPV->FitNorm;
t_FitGrade = iAPV->FitGrade;
t_Gain = iAPV->Gain;
t_PrevGain = iAPV->PreviousGain;
t_PrevGainTick = iAPV->PreviousGainTick;
t_NEntries = iAPV->NEntries;
t_isMasked = iAPV->isMasked;
tree->Fill();
}
}
}
//********************************************************************************//
// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
void SiStripGainsPCLHarvester::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.setUnknown();
descriptions.addDefault(desc);
}
//********************************************************************************//
void SiStripGainsPCLHarvester::endRun(edm::Run const& run, edm::EventSetup const& isetup) {
if (!tTopo_) {
tTopo_ = std::make_unique<TrackerTopology>(isetup.getData(tTopoTokenER_));
}
}
|