CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
CastorChannelCoder Class Reference

#include <CastorChannelCoder.h>

Public Member Functions

int adc (const reco::castor::QieShape &fShape, double fCharge, int fCapId) const
 fC + capid[0..3] -> ADC conversion More...
 
 CastorChannelCoder (const float fOffset[16], const float fSlope[16])
 
double charge (const reco::castor::QieShape &fShape, int fAdc, int fCapId) const
 ADC[0..127]+capid[0..3]->fC conversion. More...
 
int index (int fCapId, int Range)
 

Private Attributes

double mOffset [4][4]
 
double mSlope [4][4]
 

Detailed Description

Container for ADC<->fQ conversion constants for HCAL/Castor QIE

Container for ADC<->fQ conversion constants for HCAL/Castor QIE $Original author: ratnikov

Revision:
1.2

Definition at line 16 of file CastorChannelCoder.h.

Constructor & Destructor Documentation

CastorChannelCoder::CastorChannelCoder ( const float  fOffset[16],
const float  fSlope[16] 
)

Definition at line 13 of file CastorChannelCoder.cc.

References index(), mOffset, and mSlope.

13  { // [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 }
int index(int fCapId, int Range)

Member Function Documentation

int CastorChannelCoder::adc ( const reco::castor::QieShape fShape,
double  fCharge,
int  fCapId 
) const

fC + capid[0..3] -> ADC conversion

Definition at line 30 of file CastorChannelCoder.cc.

References newFWLiteAna::bin, reco::castor::QieShape::binSize(), reco::castor::QieShape::linearization(), mOffset, and mSlope.

30  {
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 }
double linearization(int fAdc) const
Definition: QieShape.h:19
int adc(const reco::castor::QieShape &fShape, double fCharge, int fCapId) const
fC + capid[0..3] -&gt; ADC conversion
double binSize(int fAdc) const
Definition: QieShape.h:21
double CastorChannelCoder::charge ( const reco::castor::QieShape fShape,
int  fAdc,
int  fCapId 
) const

ADC[0..127]+capid[0..3]->fC conversion.

Definition at line 22 of file CastorChannelCoder.cc.

References reco::castor::QieShape::linearization(), mOffset, and mSlope.

22  {
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 }
double linearization(int fAdc) const
Definition: QieShape.h:19
double charge(const reco::castor::QieShape &fShape, int fAdc, int fCapId) const
ADC[0..127]+capid[0..3]-&gt;fC conversion.
int CastorChannelCoder::index ( int  fCapId,
int  Range 
)
inline

Definition at line 23 of file CastorChannelCoder.h.

Referenced by BeautifulSoup.PageElement::_invert(), and CastorChannelCoder().

23 {return fCapId*4+Range;}
PixelRecoRange< float > Range

Member Data Documentation

double CastorChannelCoder::mOffset[4][4]
private

Definition at line 25 of file CastorChannelCoder.h.

Referenced by adc(), CastorChannelCoder(), and charge().

double CastorChannelCoder::mSlope[4][4]
private

Definition at line 26 of file CastorChannelCoder.h.

Referenced by adc(), CastorChannelCoder(), and charge().