Project
Loading...
Searching...
No Matches
FeeParam.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13//
14// TRD front end electronics parameters class
15// Contains all FEE (MCM, TRAP, PASA) related
16// parameters, constants, and mapping.
17//
18// 2007/08/17:
19// The default raw data version (now mRAWversion ) is set to 3
20// in the constructor because version 3 raw data read and write
21// are fully debugged.
22//
23// Author:
24// Ken Oyama (oyama@physi.uni-heidelberg.de)
25//
26// many things now configured by AliTRDtrapConfig reflecting
27// the real memory structure of the TRAP (Jochen)
28//
29// Now has the mcm to pad lookup table mapping
31
32#include <TGeoManager.h>
33#include <TGeoPhysicalNode.h>
34#include <TMath.h>
35#include <TVirtualMC.h>
36#include <fairlogger/Logger.h>
37#include <array>
38
41#include "TRDBase/Geometry.h"
42#include "TRDBase/PadPlane.h"
43#include "TRDBase/FeeParam.h"
44
45#ifdef WITH_OPENMP
46#include <omp.h>
47#endif
48
49using namespace std;
50using namespace o2::trd;
51using namespace o2::trd::constants;
52
53//_____________________________________________________________________________
54
55FeeParam* FeeParam::mgInstance = nullptr;
56
57//_____________________________________________________________________________
59{
60 //
61 // Instance constructor
62 //
63#ifdef WITH_OPENMP
64#pragma omp critical
65#endif
66 { // start omp critical block
67 if (mgInstance == nullptr) {
68 mgInstance = new FeeParam();
69 }
70
71 return mgInstance;
72 } // end omp critical block
73}
74
75
76//_____________________________________________________________________________
77FeeParam::FeeParam()
78{
79 //
80 // Default constructor
81 //
82
83 for (int j = 0; j < constants::NLAYER; ++j) {
84 mInvX[j] = 1. / mX[j];
85 mInvWidthPad[j] = 1. / mWidthPad[j];
86 mTiltingAngleTan[j] = std::tan(mTiltingAngle[j] * M_PI / 180.0);
87 }
88
89 fillPad2MCMLookUpTable();
90}
91
92
93
94//_____________________________________________________________________________
95int FeeParam::getPadRowFromMCM(int irob, int imcm)
96{
97 //
98 // Return on which pad row this mcm sits
99 //
100
101 return HelperMethods::getPadRowFromMCM(irob, imcm);
102}
103
104//_____________________________________________________________________________
105int FeeParam::getPadColFromADC(int irob, int imcm, int iadc)
106{
107 //
108 // Return which pad is connected to this adc channel.
109 //
110 // Return virtual pad number even if ADC is outside chamber
111 // to keep compatibility of data processing at the edge MCM.
112 // User has to check that this is in the chamber if it is essential.
113 // Return -100 if iadc is invalid.
114 //
115 // Caution: ADC ordering in the online data is opposite to the pad column ordering.
116 // And it is not one-by-one correspondence. Precise drawing can be found in:
117 // http://wiki.kip.uni-heidelberg.de/ti/TRD/index.php/Image:ROB_MCM_numbering.pdf
118 //
119
120 return HelperMethods::getPadColFromADC(irob, imcm, iadc);
121}
122
123//_____________________________________________________________________________
124int FeeParam::getExtendedPadColFromADC(int irob, int imcm, int iadc)
125{
126 //
127 // Return which pad coresponds to the extended digit container pad numbering
128 // Extended digit container is designed to store all pad data including shared pad,
129 // so we have to introduce new virtual pad numbering scheme for this purpose.
130 //
131
132 if (iadc < 0 || iadc > NADCMCM) {
133 return -100;
134 }
135 int mcmcol = imcm % NMCMROBINCOL + getROBSide(irob) * NMCMROBINCOL; // MCM column number on ROC [0..7]
136 int padcol = mcmcol * NADCMCM + NCOLMCM + 2 - iadc;
137
138 return padcol;
139}
140
141//_____________________________________________________________________________
142int FeeParam::getMCMfromPad(int irow, int icol)
143{
144 //
145 // Return on which MCM this pad is directry connected.
146 // Return -1 for error.
147 //
148
149 return HelperMethods::getMCMfromPad(irow, icol);
150}
151
152//_____________________________________________________________________________
153int FeeParam::getMCMfromSharedPad(int irow, int icol)
154{
155 //
156 // Return on which MCM this pad is directry connected.
157 // Return -1 for error.
158 //
159
160 if (irow < 0 || icol < 0 || irow > NROWC1 || icol > NCOLUMN + 8 * 3) {
161 return -1;
162 }
163
164 int adc = 20 - (icol % 18) - 1;
165 switch (adc) {
166 case 2:
167 icol += 5;
168 break;
169 case 18:
170 icol -= 5;
171 break;
172 case 19:
173 icol -= 5;
174 break;
175 default:
176 icol += 0;
177 break;
178 }
179
180 return (icol % (NCOLUMN / 2)) / NCOLMCM + NMCMROBINCOL * (irow % NMCMROBINROW);
181}
182
183//_____________________________________________________________________________
184int FeeParam::getROBfromPad(int irow, int icol)
185{
186 //
187 // Return on which rob this pad is
188 //
189 return HelperMethods::getROBfromPad(irow, icol);
190}
191
192//_____________________________________________________________________________
193int FeeParam::getROBfromSharedPad(int irow, int icol)
194{
195 //
196 // Return on which rob this pad is for shared pads
197 //
198
199 if (icol < 72) {
200 return (irow / NMCMROBINROW) * 2 + getColSide(icol + 5);
201 } else {
202 return (irow / NMCMROBINROW) * 2 + getColSide(icol - 5);
203 }
204}
205
206//_____________________________________________________________________________
208{
209 //
210 // Return on which side this rob sits (A side = 0, B side = 1)
211 //
212 return HelperMethods::getROBSide(irob);
213}
214
215//_____________________________________________________________________________
217{
218 //
219 // Return on which side this column sits (A side = 0, B side = 1)
220 //
221
222 return HelperMethods::getColSide(icol);
223}
224
225unsigned int FeeParam::aliToExtAli(int rob, int aliid)
226{
227 if (aliid != 127) {
228 return ((1 << 10) | (rob << 7) | aliid);
229 }
230
231 return 127;
232}
233
234int FeeParam::extAliToAli(unsigned int dest, unsigned short linkpair, unsigned short rocType, int* mcmList, int listSize)
235{
236 // Converts an extended ALICE ID which identifies a single MCM or a group of MCMs to
237 // the corresponding list of MCMs. Only broadcasts (127) are encoded as 127
238 // The return value is the number of MCMs in the list
239
240 mcmList[0] = -1;
241
242 short nmcm = 0;
243 unsigned int mcm, rob, robAB;
244 unsigned int cmA = 0, cmB = 0; // Chipmask for each A and B side
245
246 // Default chipmask for 4 linkpairs (each bit correponds each alice-mcm)
247 const unsigned int gkChipmaskDefLp[4] = {0x1FFFF, 0x1FFFF, 0x3FFFF, 0x1FFFF};
248
249 rob = dest >> 7; // Extract ROB pattern from dest.
250 mcm = dest & 0x07F; // Extract MCM pattern from dest.
251 robAB = getRobAB(rob, linkpair); // Get which ROB sides are selected.
252
253 // Abort if no ROB is selected
254 if (robAB == 0) {
255 return 0;
256 }
257
258 // Special case
259 if (mcm == 127) {
260 if (robAB == 3) { // This is very special 127 can stay only if two ROBs are selected
261 mcmList[0] = 127; // broadcase to ALL
262 mcmList[1] = -1;
263 return 1;
264 }
265 cmA = cmB = 0x3FFFF;
266 } else if ((mcm & 0x40) != 0) { // If top bit is 1 but not 127, this is chip group.
267 if ((mcm & 0x01) != 0) {
268 cmA |= 0x04444;
269 cmB |= 0x04444;
270 } // chip_cmrg
271 if ((mcm & 0x02) != 0) {
272 cmA |= 0x10000;
273 cmB |= 0x10000;
274 } // chip_bmrg
275 if ((mcm & 0x04) != 0 && rocType == 0) {
276 cmA |= 0x20000;
277 cmB |= 0x20000;
278 } // chip_hm3
279 if ((mcm & 0x08) != 0 && rocType == 1) {
280 cmA |= 0x20000;
281 cmB |= 0x20000;
282 } // chip_hm4
283 if ((mcm & 0x10) != 0) {
284 cmA |= 0x01111;
285 cmB |= 0x08888;
286 } // chip_edge
287 if ((mcm & 0x20) != 0) {
288 cmA |= 0x0aaaa;
289 cmB |= 0x03333;
290 } // chip_norm
291 } else { // Otherwise, this is normal chip ID, turn on only one chip.
292 cmA = 1 << mcm;
293 cmB = 1 << mcm;
294 }
295
296 // Mask non-existing MCMs
297 cmA &= gkChipmaskDefLp[linkpair];
298 cmB &= gkChipmaskDefLp[linkpair];
299 // Remove if only one side is selected
300 if (robAB == 1) {
301 cmB = 0;
302 }
303 if (robAB == 2) {
304 cmA = 0;
305 }
306 if (robAB == 4 && linkpair != 2) {
307 cmA = cmB = 0; // Restrict to only T3A and T3B
308 }
309
310 // Finally convert chipmask to list of slaves
311 nmcm = chipmaskToMCMlist(cmA, cmB, linkpair, mcmList, listSize);
312
313 return nmcm;
314}
315
316short FeeParam::getRobAB(unsigned short robsel, unsigned short linkpair)
317{
318 // Converts the ROB part of the extended ALICE ID to robs
319
320 if ((robsel & 0x8) != 0) { // 1000 .. direct ROB selection. Only one of the 8 ROBs are used.
321 robsel = robsel & 7;
322 if ((robsel % 2) == 0 && (robsel / 2) == linkpair) {
323 return 1; // Even means A side (position 0,2,4,6)
324 }
325 if ((robsel % 2) == 1 && (robsel / 2) == linkpair) {
326 return 2; // Odd means B side (position 1,3,5,7)
327 }
328 return 0;
329 }
330
331 // ROB group
332 if (robsel == 0) {
333 return 3;
334 } // Both ROB
335 if (robsel == 1) {
336 return 1;
337 } // A-side ROB
338 if (robsel == 2) {
339 return 2;
340 } // B-side ROB
341 if (robsel == 3) {
342 return 3;
343 } // Both ROB
344 if (robsel == 4) {
345 return 4;
346 } // Only T3A and T3B
347 // Other number 5 to 7 are ignored (not defined)
348
349 return 0;
350}
351/*
352void FeeParam::createORILookUpTable()
353{
354 int ori;
355 for(int trdstack=0;trdstack<3;trdstack++)
356 {
357 for(int side=0;side<2;side++)
358 {
359
360 for(int trdlayer=5;trdlayer>=0;trdlayer++)
361 {
362 ori=trdstack*12 + (5-trdlayer + side*6) +trdlayer/6 + side;
363 mAsideLUT[ori]= (trdstack<<8) + (trdlayer<<4) + side; // A side LUT to map ORI to stack/layer/side
364 if(ori==29) break;
365
366 }
367 if(ori==29) break;
368 }
369 if(ori==29) break;
370 }
371 for(int trdstack=4;trdstack>1;trdstack--)
372 {
373 for(int side=0;side<2;side++)
374 {
375
376 for(int trdlayer=5;trdlayer>=0;trdlayer++)
377 {
378 ori = (4-trdstack)*12 + (5-trdlayer + side*5) +trdlayer/6 + side;
379 int newside;
380 if(ori >=24) newside=1; else newside=side; // a hack as I am not typing this all out.
381 mCsideLUT[ori]= (trdstack<<8) + (trdlayer<<4) + newside; // A side LUT to map ORI to stack/layer/side
382 if(ori==29) break;
383 }
384 if(ori==29) break;
385 }
386 if(ori==29) break;
387 }
388}
389*/
390
391void FeeParam::unpackORI(int link, int side, int& stack, int& layer, int& halfchamberside)
392{
393 // given the link 0-29 and the side A/C 0/1 return the stack layer and halfchamber side
394 if (side == 0) {
395 stack = link / 12;
396 layer = 5 - link % 6;
397 halfchamberside = (link / 6) % 2;
398 } else {
399 //c side
400 stack = 4 - link / 12;
401 layer = 5 - link % 6;
402 halfchamberside = (link / 6) % 2;
403 if (link > 23) {
404 halfchamberside = 1;
405 }
406 }
407}
408
409short FeeParam::chipmaskToMCMlist(unsigned int cmA, unsigned int cmB, unsigned short linkpair, int* mcmList, int listSize)
410{
411 // Converts the chipmask to a list of MCMs
412
413 short nmcm = 0;
414 short i;
415 for (i = 0; i < 18; i++) { // 18: number of MCMs on a ROB
416 if ((cmA & (1 << i)) != 0 && nmcm < listSize) {
417 mcmList[nmcm] = ((linkpair * 2) << 7) | i;
418 ++nmcm;
419 }
420 if ((cmB & (1 << i)) != 0 && nmcm < listSize) {
421 mcmList[nmcm] = ((linkpair * 2 + 1) << 7) | i;
422 ++nmcm;
423 }
424 }
425
426 mcmList[nmcm] = -1;
427 return nmcm;
428}
429
430//_____________________________________________________________________________
432{
433 //
434 // Set raw data version (major number only)
435 // Maximum available number is preset in mkMaxRAWversion
436 //
437
438 if (rawver >= 0 && rawver <= mkMaxRAWversion) {
439 mRAWversion = rawver;
440 } else {
441 LOG(error) << "Raw version is out of range: " << rawver;
442 }
443}
444
445/*
446 * This was originally moved here from arrayADC, signalADC etc. We now longer use those classes
447 * so removing this for now as its crashing.
448 */
449void FeeParam::fillPad2MCMLookUpTable()
450{
451 //
452 // Initializes the Look Up Table to relate
453 // pad numbering and mcm channel numbering
454 //
455 for (int mcm = 0; mcm < NMCMROBINCOL * 2; mcm++) {
456 int lowerlimit = mcm * NCOLMCM;
457 int upperlimit = NCOLMCM + mcm * NCOLMCM;
458 int shiftposition = 1 + 3 * mcm;
459 for (int index = lowerlimit; index < upperlimit; index++) {
460 mLUTPadNumbering[index] = index + shiftposition;
461 }
462 }
463}
464
465int FeeParam::getDyCorrection(int det, int rob, int mcm) const
466{
467 // calculate the correction of the deflection
468 // i.e. Lorentz angle and tilt correction (if active)
469
470 int layer = det % NLAYER;
471
472 float dyTilt = (mDriftLength * std::tan(mTiltingAngle[layer] * M_PI / 180.) *
473 getLocalZ(det, rob, mcm) * mInvX[layer]);
474
475 // calculate Lorentz correction
476 float dyCorr = -mOmegaTau * mDriftLength;
477
478 if (mTiltCorr) {
479 dyCorr += dyTilt; // add tilt correction
480 }
481
482 return (int)TMath::Nint(dyCorr * mScalePad * mInvWidthPad[layer]);
483}
484
485void FeeParam::getDyRange(int det, int rob, int mcm, int ch,
486 int& dyMinInt, int& dyMaxInt) const
487{
488 // calculate the deflection range in which tracklets are accepted
489
490 dyMinInt = mDyMin;
491 dyMaxInt = mDyMax;
492
493 // deflection cut is considered for |B| > 0.1 T only
494 if (std::abs(mMagField) < 0.1) {
495 return;
496 }
497
498 float e = 0.30;
499
500 float maxDeflTemp = getPerp(det, rob, mcm, ch) / 2. * // Sekante/2 (cm)
501 (e * 1e-2 * std::abs(mMagField) * mInvPtMin); // 1/R (1/cm)
502
503 float phi = getPhi(det, rob, mcm, ch);
504 if (maxDeflTemp < std::cos(phi)) {
505 float maxDeflAngle = std::asin(maxDeflTemp);
506
507 float dyMin = (mDriftLength *
508 std::tan(phi - maxDeflAngle));
509
510 dyMinInt = int(dyMin / mBinDy);
511 // clipping to allowed range
512 if (dyMinInt < mDyMin) {
513 dyMinInt = mDyMin;
514 } else if (dyMinInt > mDyMax) {
515 dyMinInt = mDyMax;
516 }
517
518 float dyMax = (mDriftLength *
519 std::tan(phi + maxDeflAngle));
520
521 dyMaxInt = int(dyMax / mBinDy);
522 // clipping to allowed range
523 if (dyMaxInt > mDyMax) {
524 dyMaxInt = mDyMax;
525 } else if (dyMaxInt < mDyMin) {
526 dyMaxInt = mDyMin;
527 }
528 } else if (maxDeflTemp < 0.) {
529 // this must not happen
530 printf("Inconsistent calculation of sin(alpha): %f\n", maxDeflTemp);
531 } else {
532 // TRD is not reached at the given pt threshold
533 // max range
534 }
535
536 if ((dyMaxInt - dyMinInt) <= 0) {
537 LOG(debug) << "strange dy range: [" << dyMinInt << "," << dyMaxInt << "], using max range now";
538 dyMaxInt = mDyMax;
539 dyMinInt = mDyMin;
540 }
541}
542
543float FeeParam::getElongation(int det, int rob, int mcm, int ch) const
544{
545 // calculate the ratio of the distance to the primary vertex and the
546 // distance in x-direction for the given ADC channel
547
548 int layer = det % NLAYER;
549
550 float elongation = std::abs(getDist(det, rob, mcm, ch) * mInvX[layer]);
551
552 // sanity check
553 if (elongation < 0.001) {
554 elongation = 1.;
555 }
556 return elongation;
557}
558
559void FeeParam::getCorrectionFactors(int det, int rob, int mcm, int ch,
560 unsigned int& cor0, unsigned int& cor1, float gain) const
561{
562 // calculate the gain correction factors for the given ADC channel
563 float Invgain = 1.0;
564 if (mPidGainCorr == true) {
565 Invgain = 1 / gain;
566 }
567
568 if (mPidTracklengthCorr == true) {
569 float InvElongationOverGain = 1 / getElongation(det, rob, mcm, ch) * Invgain;
570 cor0 = (unsigned int)(mScaleQ0 * InvElongationOverGain);
571 cor1 = (unsigned int)(mScaleQ1 * InvElongationOverGain);
572 } else {
573 cor0 = (unsigned int)(mScaleQ0 * Invgain);
574 cor1 = (unsigned int)(mScaleQ1 * Invgain);
575 }
576}
577
579{
580 // return the number of timebins used
581
582 return mNtimebins;
583}
584
585float FeeParam::getX(int det, int /* rob */, int /* mcm */) const
586{
587 // return the distance to the beam axis in x-direction
588
589 int layer = det % NLAYER;
590 return mX[layer];
591}
592
593float FeeParam::getLocalY(int det, int rob, int mcm, int ch) const
594{
595 // get local y-position (r-phi) w.r.t. the chamber centre
596
597 int layer = det % NLAYER;
598 // calculate the pad position as in the TRAP
599 float ypos = (-4 + 1 + (rob & 0x1) * 4 + (mcm & 0x3)) * 18 - ch - 0.5; // y position in bins of pad widths
600 return ypos * mWidthPad[layer];
601}
602
603float FeeParam::getLocalZ(int det, int rob, int mcm) const
604{
605 // get local z-position w.r.t. to the chamber boundary
606
607 int stack = (det % NCHAMBERPERSEC) / NLAYER;
608 int layer = det % NLAYER;
609 int row = (rob / 2) * 4 + mcm / 4;
610
611 if (stack == 2) {
612 if (row == 0) {
613 return (mZrow[layer * NLAYER + stack] - 0.5 * mLengthOuterPadC0);
614 } else if (row == 11) {
615 return (mZrow[layer * NLAYER + stack] - 1.5 * mLengthOuterPadC0 - (row - 1) * mLengthInnerPadC0);
616 } else {
617 return (mZrow[layer * NLAYER + stack] - mLengthOuterPadC0 - (row - 0.5) * mLengthInnerPadC0);
618 }
619 } else {
620 if (row == 0) {
621 return (mZrow[layer * NLAYER + stack] - 0.5 * mLengthOuterPadC1[layer]);
622 } else if (row == 15) {
623 return (mZrow[layer * NLAYER + stack] - 1.5 * mLengthOuterPadC1[layer] - (row - 1) * mLengthInnerPadC1[layer]);
624 } else {
625 return (mZrow[layer * NLAYER + stack] - mLengthOuterPadC1[layer] - (row - 0.5) * mLengthInnerPadC1[layer]);
626 }
627 }
628}
629
630float FeeParam::getPerp(int det, int rob, int mcm, int ch) const
631{
632 // get transverse distance to the beam axis
633 float y;
634 float x;
635 x = getX(det, rob, mcm);
636 y = getLocalY(det, rob, mcm, ch);
637 return std::sqrt(y * y + x * x);
638}
639
640float FeeParam::getPhi(int det, int rob, int mcm, int ch) const
641{
642 // calculate the azimuthal angle for the given ADC channel
643
644 return std::atan2(getLocalY(det, rob, mcm, ch), getX(det, rob, mcm));
645}
646
647float FeeParam::getDist(int det, int rob, int mcm, int ch) const
648{
649 // calculate the distance from the origin for the given ADC channel
650 float x, y, z;
651 x = getX(det, rob, mcm);
652 y = getLocalY(det, rob, mcm, ch);
653 z = getLocalZ(det, rob, mcm);
654
655 return std::sqrt(y * y + x * x + z * z);
656}
uint16_t mcm
uint16_t rob
Definition of the GeometryManager class.
int32_t i
uint32_t j
Definition RawData.h:0
uint32_t side
Definition RawData.h:0
uint32_t stack
Definition RawData.h:1
std::ostringstream debug
static int getROBSide(int irob)
Definition FeeParam.cxx:207
int getNtimebins() const
Definition FeeParam.cxx:578
static int getPadRowFromMCM(int irob, int imcm)
Definition FeeParam.cxx:95
void setRAWversion(int rawver)
Definition FeeParam.cxx:431
float getElongation(int det, int rob, int mcm, int) const
Definition FeeParam.cxx:543
static int getPadColFromADC(int irob, int imcm, int iadc)
Definition FeeParam.cxx:105
void getDyRange(int det, int rob, int mcm, int ch, int &dyMinInt, int &dyMaxInt) const
Definition FeeParam.cxx:485
static int getROBfromPad(int irow, int icol)
Definition FeeParam.cxx:184
void getCorrectionFactors(int det, int rob, int mcm, int ch, unsigned int &cor0, unsigned int &cor1, float gain=1.) const
Definition FeeParam.cxx:559
static int getExtendedPadColFromADC(int irob, int imcm, int iadc)
Definition FeeParam.cxx:124
float getLocalY(int det, int rob, int mcm, int ch) const
Definition FeeParam.cxx:593
static int getMCMfromSharedPad(int irow, int icol)
Definition FeeParam.cxx:153
float getX(int det, int rob, int mcm) const
Definition FeeParam.cxx:585
static short getRobAB(unsigned short robsel, unsigned short linkpair)
Definition FeeParam.cxx:316
static int extAliToAli(unsigned int dest, unsigned short linkpair, unsigned short rocType, int *list, int listSize)
Definition FeeParam.cxx:234
static short chipmaskToMCMlist(unsigned int cmA, unsigned int cmB, unsigned short linkpair, int *mcmList, int listSize)
Definition FeeParam.cxx:409
static unsigned int aliToExtAli(int rob, int aliid)
Definition FeeParam.cxx:225
float getDist(int det, int rob, int mcm, int ch) const
Definition FeeParam.cxx:647
static FeeParam * instance()
Definition FeeParam.cxx:58
float getPerp(int det, int rob, int mcm, int ch) const
Definition FeeParam.cxx:630
static int getColSide(int icol)
Definition FeeParam.cxx:216
static void unpackORI(int link, int side, int &stack, int &layer, int &halfchamberside)
Definition FeeParam.cxx:391
static int getMCMfromPad(int irow, int icol)
Definition FeeParam.cxx:142
int getDyCorrection(int det, int rob, int mcm) const
Definition FeeParam.cxx:465
float getLocalZ(int det, int rob, int mcm) const
Definition FeeParam.cxx:603
static int getROBfromSharedPad(int irow, int icol)
Definition FeeParam.cxx:193
float getPhi(int det, int rob, int mcm, int ch) const
Definition FeeParam.cxx:640
GLint GLenum GLint x
Definition glcorearb.h:403
GLuint index
Definition glcorearb.h:781
GLint y
Definition glcorearb.h:270
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
constexpr int NMCMROBINCOL
the number of MCMs per ROB in column direction
Definition Constants.h:49
constexpr int NLAYER
the number of layers
Definition Constants.h:27
constexpr int NCOLUMN
the number of pad columns for each chamber
Definition Constants.h:41
constexpr int NMCMROBINROW
the number of MCMs per ROB in row direction
Definition Constants.h:48
constexpr int NADCMCM
the number of ADC channels per MCM
Definition Constants.h:52
constexpr int NCOLMCM
the number of pads per MCM
Definition Constants.h:53
constexpr int NCHAMBERPERSEC
the number of chambers per sector
Definition Constants.h:28
constexpr int NROWC1
the number of pad rows for chambers of type C1 (installed in stacks 0, 1, 3 and 4)
Definition Constants.h:43
Defining DataPointCompositeObject explicitly as copiable.
static int getROBfromPad(int irow, int icol)
static int getColSide(int icol)
static int getPadRowFromMCM(int irob, int imcm)
static int getPadColFromADC(int irob, int imcm, int iadc)
static int getMCMfromPad(int irow, int icol)
static int getROBSide(int irob)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< int > row
ArrayADC adc