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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
|
/*!
\file SiPixelDynamicInefficiency_PayloadInspector
\Payload Inspector Plugin for SiPixelDynamicInefficiency
\author M. Musich
\version $Revision: 1.0 $
\date $Date: 2018/10/18 14:48:00 $
*/
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "CondCore/Utilities/interface/PayloadInspectorModule.h"
#include "CondCore/Utilities/interface/PayloadInspector.h"
#include "CondCore/CondDB/interface/Time.h"
#include "CondCore/SiPixelPlugins/interface/SiPixelPayloadInspectorHelper.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "CalibTracker/StandaloneTrackerTopology/interface/StandaloneTrackerTopology.h"
#include "CalibTracker/SiPixelESProducers/interface/SiPixelDetInfoFileReader.h"
// the data format of the condition to be inspected
#include "CondFormats/SiPixelObjects/interface/SiPixelDynamicInefficiency.h"
#include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DQM/TrackerRemapper/interface/Phase1PixelROCMaps.h"
#include "DQM/TrackerRemapper/interface/Phase1PixelSummaryMap.h"
#include <cmath>
#include <memory>
#include <sstream>
#include <iostream>
// include ROOT
#include "TCanvas.h"
#include "TGraph.h"
#include "TH2F.h"
#include "TLatex.h"
#include "TLegend.h"
#include "TLine.h"
#include "TPave.h"
#include "TPaveStats.h"
#include "TStyle.h"
#include "TF1.h"
#include "TMath.h"
#include <Math/Polynomial.h>
namespace {
using namespace cond::payloadInspector;
namespace SiPixDynIneff {
// different types of geometrical inefficiency factors
enum factor { geom = 0, colgeom = 1, chipgeom = 2, pu = 3, INVALID = 4 };
const std::array<std::string, 5> factorString = {
{"pixel geometry", "column geometry", "chip geometry", "PU", "invalid"}};
using FactorMap = std::map<unsigned int, double>;
using PUFactorMap = std::map<unsigned int, std::vector<double> >;
// constants for ROC level simulation for Phase1
enum shiftEnumerator { FPixRocIdShift = 3, BPixRocIdShift = 6 };
const int rocIdMaskBits = 0x1F;
struct packedBadRocFraction {
std::vector<int> badRocNumber;
std::vector<float> badRocFrac;
};
using BRFractions = std::unordered_map<uint32_t, packedBadRocFraction>;
//_________________________________________________
BRFractions pbrf(std::shared_ptr<SiPixelDynamicInefficiency> payload) {
BRFractions f;
const std::map<uint32_t, double>& PixelGeomFactorsDBIn = payload->getPixelGeomFactors();
// first fill
for (const auto db_factor : PixelGeomFactorsDBIn) {
int subid = DetId(db_factor.first).subdetId();
int shift = (subid == static_cast<int>(PixelSubdetector::PixelBarrel)) ? BPixRocIdShift : FPixRocIdShift;
unsigned int rocMask = rocIdMaskBits << shift;
unsigned int rocId = (((db_factor.first) & rocMask) >> shift);
uint32_t rawid = db_factor.first & (~rocMask);
if (f.find(rawid) == f.end()) {
packedBadRocFraction p;
f.insert(std::make_pair(rawid, p));
}
if (rocId != 0) {
rocId--;
double factor = db_factor.second;
double badFraction = 1 - factor;
f.at(rawid).badRocNumber.emplace_back(rocId);
f.at(rawid).badRocFrac.emplace_back(badFraction);
}
}
return f;
}
//_________________________________________________
bool isPhase0(const BRFractions& fractions) {
SiPixelDetInfoFileReader reader =
SiPixelDetInfoFileReader(edm::FileInPath(SiPixelDetInfoFileReader::kPh0DefaultFile).fullPath());
const auto& p0detIds = reader.getAllDetIds();
std::vector<uint32_t> ownDetIds;
std::transform(fractions.begin(),
fractions.end(),
std::back_inserter(ownDetIds),
[](std::pair<uint32_t, packedBadRocFraction> d) -> uint32_t { return d.first; });
for (const auto& det : ownDetIds) {
// if found at least one phase-0 detId early return
if (std::find(p0detIds.begin(), p0detIds.end(), det) != p0detIds.end()) {
return true;
}
}
return false;
}
//_________________________________________________
double getMatchingGeomFactor(const DetId& detid,
const std::map<unsigned int, double>& map_geomfactor,
const std::vector<uint32_t>& detIdmasks) {
double geomfactor_db = 1;
for (auto map_element : map_geomfactor) {
const DetId mapid = DetId(map_element.first);
if (mapid.subdetId() != detid.subdetId())
continue;
size_t __i = 0;
for (; __i < detIdmasks.size(); __i++) {
DetId maskid = DetId(detIdmasks.at(__i));
if (maskid.subdetId() != mapid.subdetId())
continue;
if ((detid.rawId() & maskid.rawId()) != (mapid.rawId() & maskid.rawId()) &&
(mapid.rawId() & maskid.rawId()) != DetId(mapid.det(), mapid.subdetId()).rawId())
break;
}
if (__i != detIdmasks.size())
continue;
geomfactor_db *= map_element.second;
}
return geomfactor_db;
}
//_________________________________________________
std::vector<double> getMatchingPUFactors(const DetId& detid,
const std::map<unsigned int, std::vector<double> >& map_pufactory,
const std::vector<uint32_t>& detIdmasks) {
std::vector<double> pufactors_db;
for (const auto& map_element : map_pufactory) {
const DetId mapid = DetId(map_element.first);
if (mapid.subdetId() != detid.subdetId())
continue;
size_t __i = 0;
for (; __i < detIdmasks.size(); __i++) {
DetId maskid = DetId(detIdmasks.at(__i));
if (maskid.subdetId() != mapid.subdetId())
continue;
if ((detid.rawId() & maskid.rawId()) != (mapid.rawId() & maskid.rawId()) &&
(mapid.rawId() & maskid.rawId()) != DetId(mapid.det(), mapid.subdetId()).rawId())
break;
}
if (__i != detIdmasks.size())
continue;
pufactors_db = map_element.second;
}
return pufactors_db;
}
//(Not used for the moment)
//_________________________________________________
[[maybe_unused]] bool matches(const DetId& detid, const DetId& db_id, const std::vector<uint32_t>& DetIdmasks) {
if (detid.subdetId() != db_id.subdetId())
return false;
for (size_t i = 0; i < DetIdmasks.size(); ++i) {
DetId maskid = DetId(DetIdmasks.at(i));
if (maskid.subdetId() != db_id.subdetId())
continue;
if ((detid.rawId() & maskid.rawId()) != (db_id.rawId() & maskid.rawId()) &&
(db_id.rawId() & maskid.rawId()) != DetId(db_id.det(), db_id.subdetId()).rawId())
return false;
}
return true;
}
//_________________________________________________
bool checkPhase(const SiPixelPI::phase phase, const std::vector<uint32_t>& masks_db) {
const char* inputFile;
switch (phase) {
case SiPixelPI::phase::zero:
inputFile = "Geometry/TrackerCommonData/data/trackerParameters.xml";
break;
case SiPixelPI::phase::one:
inputFile = "Geometry/TrackerCommonData/data/PhaseI/trackerParameters.xml";
break;
case SiPixelPI::phase::two:
inputFile = "Geometry/TrackerCommonData/data/PhaseII/trackerParameters.xml";
break;
default:
throw cms::Exception("SiPixelDynamicInefficiency_PayloadInspector") << "checkPhase: unrecongnized phase!";
}
// create the standalone tracker topology
const auto& tkTopo =
StandaloneTrackerTopology::fromTrackerParametersXMLFile(edm::FileInPath(inputFile).fullPath());
// Check what masks we would get using the current geometry
// It has to match what is in the db content!!
std::vector<uint32_t> masks_geom;
uint32_t max = std::numeric_limits<uint32_t>::max();
masks_geom.push_back(tkTopo.pxbDetId(max, 0, 0).rawId());
masks_geom.push_back(tkTopo.pxbDetId(0, max, 0).rawId());
masks_geom.push_back(tkTopo.pxbDetId(0, 0, max).rawId());
masks_geom.push_back(tkTopo.pxfDetId(max, 0, 0, 0, 0).rawId());
masks_geom.push_back(tkTopo.pxfDetId(0, max, 0, 0, 0).rawId());
masks_geom.push_back(tkTopo.pxfDetId(0, 0, max, 0, 0).rawId());
masks_geom.push_back(tkTopo.pxfDetId(0, 0, 0, max, 0).rawId());
masks_geom.push_back(tkTopo.pxfDetId(0, 0, 0, 0, max).rawId());
return (masks_geom.size() == masks_db.size() &&
std::equal(masks_geom.begin(), masks_geom.end(), masks_db.begin()));
}
//_________________________________________________
unsigned int maxDepthOfPUArray(const std::map<unsigned int, std::vector<double> >& map_pufactor) {
unsigned int size{0};
for (const auto& [id, vec] : map_pufactor) {
if (vec.size() > size)
size = vec.size();
}
return size;
}
//_________________________________________________
std::pair<int, int> getClosestFactors(int input) {
if ((input % 2 != 0) && input > 1) {
input += 1;
}
int testNum = (int)sqrt(input);
while (input % testNum != 0) {
testNum--;
}
return std::make_pair(testNum, input / testNum);
}
/** Given an input list of std::string this
* finds the longest common substring
*/
std::string findStem(const std::vector<std::string>& arr) {
// Determine size of the array
int n = arr.size();
// Take first word from array as reference
const std::string& s = arr[0];
int len = s.length();
std::string res = "";
for (int i = 0; i < len; i++) {
for (int j = i + 1; j <= len; j++) {
// generating all possible substrings
// of our reference string arr[0] i.e s
std::string stem = s.substr(i, j);
int k = 1;
for (k = 1; k < n; k++) {
// Check if the generated stem is
// common to all words
if (arr[k].find(stem) == std::string::npos)
break;
}
// If current substring is present in
// all strings and its length is greater
// than current result
if (k == n && res.length() < stem.length())
res = stem;
}
}
return res;
}
/** This function determines from the list of attached DetId which
* SiPixelPI::region represents them
*/
std::string attachLocationLabel(const std::vector<uint32_t>& listOfDetIds, SiPixelPI::PhaseInfo& phInfo) {
// collect all the regions in which it can be split
std::vector<std::string> regions;
for (const auto& rawId : listOfDetIds) {
SiPixelPI::topolInfo t_info_fromXML;
t_info_fromXML.init();
DetId detid(rawId);
const char* path_toTopologyXML = phInfo.pathToTopoXML();
auto tTopo =
StandaloneTrackerTopology::fromTrackerParametersXMLFile(edm::FileInPath(path_toTopologyXML).fullPath());
t_info_fromXML.fillGeometryInfo(detid, tTopo, phInfo.phase());
const auto& reg = SiPixelPI::getStringFromRegionEnum(t_info_fromXML.filterThePartition());
if (!std::count(regions.begin(), regions.end(), reg)) {
regions.push_back(reg);
}
}
std::string retVal = "";
// if perfect match (only one category)
if (regions.size() == 1) {
retVal = regions.front();
} else {
retVal = findStem(regions);
}
// if the last char is "/" strip it from the string
if (retVal.back() == '/')
retVal.pop_back();
return retVal;
}
void fillParametrizations(std::vector<std::vector<double> >& listOfParametrizations,
std::vector<TF1*>& parametrizations,
std::vector<std::string>& formulas,
const std::vector<std::string>& namesOfParts) {
static constexpr double xmin_ = 0.; // x10e34 (min inst. lumi)
static constexpr double xmax_ = 25.; // x10e34 (max inst. lumi)
// functional for polynomial of n-th degree
auto func = [](double* x, double* p) {
int n = p[0];
double* params = p + 1;
ROOT::Math::Polynomial pol(n);
return pol(x, params);
};
int index{0};
for (auto& params : listOfParametrizations) {
index++;
int n = params.size();
int npar = n + 2;
std::string str{namesOfParts[index - 1]};
if (str.length() >= 2 && str.substr(str.length() - 2) == "/i") {
str += "nner";
} else if (str.length() >= 2 && str.substr(str.length() - 2) == "/o") {
str += "uter";
}
TF1* f1 = new TF1((fmt::sprintf("region: #bf{%s}", str)).c_str(), func, xmin_, xmax_, npar);
// push polynomial degree as first entry in the vector
params.insert(params.begin(), n);
// TF1::SetParameters needs a C-style array
double* arr = params.data();
f1->SetLineWidth(2);
// fill in the parameter
for (unsigned int j = 0; j < params.size(); j++) {
f1->SetParameter(j, arr[j]);
}
parametrizations.push_back(f1);
// build the formula to be displayed
std::string formula;
edm::LogVerbatim("fillParametrizations") << "index: " << index;
for (unsigned int i = 1; i < params.size(); i++) {
edm::LogVerbatim("fillParametrizations") << " " << params[i];
formula += fmt::sprintf("%s%fx^{%i}", (i == 1 ? "" : (std::signbit(params[i]) ? "" : "+")), params[i], i - 1);
}
edm::LogVerbatim("fillParametrizations") << std::endl;
formulas.push_back(formula);
}
}
} // namespace SiPixDynIneff
/************************************************
test class
*************************************************/
class SiPixelDynamicInefficiencyTest : public Histogram1D<SiPixelDynamicInefficiency, SINGLE_IOV> {
public:
SiPixelDynamicInefficiencyTest()
: Histogram1D<SiPixelDynamicInefficiency, SINGLE_IOV>(
"SiPixelDynamicInefficiency test", "SiPixelDynamicInefficiency test", 1, 0.0, 1.0) {}
bool fill() override {
auto tag = PlotBase::getTag<0>();
for (auto const& iov : tag.iovs) {
std::shared_ptr<SiPixelDynamicInefficiency> payload = Base::fetchPayload(std::get<1>(iov));
if (payload.get()) {
fillWithValue(1.);
std::map<unsigned int, double> map_pixelgeomfactor = payload->getPixelGeomFactors();
std::map<unsigned int, double> map_colgeomfactor = payload->getColGeomFactors();
std::map<unsigned int, double> map_chipgeomfactor = payload->getChipGeomFactors();
std::map<unsigned int, std::vector<double> > map_pufactor = payload->getPUFactors();
std::vector<uint32_t> detIdmasks_db = payload->getDetIdmasks();
double theInstLumiScaleFactor_db = payload->gettheInstLumiScaleFactor_();
edm::LogPrint("SiPixelDynamicInefficiencyTest") << "-------------------------------------------------------";
edm::LogPrint("SiPixelDynamicInefficiencyTest") << "Printing out DB content:\n";
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " PixelGeomFactors:";
for (auto pixel : map_pixelgeomfactor)
edm::LogPrint("SiPixelDynamicInefficiencyTest")
<< " MapID = " << pixel.first << "\tFactor = " << pixel.second;
edm::LogPrint("SiPixelDynamicInefficiencyTest");
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " ColGeomFactors:";
for (auto col : map_colgeomfactor)
edm::LogPrint("SiPixelDynamicInefficiencyTest")
<< " MapID = " << col.first << "\tFactor = " << col.second;
edm::LogPrint("SiPixelDynamicInefficiencyTest");
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " ChipGeomFactors:";
for (auto chip : map_chipgeomfactor)
edm::LogPrint("SiPixelDynamicInefficiencyTest")
<< " MapID = " << chip.first << "\tFactor = " << chip.second;
edm::LogPrint("SiPixelDynamicInefficiencyTest");
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " PUFactors:";
for (auto pu : map_pufactor) {
edm::LogPrint("SiPixelDynamicInefficiencyTest")
<< " MapID = " << pu.first << "\t Factor" << (pu.second.size() > 1 ? "s" : "") << " = ";
for (size_t i = 0, n = pu.second.size(); i < n; ++i)
edm::LogPrint("SiPixelDynamicInefficiencyTest") << pu.second[i] << ((i == n - 1) ? "\n" : ", ");
}
edm::LogPrint("SiPixelDynamicInefficiencyTest");
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " DetIdmasks:";
for (auto mask : detIdmasks_db)
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " MaskID = " << mask;
edm::LogPrint("SiPixelDynamicInefficiencyTest");
edm::LogPrint("SiPixelDynamicInefficiencyTest") << " theInstLumiScaleFactor = " << theInstLumiScaleFactor_db;
} // payload
} // iovs
return true;
} // fill
};
/************************************************
occupancy style map whole Pixel of inefficient ROCs
*************************************************/
template <SiPixelPI::DetType myType>
class SiPixelIneffROCfromDynIneffMap : public PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV> {
public:
SiPixelIneffROCfromDynIneffMap()
: PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV>("SiPixel Inefficient ROC from Dyn Ineff Pixel Map"),
m_trackerTopo{StandaloneTrackerTopology::fromTrackerParametersXMLFile(
edm::FileInPath("Geometry/TrackerCommonData/data/PhaseI/trackerParameters.xml").fullPath())} {}
bool fill() override {
auto tag = PlotBase::getTag<0>();
auto iov = tag.iovs.front();
auto tagname = tag.name;
std::shared_ptr<SiPixelDynamicInefficiency> payload = fetchPayload(std::get<1>(iov));
const auto fr = SiPixDynIneff::pbrf(payload);
if (SiPixDynIneff::isPhase0(fr)) {
edm::LogError("SiPixelDynamicInefficiency_PayloadInspector")
<< "SiPixelIneffROCfromDynIneff maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
Phase1PixelROCMaps theMap("", "bad pixel fraction in ROC [%]");
for (const auto& element : fr) {
auto rawid = element.first;
int subid = DetId(rawid).subdetId();
auto packedinfo = element.second;
auto badRocs = packedinfo.badRocNumber;
auto badRocsF = packedinfo.badRocFrac;
for (size_t i = 0; i < badRocs.size(); i++) {
std::bitset<16> rocToMark;
rocToMark.set(badRocs[i]);
if ((subid == PixelSubdetector::PixelBarrel && myType == SiPixelPI::t_barrel) ||
(subid == PixelSubdetector::PixelEndcap && myType == SiPixelPI::t_forward) ||
(myType == SiPixelPI::t_all)) {
theMap.fillSelectedRocs(rawid, rocToMark, badRocsF[i] * 100.f);
}
}
}
gStyle->SetOptStat(0);
//=========================
TCanvas canvas("Summary", "Summary", 1200, k_height[myType]);
canvas.cd();
auto unpacked = SiPixelPI::unpack(std::get<0>(iov));
std::string IOVstring = (unpacked.first == 0)
? std::to_string(unpacked.second)
: (std::to_string(unpacked.first) + "," + std::to_string(unpacked.second));
const auto headerText = fmt::sprintf("#color[4]{%s}, IOV: #color[4]{%s}", tagname, IOVstring);
switch (myType) {
case SiPixelPI::t_barrel:
theMap.drawBarrelMaps(canvas, headerText);
break;
case SiPixelPI::t_forward:
theMap.drawForwardMaps(canvas, headerText);
break;
case SiPixelPI::t_all:
theMap.drawMaps(canvas, headerText);
break;
default:
throw cms::Exception("SiPixelIneffROCfromDynIneffMap") << "\nERROR: unrecognized Pixel Detector part ";
}
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
#ifdef MMDEBUG
canvas.SaveAs("outAll.root");
#endif
return true;
}
private:
static constexpr std::array<int, 3> k_height = {{1200, 600, 1600}};
TrackerTopology m_trackerTopo;
};
using SiPixelBPixIneffROCfromDynIneffMap = SiPixelIneffROCfromDynIneffMap<SiPixelPI::t_barrel>;
using SiPixelFPixIneffROCfromDynIneffMap = SiPixelIneffROCfromDynIneffMap<SiPixelPI::t_forward>;
using SiPixelFullIneffROCfromDynIneffMap = SiPixelIneffROCfromDynIneffMap<SiPixelPI::t_all>;
/************************************************
occupancy style map whole Pixel, difference of payloads
*************************************************/
template <SiPixelPI::DetType myType, IOVMultiplicity nIOVs, int ntags>
class SiPixelIneffROCComparisonBase : public PlotImage<SiPixelDynamicInefficiency, nIOVs, ntags> {
public:
SiPixelIneffROCComparisonBase()
: PlotImage<SiPixelDynamicInefficiency, nIOVs, ntags>(
Form("SiPixelDynamicInefficiency %s Pixel Map", SiPixelPI::DetNames[myType].c_str())),
m_trackerTopo{StandaloneTrackerTopology::fromTrackerParametersXMLFile(
edm::FileInPath("Geometry/TrackerCommonData/data/PhaseI/trackerParameters.xml").fullPath())} {}
bool fill() override {
// trick to deal with the multi-ioved tag and two tag case at the same time
auto theIOVs = PlotBase::getTag<0>().iovs;
auto f_tagname = PlotBase::getTag<0>().name;
std::string l_tagname = "";
auto firstiov = theIOVs.front();
std::tuple<cond::Time_t, cond::Hash> lastiov;
// we don't support (yet) comparison with more than 2 tags
assert(this->m_plotAnnotations.ntags < 3);
if (this->m_plotAnnotations.ntags == 2) {
auto tag2iovs = PlotBase::getTag<1>().iovs;
l_tagname = PlotBase::getTag<1>().name;
lastiov = tag2iovs.front();
} else {
lastiov = theIOVs.back();
}
std::shared_ptr<SiPixelDynamicInefficiency> last_payload = this->fetchPayload(std::get<1>(lastiov));
std::shared_ptr<SiPixelDynamicInefficiency> first_payload = this->fetchPayload(std::get<1>(firstiov));
const auto fp = SiPixDynIneff::pbrf(last_payload);
const auto lp = SiPixDynIneff::pbrf(first_payload);
if (SiPixDynIneff::isPhase0(fp) || SiPixDynIneff::isPhase0(lp)) {
edm::LogError("SiPixelDynamicInefficiency_PayloadInspector")
<< "SiPixelDynamicInefficiency comparison maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
Phase1PixelROCMaps theMap("", "#Delta payload A - payload B");
gStyle->SetOptStat(0);
//=========================
TCanvas canvas("Summary", "Summary", 1200, k_height[myType]);
canvas.cd();
auto f_unpacked = SiPixelPI::unpack(std::get<0>(firstiov));
auto l_unpacked = SiPixelPI::unpack(std::get<0>(lastiov));
std::string f_IOVstring = (f_unpacked.first == 0)
? std::to_string(f_unpacked.second)
: (std::to_string(f_unpacked.first) + "," + std::to_string(f_unpacked.second));
std::string l_IOVstring = (l_unpacked.first == 0)
? std::to_string(l_unpacked.second)
: (std::to_string(l_unpacked.first) + "," + std::to_string(l_unpacked.second));
std::string headerText;
if (this->m_plotAnnotations.ntags == 2) {
headerText =
fmt::sprintf("#color[2]{A: %s, %s} - #color[4]{B: %s, %s}", f_tagname, f_IOVstring, l_tagname, l_IOVstring);
} else {
headerText = fmt::sprintf("%s,IOV #color[2]{A: %s} - #color[4]{B: %s} ", f_tagname, f_IOVstring, l_IOVstring);
}
switch (myType) {
case SiPixelPI::t_barrel:
theMap.drawBarrelMaps(canvas, headerText);
break;
case SiPixelPI::t_forward:
theMap.drawForwardMaps(canvas, headerText);
break;
case SiPixelPI::t_all:
theMap.drawMaps(canvas, headerText);
break;
default:
throw cms::Exception("SiPixelDynamicInefficiencyMapComparison")
<< "\nERROR: unrecognized Pixel Detector part ";
}
// first loop on the first payload (newest)
fillTheMapFromPayload(theMap, fp, false);
// then loop on the second payload (oldest)
fillTheMapFromPayload(theMap, lp, true); // true will subtract
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
#ifdef MMDEBUG
canvas.SaveAs("outAll.root");
#endif
return true;
}
private:
static constexpr std::array<int, 3> k_height = {{1200, 600, 1600}};
TrackerTopology m_trackerTopo;
//____________________________________________________________________________________________
void fillTheMapFromPayload(Phase1PixelROCMaps& theMap, const SiPixDynIneff::BRFractions& fr, bool subtract) {
for (const auto& element : fr) {
auto rawid = element.first;
int subid = DetId(rawid).subdetId();
auto packedinfo = element.second;
auto badRocs = packedinfo.badRocNumber;
auto badRocsF = packedinfo.badRocFrac;
for (size_t i = 0; i < badRocs.size(); i++) {
std::bitset<16> rocToMark;
rocToMark.set(badRocs[i]);
if ((subid == PixelSubdetector::PixelBarrel && myType == SiPixelPI::t_barrel) ||
(subid == PixelSubdetector::PixelEndcap && myType == SiPixelPI::t_forward) ||
(myType == SiPixelPI::t_all)) {
theMap.fillSelectedRocs(rawid, rocToMark, badRocsF[i] * (subtract ? -1. : 1.));
}
}
}
}
};
/*
These are not implemented for the time being, since the SiPixelDynamicInefficiency is a condition
used only in simulation, hence there is no such thing as a multi-IoV Dynamic Inefficiency tag
*/
using SiPixelBPixIneffROCsMapCompareSingleTag = SiPixelIneffROCComparisonBase<SiPixelPI::t_barrel, MULTI_IOV, 1>;
using SiPixelFPixIneffROCsMapCompareSingleTag = SiPixelIneffROCComparisonBase<SiPixelPI::t_forward, MULTI_IOV, 1>;
using SiPixelFullIneffROCsMapCompareSingleTag = SiPixelIneffROCComparisonBase<SiPixelPI::t_all, MULTI_IOV, 1>;
using SiPixelBPixIneffROCsMapCompareTwoTags = SiPixelIneffROCComparisonBase<SiPixelPI::t_barrel, SINGLE_IOV, 2>;
using SiPixelFPixIneffROCsMapCompareTwoTags = SiPixelIneffROCComparisonBase<SiPixelPI::t_forward, SINGLE_IOV, 2>;
using SiPixelFullIneffROCsMapCompareTwoTags = SiPixelIneffROCComparisonBase<SiPixelPI::t_all, SINGLE_IOV, 2>;
/************************************************
Full Pixel Tracker Map class (for geometrical factors)
*************************************************/
template <SiPixDynIneff::factor theFactor>
class SiPixelDynamicInefficiencyFullPixelMap : public PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV> {
public:
SiPixelDynamicInefficiencyFullPixelMap()
: PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV>("SiPixelDynamicInefficiency Map") {
label_ = "SiPixelDynamicInefficiencyFullPixelMap";
payloadString = fmt::sprintf("%s Dynamic Inefficiency", SiPixDynIneff::factorString[theFactor]);
}
bool fill() override {
gStyle->SetPalette(1);
auto tag = PlotBase::getTag<0>();
auto iov = tag.iovs.front();
std::shared_ptr<SiPixelDynamicInefficiency> payload = this->fetchPayload(std::get<1>(iov));
if (payload.get()) {
Phase1PixelSummaryMap fullMap("", fmt::sprintf("%s", payloadString), fmt::sprintf("%s", payloadString));
fullMap.createTrackerBaseMap();
SiPixDynIneff::FactorMap theMap{};
switch (theFactor) {
case SiPixDynIneff::geom:
theMap = payload->getPixelGeomFactors();
break;
case SiPixDynIneff::colgeom:
theMap = payload->getColGeomFactors();
break;
case SiPixDynIneff::chipgeom:
theMap = payload->getChipGeomFactors();
break;
default:
throw cms::Exception(label_) << "\nERROR: unrecognized type of geometry factor ";
}
std::vector<uint32_t> detIdmasks_db = payload->getDetIdmasks();
if (!SiPixDynIneff::checkPhase(SiPixelPI::phase::one, detIdmasks_db)) {
edm::LogError(label_) << label_ << " maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
SiPixelDetInfoFileReader reader =
SiPixelDetInfoFileReader(edm::FileInPath(SiPixelDetInfoFileReader::kPh1DefaultFile).fullPath());
const auto& p1detIds = reader.getAllDetIds();
for (const auto& det : p1detIds) {
const auto& value = SiPixDynIneff::getMatchingGeomFactor(det, theMap, detIdmasks_db);
fullMap.fillTrackerMap(det, value);
}
const auto& range = fullMap.getZAxisRange();
if (range.first == range.second) {
// in case the map is completely filled with one value;
// set the z-axis to be meaningful
fullMap.setZAxisRange(range.first - 0.01, range.second + 0.01);
}
TCanvas canvas("Canv", "Canv", 3000, 2000);
fullMap.printTrackerMap(canvas);
auto ltx = TLatex();
ltx.SetTextFont(62);
ltx.SetTextSize(0.025);
ltx.SetTextAlign(11);
ltx.DrawLatexNDC(
gPad->GetLeftMargin() + 0.01,
gPad->GetBottomMargin() + 0.01,
("#color[4]{" + tag.name + "}, IOV: #color[4]{" + std::to_string(std::get<0>(iov)) + "}").c_str());
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
}
return true;
}
protected:
std::string payloadString;
std::string label_;
};
using SiPixelDynamicInefficiencyGeomFactorMap = SiPixelDynamicInefficiencyFullPixelMap<SiPixDynIneff::geom>;
using SiPixelDynamicInefficiencyColGeomFactorMap = SiPixelDynamicInefficiencyFullPixelMap<SiPixDynIneff::colgeom>;
using SiPixelDynamicInefficiencyChipGeomFactorMap = SiPixelDynamicInefficiencyFullPixelMap<SiPixDynIneff::chipgeom>;
/************************************************
Full Pixel Tracker Map class (for PU factors)
*************************************************/
class SiPixelDynamicInefficiencyPUPixelMaps : public PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV> {
public:
SiPixelDynamicInefficiencyPUPixelMaps()
: PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV>("SiPixelDynamicInefficiency Map") {
label_ = "SiPixelDynamicInefficiencyFullPixelMap";
payloadString = fmt::sprintf("%s Dynamic Inefficiency", SiPixDynIneff::factorString[SiPixDynIneff::pu]);
}
bool fill() override {
gStyle->SetPalette(1);
auto tag = PlotBase::getTag<0>();
auto iov = tag.iovs.front();
std::shared_ptr<SiPixelDynamicInefficiency> payload = this->fetchPayload(std::get<1>(iov));
if (payload.get()) {
std::vector<Phase1PixelSummaryMap> maps;
SiPixDynIneff::PUFactorMap theMap = payload->getPUFactors();
std::vector<uint32_t> detIdmasks_db = payload->getDetIdmasks();
if (!SiPixDynIneff::checkPhase(SiPixelPI::phase::one, detIdmasks_db)) {
edm::LogError(label_) << label_ << " maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
unsigned int depth = SiPixDynIneff::maxDepthOfPUArray(theMap);
// create the maps
for (unsigned int i = 0; i < depth; i++) {
maps.emplace_back(
"", fmt::sprintf("%s, factor %i", payloadString, i), fmt::sprintf("%s, factor %i", payloadString, i));
maps[i].createTrackerBaseMap();
}
// retrieve the list of phase1 detids
const auto& reader =
SiPixelDetInfoFileReader(edm::FileInPath(SiPixelDetInfoFileReader::kPh1DefaultFile).fullPath());
const auto& p1detIds = reader.getAllDetIds();
// fill the maps
for (const auto& det : p1detIds) {
const auto& values = SiPixDynIneff::getMatchingPUFactors(det, theMap, detIdmasks_db);
int index = 0;
for (const auto& value : values) {
maps[index].fillTrackerMap(det, value);
index++;
}
}
// in case the map is completely filled with one value;
// set the z-axis to be meaningful
for (unsigned int i = 0; i < depth; i++) {
const auto& range = maps[i].getZAxisRange();
if (range.first == range.second) {
maps[i].setZAxisRange(range.first - 0.01, range.second + 0.01);
}
}
// determine how the plot will be paginated
auto sides = SiPixDynIneff::getClosestFactors(depth);
TCanvas canvas("Canv", "Canv", sides.second * 900, sides.first * 600);
canvas.Divide(sides.second, sides.first);
// print the sub-canvases
for (unsigned int i = 0; i < depth; i++) {
maps[i].printTrackerMap(canvas, 0.035, i + 1);
auto ltx = TLatex();
ltx.SetTextFont(62);
ltx.SetTextSize(0.025);
ltx.SetTextAlign(11);
ltx.DrawLatexNDC(
gPad->GetLeftMargin() + 0.01,
gPad->GetBottomMargin() + 0.01,
("#color[4]{" + tag.name + "}, IOV: #color[4]{" + std::to_string(std::get<0>(iov)) + "}").c_str());
}
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
}
return true;
}
protected:
std::string payloadString;
std::string label_;
};
/************************************************
Per sector plot of the inefficiency parameterization vs inst lumi (for PU factors)
*************************************************/
class SiPixelDynamicInefficiencyPUParametrization : public PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV> {
public:
SiPixelDynamicInefficiencyPUParametrization()
: PlotImage<SiPixelDynamicInefficiency, SINGLE_IOV>("SiPixelDynamicInefficiency PU parametrization") {
label_ = "SiPixelDynamicInefficiencyPUParameterization";
payloadString =
fmt::sprintf("%s Dynamic Inefficiency parametrization", SiPixDynIneff::factorString[SiPixDynIneff::pu]);
}
bool fill() override {
gStyle->SetPalette(1);
auto tag = PlotBase::getTag<0>();
auto iov = tag.iovs.front();
std::shared_ptr<SiPixelDynamicInefficiency> payload = this->fetchPayload(std::get<1>(iov));
if (payload.get()) {
SiPixDynIneff::PUFactorMap theMap = payload->getPUFactors();
std::vector<uint32_t> detIdmasks_db = payload->getDetIdmasks();
if (!SiPixDynIneff::checkPhase(SiPixelPI::phase::one, detIdmasks_db)) {
edm::LogError(label_) << label_ << " maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
std::vector<std::vector<double> > listOfParametrizations;
// retrieve the list of phase1 detids
const auto& reader =
SiPixelDetInfoFileReader(edm::FileInPath(SiPixelDetInfoFileReader::kPh1DefaultFile).fullPath());
auto p1detIds = reader.getAllDetIds();
// follows hack to get an inner ladder module first
// skip the first 8 dets since they lay on the same ladder
std::swap(p1detIds[0], p1detIds[8]);
std::map<unsigned int, std::vector<uint32_t> > modules_per_region;
// fill the maps
for (const auto& det : p1detIds) {
const auto& values = SiPixDynIneff::getMatchingPUFactors(det, theMap, detIdmasks_db);
// find the index in the vector
auto pIndex = std::find(listOfParametrizations.begin(), listOfParametrizations.end(), values);
// if it's not there push it back in the list of parametrizations and then insert in the map
if (pIndex == listOfParametrizations.end()) {
listOfParametrizations.push_back(values);
std::vector<unsigned int> toInsert = {det};
modules_per_region.insert(std::make_pair(listOfParametrizations.size() - 1, toInsert));
} else {
modules_per_region.at(pIndex - listOfParametrizations.begin()).push_back(det);
}
}
unsigned int depth = listOfParametrizations.size();
std::vector<std::string> namesOfParts;
namesOfParts.reserve(depth);
// fill in the (ordered) information about regions
for (const auto& [index, modules] : modules_per_region) {
auto PhInfo = SiPixelPI::PhaseInfo(SiPixelPI::phase1size);
const auto& regName = SiPixDynIneff::attachLocationLabel(modules, PhInfo);
namesOfParts.push_back(regName);
/*
* The following is needed for internal
* debug / cross-check
*/
std::stringstream ss;
ss << "region name: " << regName << " has the following modules attached: [";
for (const auto& module : modules) {
ss << module << ", ";
}
ss.seekp(-2, std::ios_base::end); // remove last two chars
ss << "] "
<< " has representation (";
for (const auto& param : listOfParametrizations[index]) {
ss << param << ", ";
}
ss.seekp(-2, std::ios_base::end); // remove last two chars
ss << ") ";
edm::LogPrint(label_) << ss.str() << "\n\n";
ss.str(std::string()); /* clear the stringstream */
}
std::vector<TF1*> parametrizations;
std::vector<std::string> formulas;
parametrizations.reserve(depth);
formulas.reserve(depth);
// fill the parametrization plots
SiPixDynIneff::fillParametrizations(listOfParametrizations, parametrizations, formulas, namesOfParts);
// determine how the plot will be paginated
auto sides = SiPixDynIneff::getClosestFactors(depth);
TCanvas canvas("Canv", "Canv", sides.second * 900, sides.first * 600);
canvas.Divide(sides.second, sides.first);
// print the sub-canvases
for (unsigned int i = 0; i < depth; i++) {
canvas.cd(i + 1);
gPad->SetGrid();
SiPixelPI::adjustCanvasMargins(gPad, 0.07, 0.14, 0.14, 0.03);
parametrizations[i]->Draw();
// set axis
TH1* h = parametrizations[i]->GetHistogram();
TAxis* ax = h->GetXaxis();
ax->SetTitle("Inst. luminosity [10^{33} cm^{-2}s^{-1}]");
TAxis* ay = h->GetYaxis();
ay->SetRangeUser(0.80, 1.00); // force the scale
ay->SetTitle("Double Column Efficiency parametrization");
// beautify
SiPixelPI::makeNicePlotStyle(h);
auto ltx = TLatex();
ltx.SetTextFont(62);
ltx.SetTextSize(0.045);
ltx.SetTextAlign(11);
ltx.DrawLatexNDC(
gPad->GetLeftMargin() + 0.03,
gPad->GetBottomMargin() + 0.08,
("#color[2]{" + tag.name + "},IOV: #color[2]{" + std::to_string(std::get<0>(iov)) + "}").c_str());
auto ltxForm = TLatex();
ltxForm.SetTextFont(62);
ltxForm.SetTextColor(kRed);
ltxForm.SetTextSize(0.035);
ltxForm.SetTextAlign(11);
ltxForm.DrawLatexNDC(gPad->GetLeftMargin() + 0.03, gPad->GetBottomMargin() + 0.04, formulas[i].c_str());
edm::LogPrint(label_) << namesOfParts[i] << " => " << formulas[i] << std::endl;
}
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
} // if payload.get()
return true;
} // fill()
protected:
std::string payloadString;
std::string label_;
};
template <IOVMultiplicity nIOVs, int ntags>
class SiPixelDynamicInefficiencyPUParamComparisonBase : public PlotImage<SiPixelDynamicInefficiency, nIOVs, ntags> {
public:
SiPixelDynamicInefficiencyPUParamComparisonBase()
: PlotImage<SiPixelDynamicInefficiency, nIOVs, ntags>(
Form("SiPixelDynamic Inefficiency parameterization comparison by Region %i tag(s)", ntags)) {
label_ = "SiPixelDynamicInefficiencyPUParameterization";
}
bool fill() override {
gStyle->SetPalette(1);
// trick to deal with the multi-ioved tag and two tag case at the same time
auto theIOVs = PlotBase::getTag<0>().iovs;
auto f_tagname = PlotBase::getTag<0>().name;
std::string l_tagname = "";
auto firstiov = theIOVs.front();
std::tuple<cond::Time_t, cond::Hash> lastiov;
// we don't support (yet) comparison with more than 2 tags
assert(this->m_plotAnnotations.ntags < 3);
if (this->m_plotAnnotations.ntags == 2) {
auto tag2iovs = PlotBase::getTag<1>().iovs;
l_tagname = PlotBase::getTag<1>().name;
lastiov = tag2iovs.front();
} else {
lastiov = theIOVs.back();
}
std::shared_ptr<SiPixelDynamicInefficiency> last_payload = this->fetchPayload(std::get<1>(lastiov));
std::shared_ptr<SiPixelDynamicInefficiency> first_payload = this->fetchPayload(std::get<1>(firstiov));
if (first_payload.get() && last_payload.get()) {
SiPixDynIneff::PUFactorMap f_theMap = first_payload->getPUFactors();
std::vector<uint32_t> f_detIdmasks_db = first_payload->getDetIdmasks();
SiPixDynIneff::PUFactorMap l_theMap = last_payload->getPUFactors();
std::vector<uint32_t> l_detIdmasks_db = last_payload->getDetIdmasks();
if (!SiPixDynIneff::checkPhase(SiPixelPI::phase::one, f_detIdmasks_db) ||
!SiPixDynIneff::checkPhase(SiPixelPI::phase::one, l_detIdmasks_db)) {
edm::LogError(label_) << label_ << " maps are not supported for non-Phase1 Pixel geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
std::vector<std::vector<double> > f_listOfParametrizations;
std::vector<std::vector<double> > l_listOfParametrizations;
// retrieve the list of phase1 detids
const auto& reader =
SiPixelDetInfoFileReader(edm::FileInPath(SiPixelDetInfoFileReader::kPh1DefaultFile).fullPath());
auto p1detIds = reader.getAllDetIds();
// follows hack to get an inner ladder module first
// skip the first 8 dets since they lay on the same ladder
std::swap(p1detIds[0], p1detIds[8]);
std::map<unsigned int, std::vector<uint32_t> > modules_per_region;
// fill the maps
for (const auto& det : p1detIds) {
const auto& f_values = SiPixDynIneff::getMatchingPUFactors(det, f_theMap, f_detIdmasks_db);
const auto& l_values = SiPixDynIneff::getMatchingPUFactors(det, l_theMap, l_detIdmasks_db);
// find the index in the vector
auto fIndex = std::find(f_listOfParametrizations.begin(), f_listOfParametrizations.end(), f_values);
auto lIndex = std::find(l_listOfParametrizations.begin(), l_listOfParametrizations.end(), l_values);
// if it's not there push it back in the list of parametrizations and then insert in the map
if (fIndex == f_listOfParametrizations.end()) {
f_listOfParametrizations.push_back(f_values);
std::vector<unsigned int> toInsert = {det};
modules_per_region.insert(std::make_pair(f_listOfParametrizations.size() - 1, toInsert));
} else {
modules_per_region.at(fIndex - f_listOfParametrizations.begin()).push_back(det);
}
if (lIndex == l_listOfParametrizations.end()) {
l_listOfParametrizations.push_back(l_values);
}
}
unsigned int f_depth = f_listOfParametrizations.size();
unsigned int l_depth = l_listOfParametrizations.size();
if (l_depth != f_depth) {
edm::LogError(label_) << label_
<< " trying to compare dynamic inefficiencys payload with different detid masks!";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, 0);
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
}
assert(f_depth == l_depth);
std::vector<std::string> namesOfParts;
namesOfParts.reserve(f_depth);
// fill in the (ordered) information about regions
for (const auto& [index, modules] : modules_per_region) {
auto PhInfo = SiPixelPI::PhaseInfo(SiPixelPI::phase1size);
const auto& regName = SiPixDynIneff::attachLocationLabel(modules, PhInfo);
namesOfParts.push_back(regName);
/*
* The following is needed for internal
* debug / cross-check
*/
std::stringstream ss;
ss << "region name: " << regName << " has the following modules attached: [";
for (const auto& module : modules) {
ss << module << ", ";
}
ss.seekp(-2, std::ios_base::end); // remove last two chars
ss << "] "
<< " has representation (";
for (const auto& param : f_listOfParametrizations[index]) {
ss << param << ", ";
}
ss.seekp(-2, std::ios_base::end); // remove last two chars
ss << ") ";
edm::LogPrint(label_) << ss.str() << "\n\n";
ss.str(std::string()); /* clear the stringstream */
}
// now fill the paramtrizations
std::vector<TF1*> f_parametrizations;
std::vector<std::string> f_formulas;
f_parametrizations.reserve(f_depth);
f_formulas.reserve(f_depth);
std::vector<TF1*> l_parametrizations;
std::vector<std::string> l_formulas;
l_parametrizations.reserve(l_depth);
l_formulas.reserve(l_depth);
// fill the parametrization plots
SiPixDynIneff::fillParametrizations(f_listOfParametrizations, f_parametrizations, f_formulas, namesOfParts);
SiPixDynIneff::fillParametrizations(l_listOfParametrizations, l_parametrizations, l_formulas, namesOfParts);
// determine how the plot will be paginated
auto sides = SiPixDynIneff::getClosestFactors(f_depth);
TCanvas canvas("Canv", "Canv", sides.second * 900, sides.first * 600);
canvas.Divide(sides.second, sides.first);
// print the sub-canvases
for (unsigned int i = 0; i < f_depth; i++) {
canvas.cd(i + 1);
gPad->SetGrid();
SiPixelPI::adjustCanvasMargins(gPad, 0.07, 0.14, 0.14, 0.03);
f_parametrizations[i]->Draw();
l_parametrizations[i]->SetLineColor(kBlue);
l_parametrizations[i]->SetLineStyle(kDashed);
l_parametrizations[i]->Draw("same");
// set axis
TH1* h = f_parametrizations[i]->GetHistogram();
TAxis* ax = h->GetXaxis();
ax->SetTitle("Inst. luminosity [10^{33} cm^{-2}s^{-1}]");
TAxis* ay = h->GetYaxis();
ay->SetRangeUser(0.80, 1.00); // force the scale
ay->SetTitle("Double Column Efficiency parametrization");
// beautify
SiPixelPI::makeNicePlotStyle(h);
auto ltx = TLatex();
ltx.SetTextFont(62);
ltx.SetTextSize(0.045);
ltx.SetTextAlign(11);
ltx.DrawLatexNDC(
gPad->GetLeftMargin() + 0.03,
gPad->GetBottomMargin() + 0.16,
("#color[2]{" + f_tagname + "},IOV: #color[2]{" + std::to_string(std::get<0>(firstiov)) + "}").c_str());
ltx.DrawLatexNDC(
gPad->GetLeftMargin() + 0.03,
gPad->GetBottomMargin() + 0.08,
("#color[4]{" + l_tagname + "},IOV: #color[4]{" + std::to_string(std::get<0>(lastiov)) + "}").c_str());
auto ltxForm = TLatex();
ltxForm.SetTextFont(62);
ltxForm.SetTextColor(kRed);
ltxForm.SetTextSize(0.035);
ltxForm.SetTextAlign(11);
ltxForm.DrawLatexNDC(gPad->GetLeftMargin() + 0.03, gPad->GetBottomMargin() + 0.12, f_formulas[i].c_str());
ltxForm.SetTextColor(kBlue);
ltxForm.DrawLatexNDC(gPad->GetLeftMargin() + 0.03, gPad->GetBottomMargin() + 0.04, l_formulas[i].c_str());
edm::LogPrint(label_) << namesOfParts[i] << " => " << f_formulas[i] << std::endl;
edm::LogPrint(label_) << namesOfParts[i] << " => " << l_formulas[i] << std::endl;
}
std::string fileName(this->m_imageFileName);
canvas.SaveAs(fileName.c_str());
//canvas.SaveAs((fileName+".root").c_str());
} // if payload.get()
return true;
} // fill()
protected:
std::string label_;
};
using SiPixelDynamicInefficiencyPUParamComparisonTwoTags =
SiPixelDynamicInefficiencyPUParamComparisonBase<SINGLE_IOV, 2>;
} // namespace
// Register the classes as boost python plugin
PAYLOAD_INSPECTOR_MODULE(SiPixelDynamicInefficiency) {
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyTest);
PAYLOAD_INSPECTOR_CLASS(SiPixelBPixIneffROCfromDynIneffMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelFPixIneffROCfromDynIneffMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelFullIneffROCfromDynIneffMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelBPixIneffROCsMapCompareTwoTags);
PAYLOAD_INSPECTOR_CLASS(SiPixelFPixIneffROCsMapCompareTwoTags);
PAYLOAD_INSPECTOR_CLASS(SiPixelFullIneffROCsMapCompareTwoTags);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyGeomFactorMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyColGeomFactorMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyChipGeomFactorMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyPUPixelMaps);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyPUParametrization);
PAYLOAD_INSPECTOR_CLASS(SiPixelDynamicInefficiencyPUParamComparisonTwoTags);
}
|