CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CastorChannelCoder.cc
Go to the documentation of this file.
1 
8 #include <iostream>
9 
12 
13 CastorChannelCoder::CastorChannelCoder (const float fOffset [16], const float fSlope [16]) { // [CapId][Range]
14  for (int range = 0; range < 4; range++) {
15  for (int capId = 0; capId < 4; capId++) {
16  mOffset [capId][range] = fOffset [index (capId, range)];
17  mSlope [capId][range] = fSlope [index (capId, range)];
18  }
19  }
20 }
21 
22 double CastorChannelCoder::charge (const reco::castor::QieShape& fShape, int fAdc, int fCapId) const {
23  int range = (fAdc >> 6) & 0x3;
24  double charge = fShape.linearization (fAdc) / mSlope [fCapId][range] + mOffset [fCapId][range];
25 // std::cout << "CastorChannelCoder::charge-> " << fAdc << '/' << fCapId
26 // << " result: " << charge << std::endl;
27  return charge;
28 }
29 
30 int CastorChannelCoder::adc (const reco::castor::QieShape& fShape, double fCharge, int fCapId) const {
31 
32  int adc = -1; //nothing found yet
33  // search for the range
34  for (int range = 0; range < 4; range++) {
35  double qieCharge = (fCharge - mOffset [fCapId][range]) * mSlope [fCapId][range];
36  double qieChargeMax = fShape.linearization (32*range+31) + 0.5 * fShape.binSize (32*range+31);
37  if (range == 3 && qieCharge > qieChargeMax) adc = 127; // overflow
38  if (qieCharge > qieChargeMax) continue; // next range
39  for (int bin = 32*range; bin < 32*(range+1); bin++) {
40  if (qieCharge < fShape.linearization (bin) + 0.5 * fShape.binSize (bin)) {
41  adc = bin;
42  break;
43  }
44  }
45  if (adc >= 0) break; // found
46  }
47  if (adc < 0) adc = 0; // underflow
48 
49  // std::cout << "CastorChannelCoder::adc-> " << fCharge << '/' << fCapId
50  // << " result: " << adc << std::endl;
51  return adc;
52 }
53 
double linearization(int fAdc) const
Definition: QieShape.h:19
CastorChannelCoder(const float fOffset[16], const float fSlope[16])
int adc(const reco::castor::QieShape &fShape, double fCharge, int fCapId) const
fC + capid[0..3] -&gt; ADC conversion
double charge(const reco::castor::QieShape &fShape, int fAdc, int fCapId) const
ADC[0..127]+capid[0..3]-&gt;fC conversion.
double binSize(int fAdc) const
Definition: QieShape.h:21
int index(int fCapId, int Range)