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
|
#ifndef rpcdqm_utils_H
#define rpcdqm_utils_H
#include "DataFormats/MuonDetId/interface/RPCDetId.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include <vector>
#include <iomanip>
#include <string>
namespace rpcdqm {
using dqm::reco::DQMStore;
using dqm::reco::MonitorElement;
enum RPCMeFLag { OCCUPANCY = 1, CLUSTERSIZE = 2, MULTIPLICITY = 3, BX = 4 };
struct RPCMEHelper {
static void setNoAlphanumeric(MonitorElement* myMe) {
// Set no-alphanumeric flag to avoid malfunctioning in multithread environment.
TH2* h2 = dynamic_cast<TH2*>(myMe->getTH1());
if (!h2)
return;
h2->GetXaxis()->SetNoAlphanumeric(true);
h2->GetYaxis()->SetNoAlphanumeric(true);
}
};
class utils {
public:
int detId2RollNr(const RPCDetId& _id) {
if (_id.region() == 0) { //Barrel
if (_id.station() == 1) { // Station1
if (_id.layer() == 1) { //in
if (_id.roll() == 1) //forward
_cnr = 1; //RB1inF
else //backward
_cnr = 2; //RB1inB
} else { //out
if (_id.roll() == 1)
_cnr = 3; //RB1outF
else
_cnr = 4; //RB1outB
}
} else if (_id.station() == 2) { //Station 2
if (_id.layer() == 1) {
if (_id.roll() == 1)
_cnr = 5; //RB2inB
else if (_id.roll() == 3)
_cnr = 6; //RB2inF
else if (_id.roll() == 2)
_cnr = 7; //RB2inM
} else {
if (_id.roll() == 2)
_cnr = 7; //RB2outM
else if (_id.roll() == 1)
_cnr = 8; //RB2outB
else if (_id.roll() == 3)
_cnr = 9; //RB2outF
}
} else if (_id.station() == 3) { //Station 3
if (_id.subsector() == 1) {
if (_id.roll() == 1)
_cnr = 10; //RB3-B
else
_cnr = 11; //RB3-F
} else {
if (_id.roll() == 1)
_cnr = 12; //RB3+B
else
_cnr = 13; //RB3+F
}
} else if (_id.station() == 4) { //Station 4
if (_id.sector() == 4) {
if (_id.subsector() == 2) { //RB4--
if (_id.roll() == 1)
_cnr = 14;
else
_cnr = 15;
} else if (_id.subsector() == 3) { //RB4-
if (_id.roll() == 1)
_cnr = 16;
else
_cnr = 17;
} else if (_id.subsector() == 1) { //RB4+
if (_id.roll() == 1)
_cnr = 18;
else
_cnr = 19;
} else if (_id.subsector() == 4) { //RB4++
if (_id.roll() == 1)
_cnr = 20;
else
_cnr = 21;
}
} else {
if (_id.subsector() == 1) {
if (_id.roll() == 1)
_cnr = 14;
else
_cnr = 15;
} else {
if (_id.roll() == 1)
_cnr = 16;
else
_cnr = 17;
}
}
}
} else { //Endcap
int nsub = 6;
if (_id.ring() == 1 && _id.station() > 1) {
nsub = 3;
}
_cnr = (_id.subsector() - 1) * 3 + _id.roll() + (_id.ring() - 1) * nsub * 3;
}
return _cnr;
}
void fillvect() {
Wvector2.push_back(0); //Sec 0 - doen't exist ;)
Wvector2.push_back(1140); //Sec1
Wvector2.push_back(1140); //Sec2
Wvector2.push_back(1140); //Sec3
Wvector2.push_back(1236); //Sec4
Wvector2.push_back(1140); //Sec5
Wvector2.push_back(1140); //Sec6
Wvector2.push_back(1140); //Sec7
Wvector2.push_back(1116); //Sec8
Wvector2.push_back(1044); //Sec9
Wvector2.push_back(1188); //Sec10
Wvector2.push_back(1044); //Sec11
Wvector2.push_back(1166); //Sec12
Wvector1.push_back(0); //Sec 0 - doen't exist ;)
Wvector1.push_back(1146); //Sec1
Wvector1.push_back(1146); //Sec2
Wvector1.push_back(1146); //Sec3
Wvector1.push_back(1242); //Sec4
Wvector1.push_back(1146); //Sec5
Wvector1.push_back(1146); //Sec6
Wvector1.push_back(1146); //Sec7
Wvector1.push_back(1122); //Sec8
Wvector1.push_back(1050); //Sec9
Wvector1.push_back(1194); //Sec10
Wvector1.push_back(1050); //Sec11
Wvector1.push_back(1122); //Sec12
}
std::vector<int> SectorStrips2() { return Wvector2; }
std::vector<int> SectorStrips1() { return Wvector1; }
void dolabeling(bool useRollInfo) {
if (useRollInfo) {
ylabel[1] = "RB1in_B";
ylabel[2] = "RB1in_F";
ylabel[3] = "RB1out_B";
ylabel[4] = "RB1out_F";
ylabel[5] = "RB2in_B";
ylabel[6] = "RB2in_F";
ylabel[7] = "RB2in_M";
ylabel[0] = "RB2out_M";
ylabel[8] = "RB2out_B";
ylabel[9] = "RB2out_F";
ylabel[10] = "RB3-_B";
ylabel[11] = "RB3-_F";
ylabel[12] = "RB3+_B";
ylabel[13] = "RB3+_F";
ylabel[14] = "RB4,-_B";
ylabel[15] = "RB4,-_F";
ylabel[16] = "RB4+_B";
ylabel[17] = "RB4+_F";
ylabel[18] = "RB4--_B";
ylabel[19] = "RB4--_F";
ylabel[20] = "RB4++_B";
ylabel[21] = "RB4++_F";
} else {
ylabel[1] = "RB1in";
ylabel[2] = "";
ylabel[3] = "RB1out";
ylabel[4] = "";
ylabel[5] = "RB2in";
ylabel[6] = "";
ylabel[7] = "";
ylabel[0] = "";
ylabel[8] = "RB2out";
ylabel[9] = "";
ylabel[10] = "RB3-";
ylabel[11] = "";
ylabel[12] = "RB3+";
ylabel[13] = "";
ylabel[14] = "RB4,-";
ylabel[15] = "";
ylabel[16] = "RB4+";
ylabel[17] = "";
ylabel[18] = "RB4--";
ylabel[19] = "";
ylabel[20] = "RB4++";
ylabel[21] = "";
}
}
void doEndcapLabeling(bool useRollInfo) {
std::string rolls[3];
rolls[0] = "A";
rolls[1] = "B";
rolls[2] = "C";
endcapYLabels_.clear();
std::stringstream myLabel;
for (int ring = 1; ring <= 3; ring++) {
for (int ch = 1; ch <= 6; ch++) {
for (int r = 0; r < 3; r++) {
myLabel.str("");
myLabel << "R" << ring << "_C" << ch << "_" << rolls[r];
endcapYLabels_.push_back(myLabel.str());
}
}
}
}
std::string YLabel(int i) { return ylabel[i]; }
//use only with RollvsSector MEs
void labelXAxisSector(MonitorElement* myMe) {
//before do some checks
if (!myMe)
return;
RPCMEHelper::setNoAlphanumeric(myMe);
std::stringstream xLabel;
for (int x = 1; x <= myMe->getNbinsX(); x++) {
xLabel.str("");
xLabel << "Sec" << x;
myMe->setBinLabel(x, xLabel.str(), 1);
}
}
//use only with RingvsSegment MEs
void labelXAxisSegment(MonitorElement* myMe) {
//before do some checks
if (!myMe)
return;
RPCMEHelper::setNoAlphanumeric(myMe);
std::stringstream xLabel;
myMe->setAxisTitle("Segments", 1);
for (int x = 1; x <= myMe->getNbinsX(); x++) {
xLabel.str("");
xLabel << x;
myMe->setBinLabel(x, xLabel.str(), 1);
}
}
//use only with RollvsSector MEs
void labelYAxisRoll(MonitorElement* myMe, int region, int ring, bool useRollInfo) {
//before do some checks
if (!myMe)
return;
RPCMEHelper::setNoAlphanumeric(myMe);
//set bin labels
if (region == 0) {
//initialize label vector
this->dolabeling(useRollInfo);
if (ring == -2 || ring == 2)
ylabel[7] = ylabel[0];
for (int y = 1; y <= myMe->getNbinsY() && y < 22; y++)
myMe->setBinLabel(y, ylabel[y], 2);
} else { //Endcap
this->doEndcapLabeling(useRollInfo);
for (int y = 1; y <= myMe->getNbinsY() && y < (int)endcapYLabels_.size(); y++)
myMe->setBinLabel(y, endcapYLabels_[y], 2);
}
}
//use only with RingvsSegment MEs
void labelYAxisRing(MonitorElement* myMe, int numberOfRings, bool useRollInfo) {
//before do some checks
if (!myMe)
return;
std::string labels[9];
if (useRollInfo) {
labels[0] = "C";
labels[1] = "Ring1 B";
labels[2] = "A";
labels[3] = "C";
labels[4] = "Ring2 B";
labels[5] = "A";
labels[6] = "C";
labels[7] = "Ring3 B";
labels[8] = "A";
} else {
labels[0] = "";
labels[1] = "Ring1";
labels[2] = "";
labels[3] = "";
labels[4] = "Ring2";
labels[5] = "";
labels[6] = "";
labels[7] = "Ring3";
labels[8] = "";
}
int startBin;
(numberOfRings == 2 ? startBin = 3 : startBin = 0);
//set bin labels
RPCMEHelper::setNoAlphanumeric(myMe);
for (int y = 1; y <= myMe->getNbinsY() && y <= 9; y++) {
myMe->setBinLabel(y, labels[y - 1 + startBin], 2);
}
}
int detId2ChamberNr(const RPCDetId& _id) {
if (_id.region() == 0) { //Barrel
if (_id.station() == 1) { // Station1
if (_id.layer() == 1) {
ch = 1; //RB1in
} else {
ch = 2; //RB1out
}
} else if (_id.station() == 2) { //Station 2
if (_id.layer() == 1) {
ch = 3; //RB2in
} else {
ch = 4; //RB2out
}
} else if (_id.station() == 3) { //Station 3
if (_id.subsector() == 1) {
ch = 5; //RB3+
} else {
ch = 6; //RB3-
}
} else if (_id.station() == 4) { //Station 4
if (_id.sector() == 4) {
if (_id.subsector() == 1) {
ch = 7; //RB4-
} else if (_id.subsector() == 2) {
ch = 8; //RB4+
} else if (_id.subsector() == 3) {
ch = 9; //RB4--
} else if (_id.subsector() == 4) {
ch = 10; //RB4++
}
} else {
if (_id.subsector() == 1)
ch = 7; //RB4-
else
ch = 8; //RB4+
}
}
} else { //Endcap
}
return ch;
}
std::string detId2ChamberLabel(const RPCDetId& _id) {
if (_id.region() == 0) { //Barrel
if (_id.station() == 1) { // Station1
if (_id.layer() == 1) {
ChLabel = "RB1in";
} else {
ChLabel = "RB1out";
}
} else if (_id.station() == 2) { //Station 2
if (_id.layer() == 1) {
ChLabel = "RB2in";
} else {
ChLabel = "RB2out";
}
} else if (_id.station() == 3) { //Station 3
if (_id.subsector() == 1) {
ChLabel = "RB3+";
} else {
ChLabel = "RB3-";
}
} else if (_id.station() == 4) { //Station 4
if (_id.sector() == 4) {
if (_id.subsector() == 1) {
ChLabel = "RB4-";
} else if (_id.subsector() == 2) {
ChLabel = "RB4+";
} else if (_id.subsector() == 3) {
ChLabel = "RB4--";
} else if (_id.subsector() == 4) {
ChLabel = "RB4++";
}
} else {
if (_id.subsector() == 1)
ChLabel = "RB4-";
else
ChLabel = "RB4-";
}
}
} else { //Endcap
}
return ChLabel;
}
private:
int _cnr;
int ch;
std::vector<std::string> endcapYLabels_;
std::string ChLabel;
std::vector<int> Wvector2;
std::vector<int> Wvector1;
std::string ylabel[22];
};
} // namespace rpcdqm
#endif
|