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
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
|
//Original Author: Christopher Edelmaier
// Created: Feb. 11, 2010
// system include files
#include <fstream>
#include <iostream>
#include <memory>
#include <sstream>
#include <string>
// user includes
#include "CalibFormats/SiStripObjects/interface/SiStripDetCabling.h"
#include "CalibFormats/SiStripObjects/interface/SiStripQuality.h"
#include "CalibTracker/Records/interface/SiStripDetCablingRcd.h"
#include "CalibTracker/Records/interface/SiStripQualityRcd.h"
#include "CalibTracker/SiStripCommon/interface/SiStripDetInfoFileReader.h"
#include "CalibTracker/SiStripHitEfficiency/interface/SiStripHitEfficiencyHelpers.h"
#include "CalibTracker/SiStripHitResolution/interface/HitResol.h"
#include "CommonTools/ConditionDBWriter/interface/ConditionDBWriter.h"
#include "CommonTools/TrackerMap/interface/TrackerMap.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/GeometrySurface/interface/TrapezoidalPlaneBounds.h"
#include "DataFormats/GeometryVector/interface/GlobalPoint.h"
#include "DataFormats/GeometryVector/interface/GlobalVector.h"
#include "DataFormats/GeometryVector/interface/LocalVector.h"
#include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/CommonDetUnit/interface/GeomDetType.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/Records/interface/TrackerTopologyRcd.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
// ROOT includes
#include "TCanvas.h"
#include "TEfficiency.h"
#include "TF1.h"
#include "TFile.h"
#include "TGaxis.h"
#include "TGraphAsymmErrors.h"
#include "TH1F.h"
#include "TH2F.h"
#include "TLatex.h"
#include "TLeaf.h"
#include "TLegend.h"
#include "TObjString.h"
#include "TProfile.h"
#include "TROOT.h"
#include "TString.h"
#include "TStyle.h"
#include "TTree.h"
using namespace edm;
using namespace reco;
using namespace std;
struct hit {
double x;
double y;
double z;
unsigned int id;
};
class SiStripHitResolFromCalibTree : public ConditionDBWriter<SiStripBadStrip> {
public:
explicit SiStripHitResolFromCalibTree(const edm::ParameterSet&);
~SiStripHitResolFromCalibTree() override = default;
private:
void algoBeginJob(const edm::EventSetup&) override;
void algoEndJob() override;
void algoAnalyze(const edm::Event& e, const edm::EventSetup& c) override;
void SetBadComponents(int i,
int component,
SiStripQuality::BadComponent& BC,
std::stringstream ssV[4][19],
int NBadComponent[4][19][4]);
void makeTKMap(const edm::Service<TFileService>& fs, bool autoTagging);
void makeHotColdMaps(const edm::Service<TFileService>& fs);
void makeSQLite();
void totalStatistics();
void makeSummary(const edm::Service<TFileService>& fs);
void makeSummaryVsBx(const edm::Service<TFileService>& fs);
void ComputeEff(const edm::Service<TFileService>& fs, vector<TH1F*>& vhfound, vector<TH1F*>& vhtotal, string name);
void makeSummaryVsLumi(const edm::Service<TFileService>& fs);
void makeSummaryVsCM(const edm::Service<TFileService>& fs);
TString GetLayerName(Long_t k);
TString GetLayerSideName(Long_t k);
float calcPhi(float x, float y);
static constexpr double nBxInAnOrbit = 3565;
SiStripDetInfo detInfo_;
edm::FileInPath FileInPath_;
SiStripQuality* quality_;
std::unique_ptr<SiStripBadStrip> getNewObject() override;
TTree* CalibTree;
vector<string> calibTreeFileNames_;
float threshold_;
unsigned int nModsMin_;
unsigned int doSummary_;
string badModulesFile_;
bool autoIneffModTagging_;
unsigned int clusterMatchingMethod_;
float resXSig_;
float clusterTrajDist_;
float stripsApvEdge_;
bool useOnlyHighPurityTracks_;
unsigned int bunchx_;
unsigned int spaceBetweenTrains_;
bool useCM_;
bool showEndcapSides_;
bool showRings_;
bool showTOB6TEC9_;
bool showOnlyGoodModules_;
float tkMapMin_;
float effPlotMin_;
TString title_;
edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> tkGeomToken_;
edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_;
unsigned int nTEClayers_;
TH1F* bxHisto;
TH1F* instLumiHisto;
TH1F* PUHisto;
// for association of informations of the hitEff tree and the event infos tree
map<pair<unsigned int, unsigned int>, array<double, 3> > eventInfos;
vector<hit> hits[::k_END_OF_LAYERS];
vector<TH2F*> HotColdMaps;
map<unsigned int, pair<unsigned int, unsigned int> > modCounter[::k_END_OF_LAYERS];
TrackerMap* tkmap;
TrackerMap* tkmapbad;
TrackerMap* tkmapeff;
TrackerMap* tkmapnum;
TrackerMap* tkmapden;
long layerfound[::k_END_OF_LAYERS];
long layertotal[::k_END_OF_LAYERS];
map<unsigned int, vector<int> > layerfound_perBx;
map<unsigned int, vector<int> > layertotal_perBx;
vector<TH1F*> layerfound_vsLumi;
vector<TH1F*> layertotal_vsLumi;
vector<TH1F*> layerfound_vsPU;
vector<TH1F*> layertotal_vsPU;
vector<TH1F*> layerfound_vsCM;
vector<TH1F*> layertotal_vsCM;
vector<TH1F*> layerfound_vsBX;
vector<TH1F*> layertotal_vsBX;
int goodlayertotal[::k_END_OF_LAYS_AND_RINGS];
int goodlayerfound[::k_END_OF_LAYS_AND_RINGS];
int alllayertotal[::k_END_OF_LAYS_AND_RINGS];
int alllayerfound[::k_END_OF_LAYS_AND_RINGS];
map<unsigned int, double> BadModules;
};
SiStripHitResolFromCalibTree::SiStripHitResolFromCalibTree(const edm::ParameterSet& conf)
: ConditionDBWriter<SiStripBadStrip>(conf), FileInPath_("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat") {
usesResource(TFileService::kSharedResource);
calibTreeFileNames_ = conf.getUntrackedParameter<vector<std::string> >("CalibTreeFilenames");
threshold_ = conf.getParameter<double>("Threshold");
nModsMin_ = conf.getParameter<int>("nModsMin");
doSummary_ = conf.getParameter<int>("doSummary");
badModulesFile_ = conf.getUntrackedParameter<std::string>("BadModulesFile", "");
autoIneffModTagging_ = conf.getUntrackedParameter<bool>("AutoIneffModTagging", false);
clusterMatchingMethod_ = conf.getUntrackedParameter<int>("ClusterMatchingMethod", 0);
resXSig_ = conf.getUntrackedParameter<double>("ResXSig", -1);
clusterTrajDist_ = conf.getUntrackedParameter<double>("ClusterTrajDist", 64.0);
stripsApvEdge_ = conf.getUntrackedParameter<double>("StripsApvEdge", 10.0);
useOnlyHighPurityTracks_ = conf.getUntrackedParameter<bool>("UseOnlyHighPurityTracks", true);
bunchx_ = conf.getUntrackedParameter<int>("BunchCrossing", 0);
spaceBetweenTrains_ = conf.getUntrackedParameter<int>("SpaceBetweenTrains", 25);
useCM_ = conf.getUntrackedParameter<bool>("UseCommonMode", false);
showEndcapSides_ = conf.getUntrackedParameter<bool>("ShowEndcapSides", true);
showRings_ = conf.getUntrackedParameter<bool>("ShowRings", false);
showTOB6TEC9_ = conf.getUntrackedParameter<bool>("ShowTOB6TEC9", false);
showOnlyGoodModules_ = conf.getUntrackedParameter<bool>("ShowOnlyGoodModules", false);
tkMapMin_ = conf.getUntrackedParameter<double>("TkMapMin", 0.9);
effPlotMin_ = conf.getUntrackedParameter<double>("EffPlotMin", 0.9);
title_ = conf.getParameter<std::string>("Title");
tkGeomToken_ = esConsumes();
tTopoToken_ = esConsumes();
detInfo_ = SiStripDetInfoFileReader::read(FileInPath_.fullPath());
nTEClayers_ = 9; // number of wheels
if (showRings_)
nTEClayers_ = 7; // number of rings
quality_ = new SiStripQuality(detInfo_);
}
void SiStripHitResolFromCalibTree::algoBeginJob(const edm::EventSetup&) {}
void SiStripHitResolFromCalibTree::algoEndJob() {}
void SiStripHitResolFromCalibTree::algoAnalyze(const edm::Event& e, const edm::EventSetup& c) {
edm::Service<TFileService> fs;
const auto& tkgeom = c.getData(tkGeomToken_);
const auto& tTopo = c.getData(tTopoToken_);
// read bad modules to mask
ifstream badModules_file;
set<uint32_t> badModules_list;
if (!badModulesFile_.empty()) {
badModules_file.open(badModulesFile_.c_str());
uint32_t badmodule_detid;
int mods, fiber1, fiber2, fiber3;
if (badModules_file.is_open()) {
string line;
while (getline(badModules_file, line)) {
if (badModules_file.eof())
continue;
stringstream ss(line);
ss >> badmodule_detid >> mods >> fiber1 >> fiber2 >> fiber3;
if (badmodule_detid != 0 && mods == 1 && (fiber1 == 1 || fiber2 == 1 || fiber3 == 1))
badModules_list.insert(badmodule_detid);
}
badModules_file.close();
}
}
if (!badModules_list.empty())
edm::LogInfo("SiStripHitResolFromCalibTree") << "Remove additionnal bad modules from the analysis: " << endl;
set<uint32_t>::iterator itBadMod;
for (itBadMod = badModules_list.begin(); itBadMod != badModules_list.end(); ++itBadMod)
edm::LogInfo("SiStripHitResolFromCalibTree") << " " << *itBadMod << endl;
// initialze counters and histos
bxHisto = fs->make<TH1F>("bx", "bx", 3600, 0, 3600);
instLumiHisto = fs->make<TH1F>("instLumi", "inst. lumi.", 250, 0, 25000);
PUHisto = fs->make<TH1F>("PU", "PU", 200, 0, 200);
for (int l = 0; l < ::k_END_OF_LAYS_AND_RINGS; l++) {
goodlayertotal[l] = 0;
goodlayerfound[l] = 0;
alllayertotal[l] = 0;
alllayerfound[l] = 0;
}
TH1F* PredPlots_m[::k_END_OF_LAYERS];
TH1F* PredPlots_p[::k_END_OF_LAYERS];
TH1F* MeasPlots_m[::k_END_OF_LAYERS];
TH1F* MeasPlots_p[::k_END_OF_LAYERS];
TH1F* ResidPlots_m[::k_END_OF_LAYERS];
TH1F* ResidPlots_p[::k_END_OF_LAYERS];
//std::string UnitString = "cm";
std::string UnitString = "strip unit";
std::string PlotTitleClusX;
std::string PlotTitleTrajX;
std::string FileNameEnding;
if (UnitString == "cm") {
PlotTitleClusX = "clusX [cm]";
PlotTitleTrajX = "trajX [cm]";
FileNameEnding = "CM";
} else if (UnitString == "strip unit") {
PlotTitleClusX = "clusX [strip unit]";
PlotTitleTrajX = "trajX [strip unit]";
FileNameEnding = "StripUnit";
} else {
edm::LogInfo("SiStripHitResolFromCalibTree") << "ERROR: Unit must either be cm or strip unit." << std::endl;
}
for (Long_t ilayer = 0; ilayer < ::k_END_OF_LAYERS; ilayer++) {
MeasPlots_m[ilayer] =
fs->make<TH1F>(Form("MeasPlots_m_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 1000, -5., 5.);
MeasPlots_m[ilayer]->GetXaxis()->SetTitle("clusX [cm]");
MeasPlots_p[ilayer] =
fs->make<TH1F>(Form("MeasPlots_p_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 1000, -400, 400);
MeasPlots_p[ilayer]->GetXaxis()->SetTitle("clusX [strip]");
PredPlots_m[ilayer] =
fs->make<TH1F>(Form("PredPlots_m_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 1000, -5., 5.);
PredPlots_m[ilayer]->GetXaxis()->SetTitle("trajX [cm]");
PredPlots_p[ilayer] =
fs->make<TH1F>(Form("PredPlots_p_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 1000, -400, 400);
PredPlots_p[ilayer]->GetXaxis()->SetTitle("trajX [strip]");
ResidPlots_m[ilayer] =
fs->make<TH1F>(Form("ResidPlots_m_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 250, -.125, .125);
ResidPlots_m[ilayer]->GetXaxis()->SetTitle("trajX [cm]");
ResidPlots_p[ilayer] =
fs->make<TH1F>(Form("ResidPlots_p_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 200, -10., 10);
ResidPlots_p[ilayer]->GetXaxis()->SetTitle("trajX [strip]");
layerfound_vsLumi.push_back(
fs->make<TH1F>(Form("layerfound_vsLumi_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 100, 0, 25000));
layertotal_vsLumi.push_back(
fs->make<TH1F>(Form("layertotal_vsLumi_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 100, 0, 25000));
layerfound_vsPU.push_back(
fs->make<TH1F>(Form("layerfound_vsPU_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 45, 0, 90));
layertotal_vsPU.push_back(
fs->make<TH1F>(Form("layertotal_vsPU_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 45, 0, 90));
layerfound_vsBX.push_back(fs->make<TH1F>(
Form("foundVsBx_layer%i", (int)ilayer), Form("layer %i", (int)ilayer), nBxInAnOrbit, 0, nBxInAnOrbit));
layertotal_vsBX.push_back(fs->make<TH1F>(
Form("totalVsBx_layer%i", (int)ilayer), Form("layer %i", (int)ilayer), nBxInAnOrbit, 0, nBxInAnOrbit));
if (useCM_) {
layerfound_vsCM.push_back(
fs->make<TH1F>(Form("layerfound_vsCM_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 20, 0, 400));
layertotal_vsCM.push_back(
fs->make<TH1F>(Form("layertotal_vsCM_layer_%i", (int)(ilayer)), GetLayerName(ilayer), 20, 0, 400));
}
layertotal[ilayer] = 0;
layerfound[ilayer] = 0;
}
if (!autoIneffModTagging_)
edm::LogInfo("SiStripHitResolFromCalibTree") << "A module is bad if efficiency < " << threshold_
<< " and has at least " << nModsMin_ << " nModsMin." << endl;
else
edm::LogInfo("SiStripHitResolFromCalibTree") << "A module is bad if efficiency < the avg in layer - " << threshold_
<< " and has at least " << nModsMin_ << " nModsMin." << endl;
unsigned int run, evt, bx;
double instLumi, PU;
//Open the ROOT Calib Tree
for (unsigned int ifile = 0; ifile < calibTreeFileNames_.size(); ifile++) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Loading file: " << calibTreeFileNames_[ifile] << endl;
TFile* CalibTreeFile = TFile::Open(calibTreeFileNames_[ifile].c_str(), "READ");
// Get event infos
bool foundEventInfos = false;
try {
CalibTreeFile->cd("eventInfo");
} catch (exception& e) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "No event infos tree" << endl;
}
TTree* EventTree = (TTree*)(gDirectory->Get("tree"));
TLeaf* runLf;
TLeaf* evtLf;
TLeaf* BunchLf;
TLeaf* InstLumiLf;
TLeaf* PULf;
if (EventTree) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Found event infos tree" << endl;
runLf = EventTree->GetLeaf("run");
evtLf = EventTree->GetLeaf("event");
BunchLf = EventTree->GetLeaf("bx");
InstLumiLf = EventTree->GetLeaf("instLumi");
PULf = EventTree->GetLeaf("PU");
int nevt = EventTree->GetEntries();
if (nevt)
foundEventInfos = true;
for (int j = 0; j < nevt; j++) {
EventTree->GetEntry(j);
run = runLf->GetValue();
evt = evtLf->GetValue();
bx = BunchLf->GetValue();
instLumi = InstLumiLf->GetValue();
PU = PULf->GetValue();
bxHisto->Fill(bx);
instLumiHisto->Fill(instLumi);
PUHisto->Fill(PU);
eventInfos[make_pair(run, evt)] = array<double, 3>{{(double)bx, instLumi, PU}};
}
}
// Get hit infos
CalibTreeFile->cd("anEff");
CalibTree = (TTree*)(gDirectory->Get("traj"));
runLf = CalibTree->GetLeaf("run");
evtLf = CalibTree->GetLeaf("event");
TLeaf* BadLf = CalibTree->GetLeaf("ModIsBad");
TLeaf* sistripLf = CalibTree->GetLeaf("SiStripQualBad");
TLeaf* idLf = CalibTree->GetLeaf("Id");
TLeaf* acceptLf = CalibTree->GetLeaf("withinAcceptance");
TLeaf* layerLf = CalibTree->GetLeaf("layer");
//TLeaf* nHitsLf = CalibTree->GetLeaf("nHits");
TLeaf* highPurityLf = CalibTree->GetLeaf("highPurity");
TLeaf* xLf = CalibTree->GetLeaf("TrajGlbX");
TLeaf* yLf = CalibTree->GetLeaf("TrajGlbY");
TLeaf* zLf = CalibTree->GetLeaf("TrajGlbZ");
TLeaf* ResXSigLf = CalibTree->GetLeaf("ResXSig");
TLeaf* TrajLocXLf = CalibTree->GetLeaf("TrajLocX");
TLeaf* TrajLocYLf = CalibTree->GetLeaf("TrajLocY");
TLeaf* ClusterLocXLf = CalibTree->GetLeaf("ClusterLocX");
BunchLf = CalibTree->GetLeaf("bunchx");
InstLumiLf = CalibTree->GetLeaf("instLumi");
PULf = CalibTree->GetLeaf("PU");
TLeaf* CMLf = nullptr;
if (useCM_)
CMLf = CalibTree->GetLeaf("commonMode");
int nevents = CalibTree->GetEntries();
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Successfully loaded analyze function with " << nevents << " events!\n";
map<pair<unsigned int, unsigned int>, array<double, 3> >::iterator itEventInfos;
//Loop through all of the events
for (int j = 0; j < nevents; j++) {
CalibTree->GetEntry(j);
run = (unsigned int)runLf->GetValue();
evt = (unsigned int)evtLf->GetValue();
unsigned int isBad = (unsigned int)BadLf->GetValue();
unsigned int quality = (unsigned int)sistripLf->GetValue();
unsigned int id = (unsigned int)idLf->GetValue();
unsigned int accept = (unsigned int)acceptLf->GetValue();
unsigned int layer_wheel = (unsigned int)layerLf->GetValue();
unsigned int layer = layer_wheel;
if (showRings_ && layer > 10) { // use rings instead of wheels
if (layer < 14)
layer = 10 + ((id >> 9) & 0x3); //TID 3 disks and also 3 rings -> use the same container
else
layer = 13 + ((id >> 5) & 0x7); //TEC
}
//unsigned int nHits = (unsigned int)nHitsLf->GetValue();
bool highPurity = (bool)highPurityLf->GetValue();
double x = xLf->GetValue();
double y = yLf->GetValue();
double z = zLf->GetValue();
double resxsig = ResXSigLf->GetValue();
double TrajLocX = TrajLocXLf->GetValue();
double TrajLocY = TrajLocYLf->GetValue();
double ClusterLocX = ClusterLocXLf->GetValue();
double TrajLocXMid;
double stripTrajMid;
double stripCluster;
bool badquality = false;
instLumi = 0;
PU = 0;
// if no special tree with event infos, they may be stored in the hit eff tree
if (!foundEventInfos) {
bx = (unsigned int)BunchLf->GetValue();
if (InstLumiLf != nullptr)
instLumi = InstLumiLf->GetValue(); // branch not filled by default
if (PULf != nullptr)
PU = PULf->GetValue(); // branch not filled by default
}
int CM = -100;
if (useCM_)
CM = CMLf->GetValue();
// Get infos from eventInfos if they exist
if (foundEventInfos) {
itEventInfos = eventInfos.find(make_pair(run, evt));
if (itEventInfos != eventInfos.end()) {
bx = itEventInfos->second[0];
instLumi = itEventInfos->second[1];
PU = itEventInfos->second[2];
}
}
//We have two things we want to do, both an XY color plot, and the efficiency measurement
//First, ignore anything that isn't in acceptance and isn't good quality
if (bunchx_ > 0 && bunchx_ != bx)
continue;
//if(quality == 1 || accept != 1 || nHits < 8) continue;
if (accept != 1)
continue;
if (useOnlyHighPurityTracks_ && !highPurity)
continue;
if (quality == 1)
badquality = true;
// don't compute efficiencies in modules from TOB6 and TEC9
if (!showTOB6TEC9_ && (layer_wheel == 10 || layer_wheel == 22))
continue;
// don't use bad modules given in the bad module list
itBadMod = badModules_list.find(id);
if (itBadMod != badModules_list.end())
continue;
//Now that we have a good event, we need to look at if we expected it or not, and the location
//if we didn't
//Fill the missing hit information first
bool badflag = false;
// By default uses the old matching method
if (resXSig_ < 0) {
if (isBad == 1)
badflag = true; // isBad set to false in the tree when resxsig<999.0
} else {
if (isBad == 1 || resxsig > resXSig_)
badflag = true;
}
// Conversion of positions in strip unit
int nstrips = -9;
float Pitch = -9.0;
//For converting from pitch units into micrometres
//const StripGeomDetUnit * conversion = dynamic_cast<const StripGeomDetUnit*>(tkgeom->idToDetUnit(DetId));
//auto SpecTopo = conversion->specificTopology();
//const StripGeomDetUnit * conversion=(const StripGeomDetUnit*)tkgeom->idToDetUnit(DetId);
//auto SpecTopo = conversion->specificTopology();
//edm::LogInfo("SiStripHitResolFromCalibTree") << '\n' << std::endl;
//edm::LogInfo("SiStripHitResolFromCalibTree") << "SpecTopo = " << SpecTopo << std::endl;
//edm::LogInfo("SiStripHitResolFromCalibTree") << '\n' << std::endl;
if (resxsig == 1000.0) { // special treatment, no GeomDetUnit associated in some cases when no cluster found
Pitch = 0.0205; // maximum
nstrips = 768; // maximum
stripTrajMid = TrajLocX / Pitch + nstrips / 2.0;
stripCluster = ClusterLocX / Pitch + nstrips / 2.0;
} else {
DetId ClusterDetId(id);
const StripGeomDetUnit* stripdet = (const StripGeomDetUnit*)tkgeom.idToDetUnit(ClusterDetId);
const StripTopology& Topo = stripdet->specificTopology();
nstrips = Topo.nstrips();
Pitch = stripdet->surface().bounds().width() / Topo.nstrips();
stripTrajMid = TrajLocX / Pitch + nstrips / 2.0; //layer01->10
stripCluster = ClusterLocX / Pitch + nstrips / 2.0;
// For trapezoidal modules: extrapolation of x trajectory position to the y middle of the module
// for correct comparison with cluster position
float hbedge = 0;
float htedge = 0;
float hapoth = 0;
if (layer >= 11) {
const BoundPlane& plane = stripdet->surface();
const TrapezoidalPlaneBounds* trapezoidalBounds(
dynamic_cast<const TrapezoidalPlaneBounds*>(&(plane.bounds())));
std::array<const float, 4> const& parameters = (*trapezoidalBounds).parameters();
hbedge = parameters[0];
htedge = parameters[1];
hapoth = parameters[3];
TrajLocXMid = TrajLocX / (1 + (htedge - hbedge) * TrajLocY / (htedge + hbedge) /
hapoth); // radialy extrapolated x loc position at middle
stripTrajMid = TrajLocXMid / Pitch + nstrips / 2.0;
}
}
/*
double MeasPlotsVariable;
double PredPlotsVariable;
if(UnitString == "cm"){MeasPlotsVariable = ClusterLocX; PredPlotsVariable = TrajLocX;}
else if(UnitString == "strip unit"){MeasPlotsVariable = ClusterLocX/Pitch; PredPlotsVariable = TrajLocX/Pitch;}
else{edm::LogInfo("SiStripHitResolFromCalibTree") << "ERROR: Unit must be cm or strip unit" << std::endl;}
*/
if (!badquality && layer < ::k_END_OF_LAYERS) {
if (resxsig != 1000.0) {
MeasPlots_m[layer]->Fill(ClusterLocX);
MeasPlots_p[layer]->Fill(ClusterLocX / Pitch);
PredPlots_m[layer]->Fill(TrajLocX);
PredPlots_p[layer]->Fill(TrajLocX / Pitch);
ResidPlots_m[layer]->Fill(ClusterLocX - TrajLocX);
ResidPlots_p[layer]->Fill((ClusterLocX - TrajLocX) / Pitch);
} else {
MeasPlots_m[layer]->Fill(1000);
MeasPlots_p[layer]->Fill(1000);
PredPlots_m[layer]->Fill(1000);
PredPlots_p[layer]->Fill(1000);
}
}
// New matching methods
int tapv = -9;
int capv = -9;
float stripInAPV = 64.;
if (clusterMatchingMethod_ >= 1) {
badflag = false; // reset
if (resxsig == 1000.0) { // default value when no cluster found in the module
badflag = true; // consider the module inefficient in this case
} else {
if (clusterMatchingMethod_ == 2 ||
clusterMatchingMethod_ == 4) { // check the distance between cluster and trajectory position
if (abs(stripCluster - stripTrajMid) > clusterTrajDist_)
badflag = true;
}
if (clusterMatchingMethod_ == 3 ||
clusterMatchingMethod_ ==
4) { // cluster and traj have to be in the same APV (don't take edges into accounts)
tapv = (int)stripTrajMid / 128;
capv = (int)stripCluster / 128;
stripInAPV = stripTrajMid - tapv * 128;
if (stripInAPV < stripsApvEdge_ || stripInAPV > 128 - stripsApvEdge_)
continue;
if (tapv != capv)
badflag = true;
}
}
}
if (badflag && !badquality) {
hit temphit;
temphit.x = x;
temphit.y = y;
temphit.z = z;
temphit.id = id;
hits[layer].push_back(temphit);
}
pair<unsigned int, unsigned int> newgoodpair(1, 1);
pair<unsigned int, unsigned int> newbadpair(1, 0);
//First, figure out if the module already exists in the map of maps
map<unsigned int, pair<unsigned int, unsigned int> >::iterator it = modCounter[layer].find(id);
if (!badquality) {
if (it == modCounter[layer].end()) {
if (badflag)
modCounter[layer][id] = newbadpair;
else
modCounter[layer][id] = newgoodpair;
} else {
((*it).second.first)++;
if (!badflag)
((*it).second.second)++;
}
if (layerfound_perBx.find(bx) == layerfound_perBx.end()) {
layerfound_perBx[bx] = vector<int>(::k_END_OF_LAYERS, 0);
layertotal_perBx[bx] = vector<int>(::k_END_OF_LAYERS, 0);
}
if (!badflag)
layerfound_perBx[bx][layer]++;
layertotal_perBx[bx][layer]++;
if (!badflag)
layerfound_vsLumi[layer]->Fill(instLumi);
layertotal_vsLumi[layer]->Fill(instLumi);
if (!badflag)
layerfound_vsPU[layer]->Fill(PU);
layertotal_vsPU[layer]->Fill(PU);
if (useCM_) {
if (!badflag)
layerfound_vsCM[layer]->Fill(CM);
layertotal_vsCM[layer]->Fill(CM);
}
//Have to do the decoding for which side to go on (ugh)
if (layer <= 10) {
if (!badflag)
goodlayerfound[layer]++;
goodlayertotal[layer]++;
} else if (layer > 10 && layer < 14) {
if (((id >> 13) & 0x3) == 1) {
if (!badflag)
goodlayerfound[layer]++;
goodlayertotal[layer]++;
} else if (((id >> 13) & 0x3) == 2) {
if (!badflag)
goodlayerfound[layer + 3]++;
goodlayertotal[layer + 3]++;
}
} else if (layer > 13 && layer <= 22) {
if (((id >> 18) & 0x3) == 1) {
if (!badflag)
goodlayerfound[layer + 3]++;
goodlayertotal[layer + 3]++;
} else if (((id >> 18) & 0x3) == 2) {
if (!badflag)
goodlayerfound[layer + 3 + nTEClayers_]++;
goodlayertotal[layer + 3 + nTEClayers_]++;
}
}
}
//Do the one where we don't exclude bad modules!
if (layer <= 10) {
if (!badflag)
alllayerfound[layer]++;
alllayertotal[layer]++;
} else if (layer > 10 && layer < 14) {
if (((id >> 13) & 0x3) == 1) {
if (!badflag)
alllayerfound[layer]++;
alllayertotal[layer]++;
} else if (((id >> 13) & 0x3) == 2) {
if (!badflag)
alllayerfound[layer + 3]++;
alllayertotal[layer + 3]++;
}
} else if (layer > 13 && layer <= 22) {
if (((id >> 18) & 0x3) == 1) {
if (!badflag)
alllayerfound[layer + 3]++;
alllayertotal[layer + 3]++;
} else if (((id >> 18) & 0x3) == 2) {
if (!badflag)
alllayerfound[layer + 3 + nTEClayers_]++;
alllayertotal[layer + 3 + nTEClayers_]++;
}
}
//At this point, both of our maps are loaded with the correct information
}
} // go to next CalibTreeFile
makeHotColdMaps(fs);
makeTKMap(fs, autoIneffModTagging_);
makeSQLite();
totalStatistics();
makeSummary(fs);
makeSummaryVsBx(fs);
makeSummaryVsLumi(fs);
if (useCM_)
makeSummaryVsCM(fs);
////////////////////////////////////////////////////////////////////////
//try to write out what's in the quality record
/////////////////////////////////////////////////////////////////////////////
int NTkBadComponent[4]; //k: 0=BadModule, 1=BadFiber, 2=BadApv, 3=BadStrips
int NBadComponent[4][19][4];
//legend: NBadComponent[i][j][k]= SubSystem i, layer/disk/wheel j, BadModule/Fiber/Apv k
// i: 0=TIB, 1=TID, 2=TOB, 3=TEC
// k: 0=BadModule, 1=BadFiber, 2=BadApv, 3=BadStrips
std::stringstream ssV[4][19];
for (int i = 0; i < 4; ++i) {
NTkBadComponent[i] = 0;
for (int j = 0; j < 19; ++j) {
ssV[i][j].str("");
for (int k = 0; k < 4; ++k)
NBadComponent[i][j][k] = 0;
}
}
std::vector<SiStripQuality::BadComponent> BC = quality_->getBadComponentList();
for (size_t i = 0; i < BC.size(); ++i) {
//&&&&&&&&&&&&&
//Full Tk
//&&&&&&&&&&&&&
if (BC[i].BadModule)
NTkBadComponent[0]++;
if (BC[i].BadFibers)
NTkBadComponent[1] += ((BC[i].BadFibers >> 2) & 0x1) + ((BC[i].BadFibers >> 1) & 0x1) + ((BC[i].BadFibers) & 0x1);
if (BC[i].BadApvs)
NTkBadComponent[2] += ((BC[i].BadApvs >> 5) & 0x1) + ((BC[i].BadApvs >> 4) & 0x1) + ((BC[i].BadApvs >> 3) & 0x1) +
((BC[i].BadApvs >> 2) & 0x1) + ((BC[i].BadApvs >> 1) & 0x1) + ((BC[i].BadApvs) & 0x1);
//&&&&&&&&&&&&&&&&&
//Single SubSystem
//&&&&&&&&&&&&&&&&&
int component;
DetId a(BC[i].detid);
if (a.subdetId() == StripSubdetector::TIB) {
//&&&&&&&&&&&&&&&&&
//TIB
//&&&&&&&&&&&&&&&&&
component = tTopo.tibLayer(BC[i].detid);
SetBadComponents(0, component, BC[i], ssV, NBadComponent);
} else if (a.subdetId() == StripSubdetector::TID) {
//&&&&&&&&&&&&&&&&&
//TID
//&&&&&&&&&&&&&&&&&
component = tTopo.tidSide(BC[i].detid) == 2 ? tTopo.tidWheel(BC[i].detid) : tTopo.tidWheel(BC[i].detid) + 3;
SetBadComponents(1, component, BC[i], ssV, NBadComponent);
} else if (a.subdetId() == StripSubdetector::TOB) {
//&&&&&&&&&&&&&&&&&
//TOB
//&&&&&&&&&&&&&&&&&
component = tTopo.tobLayer(BC[i].detid);
SetBadComponents(2, component, BC[i], ssV, NBadComponent);
} else if (a.subdetId() == StripSubdetector::TEC) {
//&&&&&&&&&&&&&&&&&
//TEC
//&&&&&&&&&&&&&&&&&
component = tTopo.tecSide(BC[i].detid) == 2 ? tTopo.tecWheel(BC[i].detid) : tTopo.tecWheel(BC[i].detid) + 9;
SetBadComponents(3, component, BC[i], ssV, NBadComponent);
}
}
//&&&&&&&&&&&&&&&&&&
// Single Strip Info
//&&&&&&&&&&&&&&&&&&
float percentage = 0;
SiStripQuality::RegistryIterator rbegin = quality_->getRegistryVectorBegin();
SiStripQuality::RegistryIterator rend = quality_->getRegistryVectorEnd();
for (SiStripBadStrip::RegistryIterator rp = rbegin; rp != rend; ++rp) {
unsigned int detid = rp->detid;
int subdet = -999;
int component = -999;
DetId a(detid);
if (a.subdetId() == 3) {
subdet = 0;
component = tTopo.tibLayer(detid);
} else if (a.subdetId() == 4) {
subdet = 1;
component = tTopo.tidSide(detid) == 2 ? tTopo.tidWheel(detid) : tTopo.tidWheel(detid) + 3;
} else if (a.subdetId() == 5) {
subdet = 2;
component = tTopo.tobLayer(detid);
} else if (a.subdetId() == 6) {
subdet = 3;
component = tTopo.tecSide(detid) == 2 ? tTopo.tecWheel(detid) : tTopo.tecWheel(detid) + 9;
}
SiStripQuality::Range sqrange =
SiStripQuality::Range(quality_->getDataVectorBegin() + rp->ibegin, quality_->getDataVectorBegin() + rp->iend);
percentage = 0;
for (int it = 0; it < sqrange.second - sqrange.first; it++) {
unsigned int range = quality_->decode(*(sqrange.first + it)).range;
NTkBadComponent[3] += range;
NBadComponent[subdet][0][3] += range;
NBadComponent[subdet][component][3] += range;
percentage += range;
}
if (percentage != 0)
percentage /= 128. * detInfo_.getNumberOfApvsAndStripLength(detid).first;
if (percentage > 1)
edm::LogError("SiStripQualityStatistics") << "PROBLEM detid " << detid << " value " << percentage << std::endl;
}
//&&&&&&&&&&&&&&&&&&
// printout
//&&&&&&&&&&&&&&&&&&
std::ofstream ResolutionValues;
int RunNumInt = e.id().run();
std::string RunNumString = std::to_string(RunNumInt);
edm::LogInfo("SiStripHitResolFromCalibTree") << "RunNumString" << RunNumString << std::endl;
std::string ResolutionTextFileString = "ResolutionValues_" + RunNumString + "_" + FileNameEnding + ".txt";
ResolutionValues.open(ResolutionTextFileString.c_str());
for (Long_t ilayer = 0; ilayer < ::k_END_OF_LAYERS; ilayer++) {
//Calculating and printing out the resolution values
float Meas = MeasPlots_p[ilayer]->GetStdDev();
float Pred = PredPlots_p[ilayer]->GetStdDev();
float PredMinusMeas = pow(Meas, 2) + pow(Pred, 2); //width^2= sigma(deltaX_pred)^2 + sigma(deltaX_hit)^2
float Resolution = sqrt(Pred / 2);
//Saving the resolution values to a text file
ResolutionValues << '\n'
<< "Resolution for layer number " << ilayer << " (" << GetLayerName(ilayer) << ")"
<< " is: " << Resolution << '\n'
<< "Double difference of the measured and predicted position between the two sensors under "
"consideration for layer number "
<< ilayer << " (" << GetLayerName(ilayer) << ")"
<< " is: " << PredMinusMeas << '\n'
<< "The difference between the two positions of the hit measurements for layer number " << ilayer
<< " (" << GetLayerName(ilayer) << ")"
<< " is: " << Meas << '\n'
<< std::endl;
}
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\n-----------------\nNew IOV starting from run " << e.id().run() << " event " << e.id().event()
<< " lumiBlock " << e.luminosityBlock() << " time " << e.time().value() << "\n-----------------\n";
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n-----------------\nGlobal Info\n-----------------";
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nBadComponent \t Modules \tFibers "
"\tApvs\tStrips\n----------------------------------------------------------------";
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTracker:\t\t" << NTkBadComponent[0] << "\t" << NTkBadComponent[1]
<< "\t" << NTkBadComponent[2] << "\t" << NTkBadComponent[3];
edm::LogInfo("SiStripHitResolFromCalibTree") << endl;
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTIB:\t\t\t" << NBadComponent[0][0][0] << "\t" << NBadComponent[0][0][1] << "\t" << NBadComponent[0][0][2]
<< "\t" << NBadComponent[0][0][3];
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTID:\t\t\t" << NBadComponent[1][0][0] << "\t" << NBadComponent[1][0][1] << "\t" << NBadComponent[1][0][2]
<< "\t" << NBadComponent[1][0][3];
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTOB:\t\t\t" << NBadComponent[2][0][0] << "\t" << NBadComponent[2][0][1] << "\t" << NBadComponent[2][0][2]
<< "\t" << NBadComponent[2][0][3];
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTEC:\t\t\t" << NBadComponent[3][0][0] << "\t" << NBadComponent[3][0][1] << "\t" << NBadComponent[3][0][2]
<< "\t" << NBadComponent[3][0][3];
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 5; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTIB Layer " << i << " :\t\t" << NBadComponent[0][i][0] << "\t" << NBadComponent[0][i][1] << "\t"
<< NBadComponent[0][i][2] << "\t" << NBadComponent[0][i][3];
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 4; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTID+ Disk " << i << " :\t\t" << NBadComponent[1][i][0] << "\t" << NBadComponent[1][i][1] << "\t"
<< NBadComponent[1][i][2] << "\t" << NBadComponent[1][i][3];
for (int i = 4; i < 7; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTID- Disk " << i - 3 << " :\t\t" << NBadComponent[1][i][0] << "\t" << NBadComponent[1][i][1] << "\t"
<< NBadComponent[1][i][2] << "\t" << NBadComponent[1][i][3];
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 7; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTOB Layer " << i << " :\t\t" << NBadComponent[2][i][0] << "\t" << NBadComponent[2][i][1] << "\t"
<< NBadComponent[2][i][2] << "\t" << NBadComponent[2][i][3];
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 10; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTEC+ Disk " << i << " :\t\t" << NBadComponent[3][i][0] << "\t" << NBadComponent[3][i][1] << "\t"
<< NBadComponent[3][i][2] << "\t" << NBadComponent[3][i][3];
for (int i = 10; i < 19; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\nTEC- Disk " << i - 9 << " :\t\t" << NBadComponent[3][i][0] << "\t" << NBadComponent[3][i][1] << "\t"
<< NBadComponent[3][i][2] << "\t" << NBadComponent[3][i][3];
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "\n----------------------------------------------------------------\n\t\t Detid \tModules Fibers "
"Apvs\n----------------------------------------------------------------";
for (int i = 1; i < 5; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTIB Layer " << i << " :" << ssV[0][i].str();
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 4; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTID+ Disk " << i << " :" << ssV[1][i].str();
for (int i = 4; i < 7; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTID- Disk " << i - 3 << " :" << ssV[1][i].str();
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 7; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTOB Layer " << i << " :" << ssV[2][i].str();
edm::LogInfo("SiStripHitResolFromCalibTree") << "\n";
for (int i = 1; i < 10; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTEC+ Disk " << i << " :" << ssV[3][i].str();
for (int i = 10; i < 19; ++i)
edm::LogInfo("SiStripHitResolFromCalibTree") << "\nTEC- Disk " << i - 9 << " :" << ssV[3][i].str();
// store also bad modules in log file
ofstream badModules;
badModules.open("BadModules.log");
badModules << "\n----------------------------------------------------------------\n\t\t Detid \tModules Fibers "
"Apvs\n----------------------------------------------------------------";
for (int i = 1; i < 5; ++i)
badModules << "\nTIB Layer " << i << " :" << ssV[0][i].str();
badModules << "\n";
for (int i = 1; i < 4; ++i)
badModules << "\nTID+ Disk " << i << " :" << ssV[1][i].str();
for (int i = 4; i < 7; ++i)
badModules << "\nTID- Disk " << i - 3 << " :" << ssV[1][i].str();
badModules << "\n";
for (int i = 1; i < 7; ++i)
badModules << "\nTOB Layer " << i << " :" << ssV[2][i].str();
badModules << "\n";
for (int i = 1; i < 10; ++i)
badModules << "\nTEC+ Disk " << i << " :" << ssV[3][i].str();
for (int i = 10; i < 19; ++i)
badModules << "\nTEC- Disk " << i - 9 << " :" << ssV[3][i].str();
badModules.close();
}
void SiStripHitResolFromCalibTree::makeHotColdMaps(const edm::Service<TFileService>& fs) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Entering hot cold map generation!\n";
TStyle* gStyle = new TStyle("gStyle", "myStyle");
gStyle->cd();
gStyle->SetPalette(1);
gStyle->SetCanvasColor(kWhite);
gStyle->SetOptStat(0);
//Here we make the hot/cold color maps that we love so very much
//Already have access to the data as a private variable
//Create all of the histograms in the TFileService
TH2F* temph2;
for (Long_t maplayer = 1; maplayer <= 22; maplayer++) {
//Initialize all of the histograms
if (maplayer > 0 && maplayer <= 4) {
//We are in the TIB
temph2 = fs->make<TH2F>(Form("%s%i", "TIB", (int)(maplayer)), "TIB", 100, -1, 361, 100, -100, 100);
temph2->GetXaxis()->SetTitle("Phi");
temph2->GetXaxis()->SetBinLabel(1, TString("360"));
temph2->GetXaxis()->SetBinLabel(50, TString("180"));
temph2->GetXaxis()->SetBinLabel(100, TString("0"));
temph2->GetYaxis()->SetTitle("Global Z");
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
} else if (maplayer > 4 && maplayer <= 10) {
//We are in the TOB
temph2 = fs->make<TH2F>(Form("%s%i", "TOB", (int)(maplayer - 4)), "TOB", 100, -1, 361, 100, -120, 120);
temph2->GetXaxis()->SetTitle("Phi");
temph2->GetXaxis()->SetBinLabel(1, TString("360"));
temph2->GetXaxis()->SetBinLabel(50, TString("180"));
temph2->GetXaxis()->SetBinLabel(100, TString("0"));
temph2->GetYaxis()->SetTitle("Global Z");
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
} else if (maplayer > 10 && maplayer <= 13) {
//We are in the TID
//Split by +/-
temph2 = fs->make<TH2F>(Form("%s%i", "TID-", (int)(maplayer - 10)), "TID-", 100, -100, 100, 100, -100, 100);
temph2->GetXaxis()->SetTitle("Global Y");
temph2->GetXaxis()->SetBinLabel(1, TString("+Y"));
temph2->GetXaxis()->SetBinLabel(50, TString("0"));
temph2->GetXaxis()->SetBinLabel(100, TString("-Y"));
temph2->GetYaxis()->SetTitle("Global X");
temph2->GetYaxis()->SetBinLabel(1, TString("-X"));
temph2->GetYaxis()->SetBinLabel(50, TString("0"));
temph2->GetYaxis()->SetBinLabel(100, TString("+X"));
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
temph2 = fs->make<TH2F>(Form("%s%i", "TID+", (int)(maplayer - 10)), "TID+", 100, -100, 100, 100, -100, 100);
temph2->GetXaxis()->SetTitle("Global Y");
temph2->GetXaxis()->SetBinLabel(1, TString("+Y"));
temph2->GetXaxis()->SetBinLabel(50, TString("0"));
temph2->GetXaxis()->SetBinLabel(100, TString("-Y"));
temph2->GetYaxis()->SetTitle("Global X");
temph2->GetYaxis()->SetBinLabel(1, TString("-X"));
temph2->GetYaxis()->SetBinLabel(50, TString("0"));
temph2->GetYaxis()->SetBinLabel(100, TString("+X"));
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
} else if (maplayer > 13) {
//We are in the TEC
//Split by +/-
temph2 = fs->make<TH2F>(Form("%s%i", "TEC-", (int)(maplayer - 13)), "TEC-", 100, -120, 120, 100, -120, 120);
temph2->GetXaxis()->SetTitle("Global Y");
temph2->GetXaxis()->SetBinLabel(1, TString("+Y"));
temph2->GetXaxis()->SetBinLabel(50, TString("0"));
temph2->GetXaxis()->SetBinLabel(100, TString("-Y"));
temph2->GetYaxis()->SetTitle("Global X");
temph2->GetYaxis()->SetBinLabel(1, TString("-X"));
temph2->GetYaxis()->SetBinLabel(50, TString("0"));
temph2->GetYaxis()->SetBinLabel(100, TString("+X"));
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
temph2 = fs->make<TH2F>(Form("%s%i", "TEC+", (int)(maplayer - 13)), "TEC+", 100, -120, 120, 100, -120, 120);
temph2->GetXaxis()->SetTitle("Global Y");
temph2->GetXaxis()->SetBinLabel(1, TString("+Y"));
temph2->GetXaxis()->SetBinLabel(50, TString("0"));
temph2->GetXaxis()->SetBinLabel(100, TString("-Y"));
temph2->GetYaxis()->SetTitle("Global X");
temph2->GetYaxis()->SetBinLabel(1, TString("-X"));
temph2->GetYaxis()->SetBinLabel(50, TString("0"));
temph2->GetYaxis()->SetBinLabel(100, TString("+X"));
temph2->SetOption("colz");
HotColdMaps.push_back(temph2);
}
}
for (Long_t mylayer = 1; mylayer <= 22; mylayer++) {
//Determine what kind of plot we want to write out
//Loop through the entirety of each layer
//Create an array of the histograms
vector<hit>::const_iterator iter;
for (iter = hits[mylayer].begin(); iter != hits[mylayer].end(); iter++) {
//Looping over the particular layer
//Fill by 360-x to get the proper location to compare with TKMaps of phi
//Also global xy is messed up
if (mylayer > 0 && mylayer <= 4) {
//We are in the TIB
float phi = calcPhi(iter->x, iter->y);
HotColdMaps[mylayer - 1]->Fill(360. - phi, iter->z, 1.);
} else if (mylayer > 4 && mylayer <= 10) {
//We are in the TOB
float phi = calcPhi(iter->x, iter->y);
HotColdMaps[mylayer - 1]->Fill(360. - phi, iter->z, 1.);
} else if (mylayer > 10 && mylayer <= 13) {
//We are in the TID
//There are 2 different maps here
int side = (((iter->id) >> 13) & 0x3);
if (side == 1)
HotColdMaps[(mylayer - 1) + (mylayer - 11)]->Fill(-iter->y, iter->x, 1.);
else if (side == 2)
HotColdMaps[(mylayer - 1) + (mylayer - 10)]->Fill(-iter->y, iter->x, 1.);
//if(side == 1) HotColdMaps[(mylayer - 1) + (mylayer - 11)]->Fill(iter->x,iter->y,1.);
//else if(side == 2) HotColdMaps[(mylayer - 1) + (mylayer - 10)]->Fill(iter->x,iter->y,1.);
} else if (mylayer > 13) {
//We are in the TEC
//There are 2 different maps here
int side = (((iter->id) >> 18) & 0x3);
if (side == 1)
HotColdMaps[(mylayer + 2) + (mylayer - 14)]->Fill(-iter->y, iter->x, 1.);
else if (side == 2)
HotColdMaps[(mylayer + 2) + (mylayer - 13)]->Fill(-iter->y, iter->x, 1.);
//if(side == 1) HotColdMaps[(mylayer + 2) + (mylayer - 14)]->Fill(iter->x,iter->y,1.);
//else if(side == 2) HotColdMaps[(mylayer + 2) + (mylayer - 13)]->Fill(iter->x,iter->y,1.);
}
}
}
edm::LogInfo("SiStripHitResolFromCalibTree") << "Finished HotCold Map Generation\n";
}
void SiStripHitResolFromCalibTree::makeTKMap(const edm::Service<TFileService>& fs, bool autoTagging = false) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Entering TKMap generation!\n";
tkmap = new TrackerMap(" Detector Inefficiency ");
tkmapbad = new TrackerMap(" Inefficient Modules ");
tkmapeff = new TrackerMap(title_.Data());
tkmapnum = new TrackerMap(" Detector numerator ");
tkmapden = new TrackerMap(" Detector denominator ");
double myeff, mynum, myden;
double eff_limit = 0;
for (Long_t i = 1; i <= 22; i++) {
//Loop over every layer, extracting the information from
//the map of the efficiencies
layertotal[i] = 0;
layerfound[i] = 0;
TH1F* hEffInLayer =
fs->make<TH1F>(Form("eff_layer%i", int(i)), Form("Module efficiency in layer %i", int(i)), 201, 0, 1.005);
map<unsigned int, pair<unsigned int, unsigned int> >::const_iterator ih;
for (ih = modCounter[i].begin(); ih != modCounter[i].end(); ih++) {
//We should be in the layer in question, and looping over all of the modules in said layer
//Generate the list for the TKmap, and the bad module list
mynum = (double)(((*ih).second).second);
myden = (double)(((*ih).second).first);
if (myden > 0)
myeff = mynum / myden;
else
myeff = 0;
hEffInLayer->Fill(myeff);
if (!autoTagging) {
if ((myden >= nModsMin_) && (myeff < threshold_)) {
//We have a bad module, put it in the list!
BadModules[(*ih).first] = myeff;
tkmapbad->fillc((*ih).first, 255, 0, 0);
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Layer " << i << " (" << GetLayerName(i) << ") module " << (*ih).first << " efficiency: " << myeff
<< " , " << mynum << "/" << myden << endl;
} else {
//Fill the bad list with empty results for every module
tkmapbad->fillc((*ih).first, 255, 255, 255);
}
if (myden < nModsMin_) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Layer " << i << " (" << GetLayerName(i) << ") module "
<< (*ih).first << " is under occupancy at " << myden << endl;
}
}
//Put any module into the TKMap
tkmap->fill((*ih).first, 1. - myeff);
tkmapeff->fill((*ih).first, myeff);
tkmapnum->fill((*ih).first, mynum);
tkmapden->fill((*ih).first, myden);
//Add the number of hits in the layer
layertotal[i] += long(myden);
layerfound[i] += long(mynum);
}
if (autoTagging) {
//Compute threshold to use for each layer
hEffInLayer->GetXaxis()->SetRange(3, hEffInLayer->GetNbinsX() + 1); // Remove from the avg modules below 1%
eff_limit = hEffInLayer->GetMean() - threshold_;
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Layer " << i << " threshold for bad modules: " << eff_limit << endl;
hEffInLayer->GetXaxis()->SetRange(1, hEffInLayer->GetNbinsX() + 1);
for (ih = modCounter[i].begin(); ih != modCounter[i].end(); ih++) {
// Second loop over modules to tag inefficient ones
mynum = (double)(((*ih).second).second);
myden = (double)(((*ih).second).first);
if (myden > 0)
myeff = mynum / myden;
else
myeff = 0;
if ((myden >= nModsMin_) && (myeff < eff_limit)) {
//We have a bad module, put it in the list!
BadModules[(*ih).first] = myeff;
tkmapbad->fillc((*ih).first, 255, 0, 0);
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Layer " << i << " (" << GetLayerName(i) << ") module " << (*ih).first << " efficiency: " << myeff
<< " , " << mynum << "/" << myden << endl;
} else {
//Fill the bad list with empty results for every module
tkmapbad->fillc((*ih).first, 255, 255, 255);
}
if (myden < nModsMin_) {
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Layer " << i << " (" << GetLayerName(i) << ") module " << (*ih).first << " layer " << i
<< " is under occupancy at " << myden << endl;
}
}
}
}
tkmap->save(true, 0, 0, "SiStripHitResolTKMap.png");
tkmapbad->save(true, 0, 0, "SiStripHitResolTKMapBad.png");
tkmapeff->save(true, tkMapMin_, 1., "SiStripHitResolTKMapEff.png");
tkmapnum->save(true, 0, 0, "SiStripHitResolTKMapNum.png");
tkmapden->save(true, 0, 0, "SiStripHitResolTKMapDen.png");
edm::LogInfo("SiStripHitResolFromCalibTree") << "Finished TKMap Generation\n";
}
void SiStripHitResolFromCalibTree::makeSQLite() {
//Generate the SQLite file for use in the Database of the bad modules!
edm::LogInfo("SiStripHitResolFromCalibTree") << "Entering SQLite file generation!\n";
std::vector<unsigned int> BadStripList;
unsigned short NStrips;
unsigned int id1;
std::unique_ptr<SiStripQuality> pQuality = std::make_unique<SiStripQuality>(detInfo_);
//This is the list of the bad strips, use to mask out entire APVs
//Now simply go through the bad hit list and mask out things that
//are bad!
map<unsigned int, double>::const_iterator it;
for (it = BadModules.begin(); it != BadModules.end(); it++) {
//We need to figure out how many strips are in this particular module
//To Mask correctly!
NStrips = detInfo_.getNumberOfApvsAndStripLength((*it).first).first * 128;
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Number of strips module " << (*it).first << " is " << NStrips << endl;
BadStripList.push_back(pQuality->encode(0, NStrips, 0));
//Now compact into a single bad module
id1 = (unsigned int)(*it).first;
edm::LogInfo("SiStripHitResolFromCalibTree") << "ID1 shoudl match list of modules above " << id1 << endl;
quality_->compact(id1, BadStripList);
SiStripQuality::Range range(BadStripList.begin(), BadStripList.end());
quality_->put(id1, range);
BadStripList.clear();
}
//Fill all the bad components now
quality_->fillBadComponents();
}
void SiStripHitResolFromCalibTree::totalStatistics() {
//Calculate the statistics by layer
int totalfound = 0;
int totaltotal = 0;
double layereff;
int subdetfound[5];
int subdettotal[5];
for (Long_t i = 1; i < 5; i++) {
subdetfound[i] = 0;
subdettotal[i] = 0;
}
for (Long_t i = 1; i <= 22; i++) {
layereff = double(layerfound[i]) / double(layertotal[i]);
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Layer " << i << " (" << GetLayerName(i) << ") has total efficiency " << layereff << " " << layerfound[i]
<< "/" << layertotal[i] << endl;
totalfound += layerfound[i];
totaltotal += layertotal[i];
if (i < 5) {
subdetfound[1] += layerfound[i];
subdettotal[1] += layertotal[i];
}
if (i >= 5 && i < 11) {
subdetfound[2] += layerfound[i];
subdettotal[2] += layertotal[i];
}
if (i >= 11 && i < 14) {
subdetfound[3] += layerfound[i];
subdettotal[3] += layertotal[i];
}
if (i >= 14) {
subdetfound[4] += layerfound[i];
subdettotal[4] += layertotal[i];
}
}
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "The total efficiency is " << double(totalfound) / double(totaltotal) << endl;
edm::LogInfo("SiStripHitResolFromCalibTree") << " TIB: " << double(subdetfound[1]) / subdettotal[1] << " "
<< subdetfound[1] << "/" << subdettotal[1] << endl;
edm::LogInfo("SiStripHitResolFromCalibTree") << " TOB: " << double(subdetfound[2]) / subdettotal[2] << " "
<< subdetfound[2] << "/" << subdettotal[2] << endl;
edm::LogInfo("SiStripHitResolFromCalibTree") << " TID: " << double(subdetfound[3]) / subdettotal[3] << " "
<< subdetfound[3] << "/" << subdettotal[3] << endl;
edm::LogInfo("SiStripHitResolFromCalibTree") << " TEC: " << double(subdetfound[4]) / subdettotal[4] << " "
<< subdetfound[4] << "/" << subdettotal[4] << endl;
}
void SiStripHitResolFromCalibTree::makeSummary(const edm::Service<TFileService>& fs) {
//setTDRStyle();
int nLayers = 34;
if (showRings_)
nLayers = 30;
if (!showEndcapSides_) {
if (!showRings_)
nLayers = 22;
else
nLayers = 20;
}
TH1F* found = fs->make<TH1F>("found", "found", nLayers + 1, 0, nLayers + 1);
TH1F* all = fs->make<TH1F>("all", "all", nLayers + 1, 0, nLayers + 1);
TH1F* found2 = fs->make<TH1F>("found2", "found2", nLayers + 1, 0, nLayers + 1);
TH1F* all2 = fs->make<TH1F>("all2", "all2", nLayers + 1, 0, nLayers + 1);
// first bin only to keep real data off the y axis so set to -1
found->SetBinContent(0, -1);
all->SetBinContent(0, 1);
// new ROOT version: TGraph::Divide don't handle null or negative values
for (Long_t i = 1; i < nLayers + 2; ++i) {
found->SetBinContent(i, 1e-6);
all->SetBinContent(i, 1);
found2->SetBinContent(i, 1e-6);
all2->SetBinContent(i, 1);
}
TCanvas* c7 = new TCanvas("c7", " test ", 10, 10, 800, 600);
c7->SetFillColor(0);
c7->SetGrid();
int nLayers_max = nLayers + 1; // barrel+endcap
if (!showEndcapSides_)
nLayers_max = 11; // barrel
for (Long_t i = 1; i < nLayers_max; ++i) {
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Fill only good modules layer " << i << ": S = " << goodlayerfound[i] << " B = " << goodlayertotal[i]
<< endl;
if (goodlayertotal[i] > 5) {
found->SetBinContent(i, goodlayerfound[i]);
all->SetBinContent(i, goodlayertotal[i]);
}
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Filling all modules layer " << i << ": S = " << alllayerfound[i] << " B = " << alllayertotal[i] << endl;
if (alllayertotal[i] > 5) {
found2->SetBinContent(i, alllayerfound[i]);
all2->SetBinContent(i, alllayertotal[i]);
}
}
// endcap - merging sides
if (!showEndcapSides_) {
for (Long_t i = 11; i < 14; ++i) { // TID disks
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Fill only good modules layer " << i << ": S = " << goodlayerfound[i] + goodlayerfound[i + 3]
<< " B = " << goodlayertotal[i] + goodlayertotal[i + 3] << endl;
if (goodlayertotal[i] + goodlayertotal[i + 3] > 5) {
found->SetBinContent(i, goodlayerfound[i] + goodlayerfound[i + 3]);
all->SetBinContent(i, goodlayertotal[i] + goodlayertotal[i + 3]);
}
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Filling all modules layer " << i << ": S = " << alllayerfound[i] + alllayerfound[i + 3]
<< " B = " << alllayertotal[i] + alllayertotal[i + 3] << endl;
if (alllayertotal[i] + alllayertotal[i + 3] > 5) {
found2->SetBinContent(i, alllayerfound[i] + alllayerfound[i + 3]);
all2->SetBinContent(i, alllayertotal[i] + alllayertotal[i + 3]);
}
}
for (Long_t i = 17; i < 17 + nTEClayers_; ++i) { // TEC disks
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Fill only good modules layer " << i - 3
<< ": S = " << goodlayerfound[i] + goodlayerfound[i + nTEClayers_]
<< " B = " << goodlayertotal[i] + goodlayertotal[i + nTEClayers_] << endl;
if (goodlayertotal[i] + goodlayertotal[i + nTEClayers_] > 5) {
found->SetBinContent(i - 3, goodlayerfound[i] + goodlayerfound[i + nTEClayers_]);
all->SetBinContent(i - 3, goodlayertotal[i] + goodlayertotal[i + nTEClayers_]);
}
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Filling all modules layer " << i - 3 << ": S = " << alllayerfound[i] + alllayerfound[i + nTEClayers_]
<< " B = " << alllayertotal[i] + alllayertotal[i + nTEClayers_] << endl;
if (alllayertotal[i] + alllayertotal[i + nTEClayers_] > 5) {
found2->SetBinContent(i - 3, alllayerfound[i] + alllayerfound[i + nTEClayers_]);
all2->SetBinContent(i - 3, alllayertotal[i] + alllayertotal[i + nTEClayers_]);
}
}
}
found->Sumw2();
all->Sumw2();
found2->Sumw2();
all2->Sumw2();
TGraphAsymmErrors* gr = fs->make<TGraphAsymmErrors>(nLayers + 1);
gr->SetName("eff_good");
gr->BayesDivide(found, all);
TGraphAsymmErrors* gr2 = fs->make<TGraphAsymmErrors>(nLayers + 1);
gr2->SetName("eff_all");
gr2->BayesDivide(found2, all2);
for (int j = 0; j < nLayers + 1; j++) {
gr->SetPointError(j, 0., 0., gr->GetErrorYlow(j), gr->GetErrorYhigh(j));
gr2->SetPointError(j, 0., 0., gr2->GetErrorYlow(j), gr2->GetErrorYhigh(j));
}
gr->GetXaxis()->SetLimits(0, nLayers);
gr->SetMarkerColor(2);
gr->SetMarkerSize(1.2);
gr->SetLineColor(2);
gr->SetLineWidth(4);
gr->SetMarkerStyle(20);
gr->SetMinimum(effPlotMin_);
gr->SetMaximum(1.001);
gr->GetYaxis()->SetTitle("Efficiency");
gStyle->SetTitleFillColor(0);
gStyle->SetTitleBorderSize(0);
gr->SetTitle(title_);
gr2->GetXaxis()->SetLimits(0, nLayers);
gr2->SetMarkerColor(1);
gr2->SetMarkerSize(1.2);
gr2->SetLineColor(1);
gr2->SetLineWidth(4);
gr2->SetMarkerStyle(21);
gr2->SetMinimum(effPlotMin_);
gr2->SetMaximum(1.001);
gr2->GetYaxis()->SetTitle("Efficiency");
gr2->SetTitle(title_);
for (Long_t k = 1; k < nLayers + 1; k++) {
TString label;
if (showEndcapSides_)
label = GetLayerSideName(k);
else
label = GetLayerName(k);
if (!showTOB6TEC9_) {
if (k == 10)
label = "";
if (!showRings_ && k == nLayers)
label = "";
if (!showRings_ && showEndcapSides_ && k == 25)
label = "";
}
if (!showRings_) {
if (showEndcapSides_) {
gr->GetXaxis()->SetBinLabel(((k + 1) * 100 + 2) / (nLayers)-4, label);
gr2->GetXaxis()->SetBinLabel(((k + 1) * 100 + 2) / (nLayers)-4, label);
} else {
gr->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-6, label);
gr2->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-6, label);
}
} else {
if (showEndcapSides_) {
gr->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-4, label);
gr2->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-4, label);
} else {
gr->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-7, label);
gr2->GetXaxis()->SetBinLabel((k + 1) * 100 / (nLayers)-7, label);
}
}
}
gr->Draw("AP");
gr->GetXaxis()->SetNdivisions(36);
c7->cd();
TPad* overlay = new TPad("overlay", "", 0, 0, 1, 1);
overlay->SetFillStyle(4000);
overlay->SetFillColor(0);
overlay->SetFrameFillStyle(4000);
overlay->Draw("same");
overlay->cd();
if (!showOnlyGoodModules_)
gr2->Draw("AP");
TLegend* leg = new TLegend(0.70, 0.27, 0.88, 0.40);
leg->AddEntry(gr, "Good Modules", "p");
if (!showOnlyGoodModules_)
leg->AddEntry(gr2, "All Modules", "p");
leg->SetTextSize(0.020);
leg->SetFillColor(0);
leg->Draw("same");
c7->SaveAs("Summary.png");
}
void SiStripHitResolFromCalibTree::makeSummaryVsBx(const edm::Service<TFileService>& fs) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Computing efficiency vs bx" << endl;
unsigned int nLayers = 22;
if (showRings_)
nLayers = 20;
for (unsigned int ilayer = 1; ilayer < nLayers; ilayer++) {
for (unsigned int ibx = 0; ibx <= nBxInAnOrbit; ibx++) {
layerfound_vsBX[ilayer]->SetBinContent(ibx, 1e-6);
layertotal_vsBX[ilayer]->SetBinContent(ibx, 1);
}
map<unsigned int, vector<int> >::iterator iterMapvsBx;
for (iterMapvsBx = layerfound_perBx.begin(); iterMapvsBx != layerfound_perBx.end(); ++iterMapvsBx)
layerfound_vsBX[ilayer]->SetBinContent(iterMapvsBx->first, iterMapvsBx->second[ilayer]);
for (iterMapvsBx = layertotal_perBx.begin(); iterMapvsBx != layertotal_perBx.end(); ++iterMapvsBx)
if (iterMapvsBx->second[ilayer] > 0)
layertotal_vsBX[ilayer]->SetBinContent(iterMapvsBx->first, iterMapvsBx->second[ilayer]);
layerfound_vsBX[ilayer]->Sumw2();
layertotal_vsBX[ilayer]->Sumw2();
TGraphAsymmErrors* geff = fs->make<TGraphAsymmErrors>(nBxInAnOrbit - 1);
geff->SetName(Form("effVsBx_layer%i", ilayer));
geff->SetTitle("Hit Efficiency vs bx - " + GetLayerName(ilayer));
geff->BayesDivide(layerfound_vsBX[ilayer], layertotal_vsBX[ilayer]);
//Average over trains
TGraphAsymmErrors* geff_avg = fs->make<TGraphAsymmErrors>();
geff_avg->SetName(Form("effVsBxAvg_test_layer%i", ilayer));
geff_avg->SetTitle("Hit Efficiency vs bx - " + GetLayerName(ilayer));
geff_avg->SetMarkerStyle(20);
int ibx = 0;
int previous_bx = -80;
int delta_bx = 0;
int nbx = 0;
int found = 0;
int total = 0;
double sum_bx = 0;
int ipt = 0;
float low, up, eff;
int firstbx = 0;
for (iterMapvsBx = layertotal_perBx.begin(); iterMapvsBx != layertotal_perBx.end(); ++iterMapvsBx) {
ibx = iterMapvsBx->first;
delta_bx = ibx - previous_bx;
// consider a new train
if (delta_bx > (int)spaceBetweenTrains_ && nbx > 0 && total > 0) {
eff = found / (float)total;
//edm::LogInfo("SiStripHitResolFromCalibTree")<<"new train "<<ipt<<" "<<sum_bx/nbx<<" "<<eff<<endl;
geff_avg->SetPoint(ipt, sum_bx / nbx, eff);
low = TEfficiency::Bayesian(total, found, .683, 1, 1, false);
up = TEfficiency::Bayesian(total, found, .683, 1, 1, true);
geff_avg->SetPointError(ipt, sum_bx / nbx - firstbx, previous_bx - sum_bx / nbx, eff - low, up - eff);
ipt++;
sum_bx = 0;
found = 0;
total = 0;
nbx = 0;
firstbx = ibx;
}
sum_bx += ibx;
found += layerfound_vsBX[ilayer]->GetBinContent(ibx);
total += layertotal_vsBX[ilayer]->GetBinContent(ibx);
nbx++;
previous_bx = ibx;
}
//last train
eff = found / (float)total;
//edm::LogInfo("SiStripHitResolFromCalibTree")<<"new train "<<ipt<<" "<<sum_bx/nbx<<" "<<eff<<endl;
geff_avg->SetPoint(ipt, sum_bx / nbx, eff);
low = TEfficiency::Bayesian(total, found, .683, 1, 1, false);
up = TEfficiency::Bayesian(total, found, .683, 1, 1, true);
geff_avg->SetPointError(ipt, sum_bx / nbx - firstbx, previous_bx - sum_bx / nbx, eff - low, up - eff);
}
}
TString SiStripHitResolFromCalibTree::GetLayerName(Long_t k) {
TString layername = "";
TString ringlabel = "D";
if (showRings_)
ringlabel = "R";
if (k > 0 && k < 5) {
layername = TString("TIB L") + k;
} else if (k > 4 && k < 11) {
layername = TString("TOB L") + (k - 4);
} else if (k > 10 && k < 14) {
layername = TString("TID ") + ringlabel + (k - 10);
} else if (k > 13 && k < 14 + nTEClayers_) {
layername = TString("TEC ") + ringlabel + (k - 13);
}
return layername;
}
void SiStripHitResolFromCalibTree::ComputeEff(const edm::Service<TFileService>& fs,
vector<TH1F*>& vhfound,
vector<TH1F*>& vhtotal,
string name) {
unsigned int nLayers = 22;
if (showRings_)
nLayers = 20;
TH1F* hfound;
TH1F* htotal;
for (unsigned int ilayer = 1; ilayer < nLayers; ilayer++) {
hfound = vhfound[ilayer];
htotal = vhtotal[ilayer];
hfound->Sumw2();
htotal->Sumw2();
// new ROOT version: TGraph::Divide don't handle null or negative values
for (Long_t i = 0; i < hfound->GetNbinsX() + 1; ++i) {
if (hfound->GetBinContent(i) == 0)
hfound->SetBinContent(i, 1e-6);
if (htotal->GetBinContent(i) == 0)
htotal->SetBinContent(i, 1);
}
TGraphAsymmErrors* geff = fs->make<TGraphAsymmErrors>(hfound->GetNbinsX());
geff->SetName(Form("%s_test_layer%i", name.c_str(), ilayer));
geff->BayesDivide(hfound, htotal);
if (name == "effVsLumi")
geff->SetTitle("Hit Efficiency vs inst. lumi. - " + GetLayerName(ilayer));
if (name == "effVsPU")
geff->SetTitle("Hit Efficiency vs pileup - " + GetLayerName(ilayer));
if (name == "effVsCM")
geff->SetTitle("Hit Efficiency vs common Mode - " + GetLayerName(ilayer));
geff->SetMarkerStyle(20);
}
}
void SiStripHitResolFromCalibTree::makeSummaryVsLumi(const edm::Service<TFileService>& fs) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Computing efficiency vs lumi" << endl;
if (instLumiHisto->GetEntries()) // from infos per event
edm::LogInfo("SiStripHitResolFromCalibTree")
<< "Avg conditions (avg+/-rms): lumi :" << instLumiHisto->GetMean() << "+/-" << instLumiHisto->GetRMS()
<< " pu: " << PUHisto->GetMean() << "+/-" << PUHisto->GetRMS() << endl;
else { // from infos per hit
unsigned int nLayers = 22;
if (showRings_)
nLayers = 20;
unsigned int nLayersForAvg = 0;
float layerLumi = 0;
float layerPU = 0;
float avgLumi = 0;
float avgPU = 0;
edm::LogInfo("SiStripHitResolFromCalibTree") << "Lumi summary: (avg over trajectory measurements)" << endl;
for (unsigned int ilayer = 1; ilayer < nLayers; ilayer++) {
layerLumi = layertotal_vsLumi[ilayer]->GetMean();
layerPU = layertotal_vsPU[ilayer]->GetMean();
//edm::LogInfo("SiStripHitResolFromCalibTree")<<" layer "<<ilayer<<" lumi: "<<layerLumi<<" pu: "<<layerPU<<endl;
if (layerLumi != 0 && layerPU != 0) {
avgLumi += layerLumi;
avgPU += layerPU;
nLayersForAvg++;
}
}
avgLumi /= nLayersForAvg;
avgPU /= nLayersForAvg;
edm::LogInfo("SiStripHitResolFromCalibTree") << "Avg conditions: lumi :" << avgLumi << " pu: " << avgPU << endl;
}
ComputeEff(fs, layerfound_vsLumi, layertotal_vsLumi, "effVsLumi");
ComputeEff(fs, layerfound_vsPU, layertotal_vsPU, "effVsPU");
}
void SiStripHitResolFromCalibTree::makeSummaryVsCM(const edm::Service<TFileService>& fs) {
edm::LogInfo("SiStripHitResolFromCalibTree") << "Computing efficiency vs CM" << endl;
ComputeEff(fs, layerfound_vsCM, layertotal_vsCM, "effVsCM");
}
TString SiStripHitResolFromCalibTree::GetLayerSideName(Long_t k) {
TString layername = "";
TString ringlabel = "D";
if (showRings_)
ringlabel = "R";
if (k > 0 && k < 5) {
layername = TString("TIB L") + k;
} else if (k > 4 && k < 11) {
layername = TString("TOB L") + (k - 4);
} else if (k > 10 && k < 14) {
layername = TString("TID- ") + ringlabel + (k - 10);
} else if (k > 13 && k < 17) {
layername = TString("TID+ ") + ringlabel + (k - 13);
} else if (k > 16 && k < 17 + nTEClayers_) {
layername = TString("TEC- ") + ringlabel + (k - 16);
} else if (k > 16 + nTEClayers_) {
layername = TString("TEC+ ") + ringlabel + (k - 16 - nTEClayers_);
}
return layername;
}
std::unique_ptr<SiStripBadStrip> SiStripHitResolFromCalibTree::getNewObject() {
//Need this for a Condition DB Writer
//Initialize a return variable
auto obj = std::make_unique<SiStripBadStrip>();
SiStripBadStrip::RegistryIterator rIter = quality_->getRegistryVectorBegin();
SiStripBadStrip::RegistryIterator rIterEnd = quality_->getRegistryVectorEnd();
for (; rIter != rIterEnd; ++rIter) {
SiStripBadStrip::Range range(quality_->getDataVectorBegin() + rIter->ibegin,
quality_->getDataVectorBegin() + rIter->iend);
if (!obj->put(rIter->detid, range))
edm::LogError("SiStripHitResolFromCalibTree")
<< "[SiStripHitResolFromCalibTree::getNewObject] detid already exists" << std::endl;
}
return obj;
}
float SiStripHitResolFromCalibTree::calcPhi(float x, float y) {
float phi = 0;
float Pi = 3.14159;
if ((x >= 0) && (y >= 0))
phi = atan(y / x);
else if ((x >= 0) && (y <= 0))
phi = atan(y / x) + 2 * Pi;
else if ((x <= 0) && (y >= 0))
phi = atan(y / x) + Pi;
else
phi = atan(y / x) + Pi;
phi = phi * 180.0 / Pi;
return phi;
}
void SiStripHitResolFromCalibTree::SetBadComponents(
int i, int component, SiStripQuality::BadComponent& BC, std::stringstream ssV[4][19], int NBadComponent[4][19][4]) {
int napv = detInfo_.getNumberOfApvsAndStripLength(BC.detid).first;
ssV[i][component] << "\n\t\t " << BC.detid << " \t " << BC.BadModule << " \t " << ((BC.BadFibers) & 0x1) << " ";
if (napv == 4)
ssV[i][component] << "x " << ((BC.BadFibers >> 1) & 0x1);
if (napv == 6)
ssV[i][component] << ((BC.BadFibers >> 1) & 0x1) << " " << ((BC.BadFibers >> 2) & 0x1);
ssV[i][component] << " \t " << ((BC.BadApvs) & 0x1) << " " << ((BC.BadApvs >> 1) & 0x1) << " ";
if (napv == 4)
ssV[i][component] << "x x " << ((BC.BadApvs >> 2) & 0x1) << " " << ((BC.BadApvs >> 3) & 0x1);
if (napv == 6)
ssV[i][component] << ((BC.BadApvs >> 2) & 0x1) << " " << ((BC.BadApvs >> 3) & 0x1) << " "
<< ((BC.BadApvs >> 4) & 0x1) << " " << ((BC.BadApvs >> 5) & 0x1) << " ";
if (BC.BadApvs) {
NBadComponent[i][0][2] += ((BC.BadApvs >> 5) & 0x1) + ((BC.BadApvs >> 4) & 0x1) + ((BC.BadApvs >> 3) & 0x1) +
((BC.BadApvs >> 2) & 0x1) + ((BC.BadApvs >> 1) & 0x1) + ((BC.BadApvs) & 0x1);
NBadComponent[i][component][2] += ((BC.BadApvs >> 5) & 0x1) + ((BC.BadApvs >> 4) & 0x1) +
((BC.BadApvs >> 3) & 0x1) + ((BC.BadApvs >> 2) & 0x1) +
((BC.BadApvs >> 1) & 0x1) + ((BC.BadApvs) & 0x1);
}
if (BC.BadFibers) {
NBadComponent[i][0][1] += ((BC.BadFibers >> 2) & 0x1) + ((BC.BadFibers >> 1) & 0x1) + ((BC.BadFibers) & 0x1);
NBadComponent[i][component][1] +=
((BC.BadFibers >> 2) & 0x1) + ((BC.BadFibers >> 1) & 0x1) + ((BC.BadFibers) & 0x1);
}
if (BC.BadModule) {
NBadComponent[i][0][0]++;
NBadComponent[i][component][0]++;
}
}
DEFINE_FWK_MODULE(SiStripHitResolFromCalibTree);
|