test
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
HcalChannelCoder Class Reference

#include <HcalChannelCoder.h>

Public Member Functions

int adc (const QieShape &fShape, double fCharge, int fCapId) const
 fC + capid[0..3] -> ADC conversion More...
 
double charge (const QieShape &fShape, int fAdc, int fCapId) const
 ADC[0..127]+capid[0..3]->fC conversion. More...
 
 HcalChannelCoder (const float fOffset[16], const float fSlope[16])
 
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 QIE $Author: ratnikov

Definition at line 12 of file HcalChannelCoder.h.

Constructor & Destructor Documentation

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

Definition at line 12 of file HcalChannelCoder.cc.

References index(), mOffset, and mSlope.

12  { // [CapId][Range]
13  for (int range = 0; range < 4; range++) {
14  for (int capId = 0; capId < 4; capId++) {
15  mOffset [capId][range] = fOffset [index (capId, range)];
16  mSlope [capId][range] = fSlope [index (capId, range)];
17  }
18  }
19 }
double mOffset[4][4]
int index(int fCapId, int Range)
double mSlope[4][4]

Member Function Documentation

int HcalChannelCoder::adc ( const QieShape fShape,
double  fCharge,
int  fCapId 
) const

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

Definition at line 29 of file HcalChannelCoder.cc.

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

29  {
30 
31  int adc = -1; //nothing found yet
32  // search for the range
33  for (int range = 0; range < 4; range++) {
34  double qieCharge = (fCharge - mOffset [fCapId][range]) * mSlope [fCapId][range];
35  double qieChargeMax = fShape.linearization (32*range+31) + 0.5 * fShape.binSize (32*range+31);
36  if (range == 3 && qieCharge > qieChargeMax) adc = 127; // overflow
37  if (qieCharge > qieChargeMax) continue; // next range
38  for (int bin = 32*range; bin < 32*(range+1); bin++) {
39  if (qieCharge < fShape.linearization (bin) + 0.5 * fShape.binSize (bin)) {
40  adc = bin;
41  break;
42  }
43  }
44  if (adc >= 0) break; // found
45  }
46  if (adc < 0) adc = 0; // underflow
47 
48 // std::cout << "HcalChannelCoder::adc-> " << fCharge << '/' << fCapId
49 // << " result: " << adc << std::endl;
50  return adc;
51 }
int adc(const QieShape &fShape, double fCharge, int fCapId) const
fC + capid[0..3] -&gt; ADC conversion
double binSize(int fAdc) const
Definition: QieShape.h:15
double mOffset[4][4]
double mSlope[4][4]
double linearization(int fAdc) const
Definition: QieShape.h:13
double HcalChannelCoder::charge ( const QieShape fShape,
int  fAdc,
int  fCapId 
) const

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

Definition at line 21 of file HcalChannelCoder.cc.

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

21  {
22  int range = (fAdc >> 6) & 0x3;
23  double charge = fShape.linearization (fAdc) / mSlope [fCapId][range] + mOffset [fCapId][range];
24 // std::cout << "HcalChannelCoder::charge-> " << fAdc << '/' << fCapId
25 // << " result: " << charge << std::endl;
26  return charge;
27 }
double charge(const QieShape &fShape, int fAdc, int fCapId) const
ADC[0..127]+capid[0..3]-&gt;fC conversion.
double mOffset[4][4]
double mSlope[4][4]
double linearization(int fAdc) const
Definition: QieShape.h:13
int HcalChannelCoder::index ( int  fCapId,
int  Range 
)
inline

Definition at line 19 of file HcalChannelCoder.h.

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

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

Member Data Documentation

double HcalChannelCoder::mOffset[4][4]
private

Definition at line 21 of file HcalChannelCoder.h.

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

double HcalChannelCoder::mSlope[4][4]
private

Definition at line 22 of file HcalChannelCoder.h.

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