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
|
#ifndef CONDCORE_SIPIXELPLUGINS_SIPIXELPAYLOADINSPECTORHELPER_H
#define CONDCORE_SIPIXELPLUGINS_SIPIXELPAYLOADINSPECTORHELPER_H
#include <vector>
#include <numeric>
#include <fstream> // std::ifstream
#include <string>
#include <bitset>
#include "TGraph.h"
#include "TH1.h"
#include "TH2.h"
#include "TLatex.h"
#include "TLine.h"
#include "TPave.h"
#include "TPaveStats.h"
#include "TPaveText.h"
#include "TStyle.h"
#include "TCanvas.h"
#include "CondCore/CondDB/interface/Time.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
#include "DataFormats/TrackerCommon/interface/PixelBarrelName.h"
#include "DataFormats/TrackerCommon/interface/PixelEndcapName.h"
//#define MMDEBUG
#ifdef MMDEBUG
#include <iostream>
#define COUT std::cout << "MM "
#else
#define COUT edm::LogVerbatim("")
#endif
namespace SiPixelPI {
enum phase { zero = 0, one = 1, two = 2, undefined = 999 };
// size of the phase-0 pixel detID list
static const unsigned int phase0size = 1440;
static const unsigned int phase1size = 1856;
static const unsigned int phase2size = 3892;
static const unsigned int mismatched = 9999;
//============================================================================
// struct to store info useful to construct topology based on the detid list
struct PhaseInfo {
// construct with det size
PhaseInfo(unsigned int size) : m_detsize(size) {}
// construct passing the phase
PhaseInfo(const phase& thePhase) {
switch (thePhase) {
case phase::zero:
m_detsize = phase0size;
break;
case phase::one:
m_detsize = phase1size;
break;
case phase::two:
m_detsize = phase2size;
break;
default:
m_detsize = 99999;
edm::LogError("PhaseInfo") << "undefined phase: " << thePhase;
}
}
virtual ~PhaseInfo() { edm::LogInfo("PhaseInfo") << "PhaseInfo::~PhaseInfo()\n"; }
const SiPixelPI::phase phase() const {
if (m_detsize == phase0size)
return phase::zero;
else if (m_detsize == phase1size)
return phase::one;
else if (m_detsize > phase1size)
return phase::two;
else {
throw cms::Exception("LogicError") << "this detId list size: " << m_detsize << "should not exist!";
}
}
const char* pathToTopoXML() {
if (m_detsize == phase0size)
return "Geometry/TrackerCommonData/data/trackerParameters.xml";
else if (m_detsize == phase1size)
return "Geometry/TrackerCommonData/data/PhaseI/trackerParameters.xml";
else if (m_detsize > phase1size)
return "Geometry/TrackerCommonData/data/PhaseII/trackerParameters.xml";
else {
throw cms::Exception("LogicError") << "this detId list size: " << m_detsize << "should not exist!";
}
}
const void print(std::stringstream& ss) {
ss << "---------------------------------------------------------------\n"
<< " PhaseInfo Data \n\n"
<< " Phase : " << phase() << "\n"
<< " DetSide: " << m_detsize << "\n"
<< " pathToXML: " << pathToTopoXML() << "\n"
<< "-------------------------------------------------------------\n\n";
}
const bool isPhase1Comparison(const PhaseInfo& theOtherPhase) const {
if (phase() == phase::one || theOtherPhase.phase() == phase::one)
return true;
else
return false;
}
const bool isComparedWithPhase2(const PhaseInfo& theOtherPhase) const {
if ((phase() == phase::two && theOtherPhase.phase() != phase::two) ||
(phase() != phase::two && theOtherPhase.phase() == phase::two)) {
return true;
} else {
return false;
}
}
private:
size_t m_detsize;
};
//============================================================================
// add ostream for PhaseInfo
inline std::ostream& operator<<(std::ostream& os, PhaseInfo phInfo) {
std::stringstream ss;
phInfo.print(ss);
os << ss.str();
return os;
}
//============================================================================
inline std::pair<unsigned int, unsigned int> unpack(cond::Time_t since) {
auto kLowMask = 0XFFFFFFFF;
auto run = (since >> 32);
auto lumi = (since & kLowMask);
return std::make_pair(run, lumi);
}
//============================================================================
// Taken from pixel naming classes
// BmO (-z-x) = 1, BmI (-z+x) = 2 , BpO (+z-x) = 3 , BpI (+z+x) = 4
inline int quadrant(const DetId& detid, const TrackerTopology* tTopo_, bool phase_) {
if (detid.subdetId() == PixelSubdetector::PixelBarrel) {
return PixelBarrelName(detid, tTopo_, phase_).shell();
} else {
return PixelEndcapName(detid, tTopo_, phase_).halfCylinder();
}
}
//============================================================================
// Online ladder convention taken from pixel naming class for barrel
// Apply sign convention (- sign for BmO and BpO)
inline int signed_ladder(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelBarrel)
return -9999;
int signed_ladder = PixelBarrelName(detid, &tTopo_, phase_).ladderName();
if (quadrant(detid, &tTopo_, phase_) % 2)
signed_ladder *= -1;
return signed_ladder;
}
//============================================================================
// Online mdoule convention taken from pixel naming class for barrel
// Apply sign convention (- sign for BmO and BmI)
inline int signed_module(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelBarrel)
return -9999;
int signed_module = PixelBarrelName(detid, &tTopo_, phase_).moduleName();
if (quadrant(detid, &tTopo_, phase_) < 3)
signed_module *= -1;
return signed_module;
}
//============================================================================
// Phase 0: Ring was not an existing convention
// but the 7 plaquettes were split by HV group
// --> Derive Ring 1/2 for them
// Panel 1 plq 1-2, Panel 2, plq 1 = Ring 1
// Panel 1 plq 3-4, Panel 2, plq 2-3 = Ring 2
// Phase 1: Using pixel naming class for endcap
inline int ring(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelEndcap)
return -9999;
int ring = -9999;
if (phase_ == 0) {
ring = 1 + (tTopo_.pxfPanel(detid) + tTopo_.pxfModule(detid) > 3);
} else if (phase_ == 1) {
ring = PixelEndcapName(detid, &tTopo_, phase_).ringName();
}
return ring;
}
//============================================================================
// Online blade convention taken from pixel naming class for endcap
// Apply sign convention (- sign for BmO and BpO)
inline int signed_blade(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelEndcap)
return -9999;
int signed_blade = PixelEndcapName(detid, &tTopo_, phase_).bladeName();
if (quadrant(detid, &tTopo_, phase_) % 2)
signed_blade *= -1;
return signed_blade;
}
//============================================================================
inline int signed_blade_panel(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelEndcap)
return -9999;
int signed_blade_panel = signed_blade(detid, tTopo_, phase_) + (tTopo_.pxfPanel(detid) - 1);
return signed_blade_panel;
}
//============================================================================
// Online disk convention
// Apply sign convention (- sign for BmO and BmI)
inline int signed_disk(const DetId& detid, const TrackerTopology& tTopo_, bool phase_) {
if (detid.subdetId() != PixelSubdetector::PixelEndcap)
return -9999;
int signed_disk = tTopo_.pxfDisk(DetId(detid));
if (quadrant(detid, &tTopo_, phase_) < 3)
signed_disk *= -1;
return signed_disk;
}
//============================================================================
inline void draw_line(double x1, double x2, double y1, double y2, int width = 2, int style = 1, int color = 1) {
TLine* l = new TLine(x1, y1, x2, y2);
l->SetBit(kCanDelete);
l->SetLineWidth(width);
l->SetLineStyle(style);
l->SetLineColor(color);
l->Draw();
}
//============================================================================
inline void dress_occup_plot(TCanvas& canv,
TH2* h,
int lay,
int ring = 0,
int phase = 0,
bool half_shift = true,
bool mark_zero = true,
bool standard_palette = true) {
std::string s_title;
if (lay > 0) {
canv.cd(lay);
s_title = "Barrel Pixel Layer " + std::to_string(lay);
} else {
canv.cd(ring);
if (ring > 4) {
ring = ring - 4;
}
s_title = "Forward Pixel Ring " + std::to_string(ring);
}
gStyle->SetPadRightMargin(0.125);
if (standard_palette) {
gStyle->SetPalette(1);
} else {
// this is the fine gradient palette
const Int_t NRGBs = 5;
const Int_t NCont = 255;
Double_t stops[NRGBs] = {0.00, 0.34, 0.61, 0.84, 1.00};
Double_t red[NRGBs] = {0.00, 0.00, 0.87, 1.00, 0.51};
Double_t green[NRGBs] = {0.00, 0.81, 1.00, 0.20, 0.00};
Double_t blue[NRGBs] = {0.51, 1.00, 0.12, 0.00, 0.00};
TColor::CreateGradientColorTable(NRGBs, stops, red, green, blue, NCont);
gStyle->SetNumberContours(NCont);
}
h->SetMarkerSize(0.7);
h->Draw("colz1");
auto ltx = TLatex();
ltx.SetTextFont(62);
ltx.SetTextColor(1);
ltx.SetTextSize(0.06);
ltx.SetTextAlign(31);
ltx.DrawLatexNDC(1 - gPad->GetRightMargin(), 1 - gPad->GetTopMargin() + 0.01, (s_title).c_str());
// Draw Lines around modules
if (lay > 0) {
std::vector<std::vector<int>> nladder = {{10, 16, 22}, {6, 14, 22, 32}};
int nlad = nladder[phase][lay - 1];
for (int xsign = -1; xsign <= 1; xsign += 2)
for (int ysign = -1; ysign <= 1; ysign += 2) {
float xlow = xsign * (half_shift * 0.5);
float xhigh = xsign * (half_shift * 0.5 + 4);
float ylow = ysign * (half_shift * 0.5 + (phase == 0) * 0.5);
float yhigh = ysign * (half_shift * 0.5 - (phase == 0) * 0.5 + nlad);
// Outside box
draw_line(xlow, xhigh, ylow, ylow, 1); // bottom
draw_line(xlow, xhigh, yhigh, yhigh, 1); // top
draw_line(xlow, xlow, ylow, yhigh, 1); // left
draw_line(xhigh, xhigh, ylow, yhigh, 1); // right
// Inner Horizontal lines
for (int lad = 1; lad < nlad; ++lad) {
float y = ysign * (lad + half_shift * 0.5);
draw_line(xlow, xhigh, y, y, 1);
}
for (int lad = 1; lad <= nlad; ++lad)
if (!(phase == 0 && (lad == 1 || lad == nlad))) {
float y = ysign * (lad + half_shift * 0.5 - 0.5);
draw_line(xlow, xhigh, y, y, 1, 3);
}
// Inner Vertical lines
for (int mod = 1; mod < 4; ++mod) {
float x = xsign * (mod + half_shift * 0.5);
draw_line(x, x, ylow, yhigh, 1);
}
// Make a BOX around ROC 0
// Phase 0 - ladder +1 is always non-flipped
// Phase 1 - ladder +1 is always flipped
if (mark_zero) {
for (int mod = 1; mod <= 4; ++mod)
for (int lad = 1; lad <= nlad; ++lad) {
bool flipped = ysign == 1 ? lad % 2 == 0 : lad % 2 == 1;
if (phase == 1)
flipped = !flipped;
int roc0_orientation = flipped ? -1 : 1;
if (xsign == -1)
roc0_orientation *= -1;
if (ysign == -1)
roc0_orientation *= -1;
float x1 = xsign * (mod + half_shift * 0.5);
float x2 = xsign * (mod + half_shift * 0.5 - 1. / 8);
float y1 = ysign * (lad + half_shift * 0.5 - 0.5);
float y2 = ysign * (lad + half_shift * 0.5 - 0.5 + roc0_orientation * 1. / 2);
if (!(phase == 0 && (lad == 1 || lad == nlad) && xsign == -1)) {
if (lay == 1 && xsign <= -1) {
float x1 = xsign * ((mod - 1) + half_shift * 0.5);
float x2 = xsign * ((mod - 1) + half_shift * 0.5 + 1. / 8);
float y1 = ysign * (lad + half_shift * 0.5 - 0.5 + roc0_orientation);
float y2 = ysign * (lad + half_shift * 0.5 - 0.5 + roc0_orientation * 3. / 2);
draw_line(x1, x2, y1, y1, 1);
draw_line(x2, x2, y1, y2, 1);
} else {
draw_line(x1, x2, y1, y1, 1);
//draw_line(x1, x2, y2, y2, 1);
//draw_line(x1, x1, y1, y2, 1);
draw_line(x2, x2, y1, y2, 1);
}
}
}
}
}
} else {
// FPIX
for (int dsk = 1, ndsk = 2 + (phase == 1); dsk <= ndsk; ++dsk) {
for (int xsign = -1; xsign <= 1; xsign += 2)
for (int ysign = -1; ysign <= 1; ysign += 2) {
if (phase == 0) {
int first_roc = 3, nbin = 16;
for (int bld = 1, nbld = 12; bld <= nbld; ++bld) {
// Horizontal lines
for (int plq = 1, nplq = 7; plq <= nplq; ++plq) {
float xlow =
xsign * (half_shift * 0.5 + dsk - 1 + (first_roc - 3 + 2 * plq + (plq == 1)) / (float)nbin);
float xhigh =
xsign * (half_shift * 0.5 + dsk - 1 + (first_roc - 3 + 2 * (plq + 1) - (plq == 7)) / (float)nbin);
float ylow = ysign * (half_shift * 0.5 + (bld - 0.5) - (2 + plq / 2) * 0.1);
float yhigh = ysign * (half_shift * 0.5 + (bld - 0.5) + (2 + plq / 2) * 0.1);
draw_line(xlow, xhigh, ylow, ylow, 1); // bottom
draw_line(xlow, xhigh, yhigh, yhigh, 1); // top
}
// Vertical lines
for (int plq = 1, nplq = 7 + 1; plq <= nplq; ++plq) {
float x = xsign * (half_shift * 0.5 + dsk - 1 +
(first_roc - 3 + 2 * plq + (plq == 1) - (plq == 8)) / (float)nbin);
float ylow = ysign * (half_shift * 0.5 + (bld - 0.5) - (2 + (plq - (plq == 8)) / 2) * 0.1);
float yhigh = ysign * (half_shift * 0.5 + (bld - 0.5) + (2 + (plq - (plq == 8)) / 2) * 0.1);
draw_line(x, x, ylow, yhigh, 1);
}
// Panel 2 has dashed mid-plane
for (int plq = 2, nplq = 6; plq <= nplq; ++plq)
if (plq % 2 == 0) {
float x = xsign * (half_shift * 0.5 + dsk - 1 +
(first_roc - 3 + 2 * plq + (plq == 1) - (plq == 8) + 1) / (float)nbin);
float ylow = ysign * (half_shift * 0.5 + (bld - 0.5) - (2 + (plq - (plq == 8)) / 2) * 0.1);
float yhigh = ysign * (half_shift * 0.5 + (bld - 0.5) + (2 + (plq - (plq == 8)) / 2) * 0.1);
draw_line(x, x, ylow, yhigh, 1, 2);
}
// Make a BOX around ROC 0
for (int plq = 1, nplq = 7; plq <= nplq; ++plq) {
float x1 =
xsign * (half_shift * 0.5 + dsk - 1 + (first_roc - 3 + 2 * plq + (plq == 1)) / (float)nbin);
float x2 =
xsign * (half_shift * 0.5 + dsk - 1 + (first_roc - 3 + 2 * plq + (plq == 1) + 1) / (float)nbin);
int sign = xsign * ysign * ((plq % 2) ? 1 : -1);
float y1 = ysign * (half_shift * 0.5 + (bld - 0.5) + sign * (2 + plq / 2) * 0.1);
float y2 = ysign * (half_shift * 0.5 + (bld - 0.5) + sign * (plq / 2) * 0.1);
//draw_line(x1, x2, y1, y1, 1);
draw_line(x1, x2, y2, y2, 1);
//draw_line(x1, x1, y1, y2, 1);
draw_line(x2, x2, y1, y2, 1);
}
}
} else if (phase == 1) {
if (ring == 0) { // both
for (int ring = 1; ring <= 2; ++ring)
for (int bld = 1, nbld = 5 + ring * 6; bld <= nbld; ++bld) {
float scale = (ring == 1) ? 1.5 : 1;
Color_t p1_color = 1, p2_color = 1;
// Horizontal lines
// Panel 2 has dashed mid-plane
float x1 = xsign * (half_shift * 0.5 + dsk - 1 + (ring - 1) * 0.5);
float x2 = xsign * (half_shift * 0.5 + dsk - 1 + ring * 0.5);
int sign = ysign;
float y1 = ysign * (half_shift * 0.5 - 0.5 + scale * bld + sign * 0.5);
//float yp1_mid = ysign * (half_shift*0.5 - 0.5 + scale*bld + sign*0.25);
float y2 = ysign * (half_shift * 0.5 - 0.5 + scale * bld);
float yp2_mid = ysign * (half_shift * 0.5 - 0.5 + scale * bld - sign * 0.25);
float y3 = ysign * (half_shift * 0.5 - 0.5 + scale * bld - sign * 0.5);
draw_line(x1, x2, y1, y1, 1, 1, p1_color);
//draw_line(x1, x2, yp1_mid, yp1_mid, 1, 3);
draw_line(x1, x2, y2, y2, 1, 1, p1_color);
draw_line(x1, x2, yp2_mid, yp2_mid, 1, 2);
draw_line(x1, x2, y3, y3, 1, 1, p2_color);
// Vertical lines
float x = xsign * (half_shift * 0.5 + dsk - 1 + (ring - 1) * 0.5);
draw_line(x, x, y1, y2, 1, 1, p1_color);
draw_line(x, x, y2, y3, 1, 1, p2_color);
if (ring == 2) {
//draw_line(x, x, y2, y3, 1, 1, p1_color);
x = xsign * (half_shift * 0.5 + dsk);
draw_line(x, x, y1, y2, 1, 1, p1_color);
draw_line(x, x, y2, y3, 1, 1, p2_color);
}
// Make a BOX around ROC 0
x1 = xsign * (half_shift * 0.5 + dsk - 1 + ring * 0.5 - 1 / 16.);
x2 = xsign * (half_shift * 0.5 + dsk - 1 + ring * 0.5);
float y1_p1 = ysign * (half_shift * 0.5 - 0.5 + scale * bld + sign * 0.25);
float y2_p1 = ysign * (half_shift * 0.5 - 0.5 + scale * bld + sign * 0.25 + xsign * ysign * 0.25);
draw_line(x1, x2, y1_p1, y1_p1, 1);
//draw_line(x1, x2, y2_p1, y2_p1, 1);
draw_line(x1, x1, y1_p1, y2_p1, 1);
//draw_line(x2, x2, y1_p1, y2_p1, 1);
float y1_p2 = ysign * (half_shift * 0.5 - 0.5 + scale * bld - sign * 0.25);
float y2_p2 = ysign * (half_shift * 0.5 - 0.5 + scale * bld - sign * 0.25 - xsign * ysign * 0.25);
draw_line(x1, x2, y1_p2, y1_p2, 1);
//draw_line(x1, x2, y2_p2, y2_p2, 1);
draw_line(x1, x1, y1_p2, y2_p2, 1);
//draw_line(x2, x2, y1_p2, y2_p2, 1);
}
} else { // only one ring, 1 or 2
for (int bld = 1, nbld = 5 + ring * 6; bld <= nbld; ++bld) {
Color_t p1_color = 1, p2_color = 1;
// Horizontal lines
// Panel 2 has dashed mid-plane
float x1 = xsign * (half_shift * 0.5 + dsk - 1);
float x2 = xsign * (half_shift * 0.5 + dsk);
int sign = ysign;
float y1 = ysign * (half_shift * 0.5 - 0.5 + bld + sign * 0.5);
//float yp1_mid = ysign * (half_shift*0.5 - 0.5 + bld + sign*0.25);
float y2 = ysign * (half_shift * 0.5 - 0.5 + bld);
float yp2_mid = ysign * (half_shift * 0.5 - 0.5 + bld - sign * 0.25);
float y3 = ysign * (half_shift * 0.5 - 0.5 + bld - sign * 0.5);
draw_line(x1, x2, y1, y1, 1, 1, p1_color);
//draw_line(x1, x2, yp1_mid, yp1_mid, 1, 3);
draw_line(x1, x2, y2, y2, 1, 1, p1_color);
draw_line(x1, x2, yp2_mid, yp2_mid, 1, 2);
draw_line(x1, x2, y3, y3, 1, 1, p2_color);
// Vertical lines
float x = xsign * (half_shift * 0.5 + dsk - 1);
draw_line(x, x, y1, y2, 1, 1, p1_color);
draw_line(x, x, y2, y3, 1, 1, p2_color);
if (ring == 2) {
//draw_line(x, x, y2, y3, 1, 1, p1_color);
x = xsign * (half_shift * 0.5 + dsk);
draw_line(x, x, y1, y2, 1, 1, p1_color);
draw_line(x, x, y2, y3, 1, 1, p2_color);
}
// Make a BOX around ROC 0
x1 = xsign * (half_shift * 0.5 + dsk - 1 / 8.);
x2 = xsign * (half_shift * 0.5 + dsk);
float y1_p1 = ysign * (half_shift * 0.5 - 0.5 + bld + sign * 0.25);
float y2_p1 = ysign * (half_shift * 0.5 - 0.5 + bld + sign * 0.25 + xsign * ysign * 0.25);
draw_line(x1, x2, y1_p1, y1_p1, 1);
//draw_line(x1, x2, y2_p1, y2_p1, 1);
draw_line(x1, x1, y1_p1, y2_p1, 1);
//draw_line(x2, x2, y1_p1, y2_p1, 1);
float y1_p2 = ysign * (half_shift * 0.5 - 0.5 + bld - sign * 0.25);
float y2_p2 = ysign * (half_shift * 0.5 - 0.5 + bld - sign * 0.25 - xsign * ysign * 0.25);
draw_line(x1, x2, y1_p2, y1_p2, 1);
//draw_line(x1, x2, y2_p2, y2_p2, 1);
draw_line(x1, x1, y1_p2, y2_p2, 1);
//draw_line(x2, x2, y1_p2, y2_p2, 1);
}
}
}
}
}
// Special shifted "rebin" for Phase 0
// Y axis should always have at least half-roc granularity because
// there are half-ROC size shifts implemented in the coordinates
// To remove this and show full ROC granularity
// We merge bin contents in each pair of bins corresponding to one ROC
// TODO: make sure this works for Profiles
if (phase == 0 && h->GetNbinsY() == 250 && h->GetNbinsX() == 80) {
int nentries = h->GetEntries();
for (int binx = 1; binx <= 80; ++binx) {
double sum = 0;
for (int biny = 1; biny <= 250; ++biny) {
bool odd_nrocy = (binx - 1 < 40) != (((binx - 1) / 4) % 2);
if (biny % 2 == odd_nrocy)
sum += h->GetBinContent(binx, biny);
else {
sum += h->GetBinContent(binx, biny);
if (sum) {
h->SetBinContent(binx, biny, sum);
h->SetBinContent(binx, biny - 1, sum);
}
sum = 0;
}
}
}
h->SetEntries(nentries);
}
}
}
/*--------------------------------------------------------------------*/
inline void adjustCanvasMargins(TVirtualPad* pad, float top, float bottom, float left, float right)
/*--------------------------------------------------------------------*/
{
if (top > 0)
pad->SetTopMargin(top);
if (bottom > 0)
pad->SetBottomMargin(bottom);
if (left > 0)
pad->SetLeftMargin(left);
if (right > 0)
pad->SetRightMargin(right);
}
/*--------------------------------------------------------------------*/
inline void adjustStats(TPaveStats* stats, float X1, float Y1, float X2, float Y2)
/*--------------------------------------------------------------------*/
{
stats->SetX1NDC(X1); //new x start position
stats->SetY1NDC(Y1); //new y start position
stats->SetX2NDC(X2); //new x end position
stats->SetY2NDC(Y2); //new y end position
}
/*--------------------------------------------------------------------*/
inline std::pair<float, float> getExtrema(TH1* h1, TH1* h2)
/*--------------------------------------------------------------------*/
{
float theMax(-9999.);
float theMin(9999.);
theMax = h1->GetMaximum() > h2->GetMaximum() ? h1->GetMaximum() : h2->GetMaximum();
theMin = h1->GetMinimum() < h2->GetMaximum() ? h1->GetMinimum() : h2->GetMinimum();
float add_min = theMin > 0. ? -0.05 : 0.05;
float add_max = theMax > 0. ? 0.05 : -0.05;
auto result = std::make_pair(theMin * (1 + add_min), theMax * (1 + add_max));
return result;
}
/*--------------------------------------------------------------------*/
inline void makeNicePlotStyle(TH1* hist)
/*--------------------------------------------------------------------*/
{
hist->SetStats(kFALSE);
hist->SetLineWidth(2);
hist->GetXaxis()->CenterTitle(true);
hist->GetYaxis()->CenterTitle(true);
hist->GetXaxis()->SetTitleFont(42);
hist->GetYaxis()->SetTitleFont(42);
hist->GetXaxis()->SetTitleSize(0.05);
hist->GetYaxis()->SetTitleSize(0.05);
hist->GetXaxis()->SetTitleOffset(1.1);
hist->GetYaxis()->SetTitleOffset(1.3);
hist->GetXaxis()->SetLabelFont(42);
hist->GetYaxis()->SetLabelFont(42);
hist->GetYaxis()->SetLabelSize(.05);
hist->GetXaxis()->SetLabelSize(.05);
if (hist->InheritsFrom(TH2::Class())) {
hist->GetZaxis()->SetLabelFont(42);
hist->GetZaxis()->SetLabelFont(42);
hist->GetZaxis()->SetLabelSize(.05);
hist->GetZaxis()->SetLabelSize(.05);
}
}
enum DetType { t_barrel = 0, t_forward = 1, t_all = 2 };
const std::array<std::string, 3> DetNames = {{"Barrel", "End Caps", "Whole"}};
enum regions {
BPixL1o, //0 Barrel Pixel Layer 1 outer
BPixL1i, //1 Barrel Pixel Layer 1 inner
BPixL2o, //2 Barrel Pixel Layer 2 outer
BPixL2i, //3 Barrel Pixel Layer 2 inner
BPixL3o, //4 Barrel Pixel Layer 3 outer
BPixL3i, //5 Barrel Pixel Layer 3 inner
BPixL4o, //6 Barrel Pixel Layer 4 outer
BPixL4i, //7 Barrel Pixel Layer 4 inner
FPixmL1, //8 Forward Pixel Minus side Disk 1
FPixmL2, //9 Forward Pixel Minus side Disk 2
FPixmL3, //10 Forward Pixel Minus side Disk 3
FPixpL1, //11 Forward Pixel Plus side Disk 1
FPixpL2, //12 Forward Pixel Plus side Disk 2
FPixpL3, //13 Forward Pixel Plus side Disk 3
NUM_OF_REGIONS //14 -- default
};
/*--------------------------------------------------------------------*/
inline std::string getStringFromRegionEnum(SiPixelPI::regions e)
/*--------------------------------------------------------------------*/
{
switch (e) {
case SiPixelPI::BPixL1o:
return "BPix L1/o";
case SiPixelPI::BPixL1i:
return "BPix L1/i";
case SiPixelPI::BPixL2o:
return "BPix L2/o";
case SiPixelPI::BPixL2i:
return "BPix L2/i";
case SiPixelPI::BPixL3o:
return "BPix L3/o";
case SiPixelPI::BPixL3i:
return "BPix L3/i";
case SiPixelPI::BPixL4o:
return "BPix L4/o";
case SiPixelPI::BPixL4i:
return "BPix L4/i";
case SiPixelPI::FPixmL1:
return "FPix- D1";
case SiPixelPI::FPixmL2:
return "FPix- D2";
case SiPixelPI::FPixmL3:
return "FPix- D3";
case SiPixelPI::FPixpL1:
return "FPix+ D1";
case SiPixelPI::FPixpL2:
return "FPix+ D2";
case SiPixelPI::FPixpL3:
return "FPix+ D3";
default:
edm::LogWarning("LogicError") << "Unknown partition: " << e;
return "";
}
}
/*--------------------------------------------------------------------*/
inline bool isBPixOuterLadder(const DetId& detid, const TrackerTopology& tTopo, bool isPhase0)
/*--------------------------------------------------------------------*/
{
// Using TrackerTopology
// Ladders have a staggered structure
// Non-flipped ladders are on the outer radius
// Phase 0: Outer ladders are odd for layer 1,3 and even for layer 2
// Phase 1: Outer ladders are odd for layer 1,2,3 and even for layer 4
bool isOuter = false;
int layer = tTopo.pxbLayer(detid.rawId());
bool odd_ladder = tTopo.pxbLadder(detid.rawId()) % 2;
if (isPhase0) {
if (layer == 2)
isOuter = !odd_ladder;
else
isOuter = odd_ladder;
} else {
if (layer == 4)
isOuter = !odd_ladder;
else
isOuter = odd_ladder;
}
return isOuter;
}
// ancillary struct to manage the topology
// info in a more compact way
struct topolInfo {
private:
uint32_t m_rawid;
int m_subdetid;
int m_layer;
int m_side;
int m_ring;
bool m_isInternal;
SiPixelPI::phase m_Phase;
public:
void init();
void fillGeometryInfo(const DetId& detId, const TrackerTopology& tTopo, const SiPixelPI::phase& ph);
SiPixelPI::regions filterThePartition();
bool sanityCheck();
int subDetId() { return m_subdetid; }
int layer() { return m_layer; }
int side() { return m_side; }
int ring() { return m_ring; }
bool isInternal() { return m_isInternal; }
void printAll(std::stringstream& ss) const;
virtual ~topolInfo() {}
};
/*--------------------------------------------------------------------*/
inline void topolInfo::printAll(std::stringstream& ss) const
/*--------------------------------------------------------------------*/
{
ss << " detId: " << m_rawid << " subdetid: " << m_subdetid << " layer: " << m_layer << " side: " << m_side
<< " ring: " << m_ring << " isInternal: " << m_isInternal;
}
/*--------------------------------------------------------------------*/
inline void topolInfo::init()
/*--------------------------------------------------------------------*/
{
m_Phase = SiPixelPI::undefined;
m_rawid = 0;
m_subdetid = -1;
m_layer = -1;
m_side = -1;
m_ring = -1;
m_isInternal = false;
};
/*--------------------------------------------------------------------*/
inline bool topolInfo::sanityCheck()
/*--------------------------------------------------------------------*/
{
if (m_layer == 0 || (m_subdetid == 1 && m_layer > 4) || (m_subdetid == 2 && m_layer > 3)) {
return false;
} else {
return true;
}
}
/*--------------------------------------------------------------------*/
inline void topolInfo::fillGeometryInfo(const DetId& detId, const TrackerTopology& tTopo, const SiPixelPI::phase& ph)
/*--------------------------------------------------------------------*/
{
// set the phase
m_Phase = ph;
unsigned int subdetId = static_cast<unsigned int>(detId.subdetId());
m_rawid = detId.rawId();
m_subdetid = subdetId;
if (subdetId == PixelSubdetector::PixelBarrel) {
m_layer = tTopo.pxbLayer(detId.rawId());
m_isInternal = !SiPixelPI::isBPixOuterLadder(detId, tTopo, (ph == SiPixelPI::phase::zero));
} else if (subdetId == PixelSubdetector::PixelEndcap) {
m_layer = tTopo.pxfDisk(detId.rawId());
m_side = tTopo.pxfSide(detId.rawId());
} else
edm::LogWarning("LogicError") << "Unknown subdetid: " << subdetId;
}
// ------------ method to assign a partition based on the topology struct info ---------------
/*--------------------------------------------------------------------*/
inline SiPixelPI::regions topolInfo::filterThePartition()
/*--------------------------------------------------------------------*/
{
SiPixelPI::regions ret = SiPixelPI::NUM_OF_REGIONS;
if (m_Phase == SiPixelPI::undefined) {
throw cms::Exception("LogicError") << "Cannot call filterThePartition BEFORE filling the geometry info!";
}
// BPix
if (m_subdetid == 1) {
switch (m_layer) {
case 1:
m_isInternal ? ret = SiPixelPI::BPixL1i : ret = SiPixelPI::BPixL1o;
break;
case 2:
m_isInternal ? ret = SiPixelPI::BPixL2i : ret = SiPixelPI::BPixL2o;
break;
case 3:
m_isInternal ? ret = SiPixelPI::BPixL3i : ret = SiPixelPI::BPixL3o;
break;
case 4:
m_isInternal ? ret = SiPixelPI::BPixL4i : ret = SiPixelPI::BPixL4o;
break;
default:
edm::LogWarning("LogicError") << "Unknow BPix layer: " << m_layer;
break;
}
// FPix
} else if (m_subdetid == 2) {
switch (m_layer) {
case 1:
m_side > 1 ? ret = SiPixelPI::FPixpL1 : ret = SiPixelPI::FPixmL1;
break;
case 2:
m_side > 1 ? ret = SiPixelPI::FPixpL2 : ret = SiPixelPI::FPixmL2;
break;
case 3:
m_side > 1 ? ret = SiPixelPI::FPixpL3 : ret = SiPixelPI::FPixmL3;
break;
default:
if (m_Phase < SiPixelPI::phase::two) {
// warning message only if the phase2 is < 2
edm::LogWarning("LogicError") << "Unknow FPix disk: " << m_layer;
}
break;
}
}
return ret;
}
/*--------------------------------------------------------------------*/
inline void displayNotSupported(TCanvas& canv, const unsigned int size)
/*--------------------------------------------------------------------*/
{
std::string phase = (size < SiPixelPI::phase1size) ? "Phase-0" : "Phase-2";
canv.cd();
TLatex t2;
t2.SetTextAlign(21);
t2.SetTextSize(0.1);
t2.SetTextAngle(45);
t2.SetTextColor(kRed);
if (size != SiPixelPI::mismatched) {
t2.DrawLatexNDC(0.6, 0.50, Form("%s NOT SUPPORTED!", phase.c_str()));
} else {
t2.DrawLatexNDC(0.6, 0.50, "MISMATCHED PAYLOAD SIZE!");
}
}
/*--------------------------------------------------------------------*/
template <typename T>
std::pair<T, T> findMinMaxInMap(const std::map<unsigned int, T>& theMap)
/*--------------------------------------------------------------------*/
{
using pairtype = std::pair<unsigned int, T>;
auto max = *std::max_element(
theMap.begin(), theMap.end(), [](const pairtype& p1, const pairtype& p2) { return p1.second < p2.second; });
auto min = *std::min_element(
theMap.begin(), theMap.end(), [](const pairtype& p1, const pairtype& p2) { return p1.second < p2.second; });
return std::make_pair(min.second, max.second);
}
/*--------------------------------------------------------------------*/
inline bool checkAnswerOK(std::string& answer, bool& result)
/*--------------------------------------------------------------------*/
{
std::transform(answer.begin(), answer.end(), answer.begin(), [](unsigned char x) { return ::tolower(x); });
bool answer_valid = (answer == "y") || (answer == "n") || (answer == "yes") || (answer == "no") ||
(answer == "true") || (answer == "false") || (answer == "1") || (answer == "0");
result = answer_valid && (answer[0] == 'y' || answer[0] == 't' || answer[0] == '1');
return answer_valid;
}
}; // namespace SiPixelPI
#endif
|