36 |
|
const TString sectorLabel[12] = {"1","2","3","4","5","6", "7","8","9","10","11","12"}; |
37 |
|
const TString chamberLabel[MAX_CHAMBERS] = {"1","2","3","4","5","6","7","8","9"}; |
38 |
|
const int MINSEC=0; |
39 |
< |
const int MAXSEC=12; |
39 |
> |
const int MAXSEC=6; |
40 |
|
const int TIMINGSEC=3; // this only works for naive estimation now |
41 |
|
const int BX_START=3; // starting of hBX: 3 for MC and 0 for data |
42 |
|
|
139 |
|
TH1I* hBXDifference1AWith1B[12][7]; |
140 |
|
|
141 |
|
|
142 |
+ |
/// BX difference between station 3 and 4 |
143 |
+ |
/// overlapping cscs in ME 3 and 4 |
144 |
+ |
TH1I* hBXDifference34Overlap[12][MAX_CHAMBERS]; |
145 |
+ |
/// crossing cscs in ME 3 and 4 |
146 |
+ |
TH1I* hBXDifference34Cross[12][4]; |
147 |
+ |
|
148 |
|
|
149 |
|
/// Canvases to display the histograms once they are filled |
150 |
|
|