CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
HcalQIECoder Class Reference

#include <HcalQIECoder.h>

Public Member Functions

unsigned adc (const HcalQIEShape &fShape, float fCharge, unsigned fCapId) const
 fC + capid [0..3] -> ADC conversion More...
 
float charge (const HcalQIEShape &fShape, unsigned fAdc, unsigned fCapId) const
 ADC [0..127] + capid [0..3] -> fC conversion. More...
 
 HcalQIECoder (unsigned long fId=0)
 
float offset (unsigned fCapId, unsigned fRange) const
 
uint32_t rawId () const
 
void setOffset (unsigned fCapId, unsigned fRange, float fValue)
 
void setSlope (unsigned fCapId, unsigned fRange, float fValue)
 
float slope (unsigned fCapId, unsigned fRange) const
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Private Attributes

uint32_t mId
 
float mOffset00
 
float mOffset01
 
float mOffset02
 
float mOffset03
 
float mOffset10
 
float mOffset11
 
float mOffset12
 
float mOffset13
 
float mOffset20
 
float mOffset21
 
float mOffset22
 
float mOffset23
 
float mOffset30
 
float mOffset31
 
float mOffset32
 
float mOffset33
 
float mSlope00
 
float mSlope01
 
float mSlope02
 
float mSlope03
 
float mSlope10
 
float mSlope11
 
float mSlope12
 
float mSlope13
 
float mSlope20
 
float mSlope21
 
float mSlope22
 
float mSlope23
 
float mSlope30
 
float mSlope31
 
float mSlope32
 
float mSlope33
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Author
Fedor Ratnikov (UMd) POOL object to store calibration mode QIE coder parameters for one channel $Id
Fedor Ratnikov (UMd) POOL object to store QIE coder parameters for one channel $Author: ratnikov
Date
2008/03/05 10:38:03
Revision
1.9

Definition at line 21 of file HcalQIECoder.h.

Constructor & Destructor Documentation

HcalQIECoder::HcalQIECoder ( unsigned long  fId = 0)
inline

Definition at line 23 of file HcalQIECoder.h.

References adc(), charge(), offset(), setOffset(), setSlope(), and slope().

23 : mId (fId) {}
uint32_t mId
Definition: HcalQIECoder.h:40

Member Function Documentation

unsigned HcalQIECoder::adc ( const HcalQIEShape fShape,
float  fCharge,
unsigned  fCapId 
) const

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

Definition at line 27 of file HcalQIECoder.cc.

References stringResolutionProvider_cfi::bin, HcalQIEShape::highEdge(), HcalQIEShape::nbins(), offset(), and slope().

Referenced by HcalCoderDb::fC2adc_(), and HcalQIECoder().

27  {
28  // search for the range
29  for (unsigned range = 0; range < 4; range++) {
30  float qieCharge = fCharge * slope (fCapId, range) + offset (fCapId, range);
31  unsigned nbin = fShape.nbins(); // it's just 64 = 2*32 ! (for QIE10)
32  unsigned minBin = nbin * range;
33  unsigned maxBin = minBin + nbin - 1;
34  float qieChargeMax = fShape.highEdge (maxBin);
35  if (qieCharge <= qieChargeMax) {
36  for (unsigned bin = minBin; bin <= maxBin; bin++) {
37  if (qieCharge < fShape.highEdge (bin)) {
38  return bin;
39  }
40  }
41  return minBin; // underflow
42  }
43  else if (range == 3) {
44  return ( 4 * nbin - 1); // overflow
45  }
46  }
47  return 0; //should never get here
48 }
float slope(unsigned fCapId, unsigned fRange) const
Definition: HcalQIECoder.cc:54
float offset(unsigned fCapId, unsigned fRange) const
Definition: HcalQIECoder.cc:50
bin
set the eta bin as selection string.
float highEdge(unsigned fAdc) const
Definition: HcalQIEShape.cc:46
unsigned nbins() const
Definition: HcalQIEShape.h:33
float HcalQIECoder::charge ( const HcalQIEShape fShape,
unsigned  fAdc,
unsigned  fCapId 
) const

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

Definition at line 22 of file HcalQIECoder.cc.

References HcalQIEShape::center(), offset(), HcalQIEShape::range(), and slope().

Referenced by HcalCoderDb::adc2fC_(), getLinearizedADC(), HcalQIECoder(), ZSEnergy_impl::keepMe(), HcalDbService::makeHcalCalibration(), HcalDbService::makeHcalCalibrationWidth(), and HcalPedestalAnalysis::per2CapsHists().

22  {
23  unsigned range = fShape.range (fAdc);
24  return (fShape.center (fAdc) - offset (fCapId, range)) / slope (fCapId, range);
25 }
float slope(unsigned fCapId, unsigned fRange) const
Definition: HcalQIECoder.cc:54
float offset(unsigned fCapId, unsigned fRange) const
Definition: HcalQIECoder.cc:50
float center(unsigned fAdc) const
Definition: HcalQIEShape.cc:38
unsigned range(unsigned fAdc) const
Definition: HcalQIEShape.h:25
float HcalQIECoder::offset ( unsigned  fCapId,
unsigned  fRange 
) const

Definition at line 50 of file HcalQIECoder.cc.

References diffTreeTool::index, and mOffset00.

Referenced by adc(), HcalQIEDataCheck::analyze(), charge(), dumpHcalMatrixObject(), and HcalQIECoder().

50  {
51  return *((&mOffset00) + index (fRange, fCapId));
52 }
float mOffset00
Definition: HcalQIECoder.h:41
uint32_t HcalQIECoder::rawId ( ) const
inline

Definition at line 37 of file HcalQIECoder.h.

References mId.

Referenced by HcalDbService::getHcalShape().

37 {return mId;}
uint32_t mId
Definition: HcalQIECoder.h:40
template<class Archive >
void HcalQIECoder::serialize ( Archive &  ar,
const unsigned int  version 
)
private
void HcalQIECoder::setOffset ( unsigned  fCapId,
unsigned  fRange,
float  fValue 
)

Definition at line 58 of file HcalQIECoder.cc.

References MessageLogger_cfi::cerr, diffTreeTool::index, mOffset00, and mitigatedMETSequence_cff::U.

Referenced by dumpHcalMatrixObject(), and HcalQIECoder().

58  {
59  if (fCapId < 4U && fRange < 4U) { // fCapId >= 0 and fRange >= 0, since fCapId and fRange are unsigned
60  *((&mOffset00) + index (fRange, fCapId)) = fValue;
61  }
62  else {
63  std::cerr << "HcalQIECoder::setOffset-> Wrong parameters capid/range: " << fCapId << '/' << fRange << std::endl;
64  }
65 }
float mOffset00
Definition: HcalQIECoder.h:41
void HcalQIECoder::setSlope ( unsigned  fCapId,
unsigned  fRange,
float  fValue 
)

Definition at line 67 of file HcalQIECoder.cc.

References MessageLogger_cfi::cerr, diffTreeTool::index, mSlope00, and mitigatedMETSequence_cff::U.

Referenced by dumpHcalMatrixObject(), and HcalQIECoder().

67  {
68  if (fCapId < 4U && fRange < 4U) { // fCapId >= 0 and fRange >= 0, since fCapId and fRange are unsigned
69  *((&mSlope00) + index (fRange, fCapId)) = fValue;
70  }
71  else {
72  std::cerr << "HcalQIECoder::setSlope-> Wrong parameters capid/range: " << fCapId << '/' << fRange << std::endl;
73  }
74 }
float mSlope00
Definition: HcalQIECoder.h:57
float HcalQIECoder::slope ( unsigned  fCapId,
unsigned  fRange 
) const

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 74 of file HcalQIECoder.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 74 of file HcalQIECoder.h.

Member Data Documentation

uint32_t HcalQIECoder::mId
private

Definition at line 40 of file HcalQIECoder.h.

Referenced by rawId().

float HcalQIECoder::mOffset00
private

Definition at line 41 of file HcalQIECoder.h.

Referenced by offset(), and setOffset().

float HcalQIECoder::mOffset01
private

Definition at line 42 of file HcalQIECoder.h.

float HcalQIECoder::mOffset02
private

Definition at line 43 of file HcalQIECoder.h.

float HcalQIECoder::mOffset03
private

Definition at line 44 of file HcalQIECoder.h.

float HcalQIECoder::mOffset10
private

Definition at line 45 of file HcalQIECoder.h.

float HcalQIECoder::mOffset11
private

Definition at line 46 of file HcalQIECoder.h.

float HcalQIECoder::mOffset12
private

Definition at line 47 of file HcalQIECoder.h.

float HcalQIECoder::mOffset13
private

Definition at line 48 of file HcalQIECoder.h.

float HcalQIECoder::mOffset20
private

Definition at line 49 of file HcalQIECoder.h.

float HcalQIECoder::mOffset21
private

Definition at line 50 of file HcalQIECoder.h.

float HcalQIECoder::mOffset22
private

Definition at line 51 of file HcalQIECoder.h.

float HcalQIECoder::mOffset23
private

Definition at line 52 of file HcalQIECoder.h.

float HcalQIECoder::mOffset30
private

Definition at line 53 of file HcalQIECoder.h.

float HcalQIECoder::mOffset31
private

Definition at line 54 of file HcalQIECoder.h.

float HcalQIECoder::mOffset32
private

Definition at line 55 of file HcalQIECoder.h.

float HcalQIECoder::mOffset33
private

Definition at line 56 of file HcalQIECoder.h.

float HcalQIECoder::mSlope00
private

Definition at line 57 of file HcalQIECoder.h.

Referenced by setSlope(), and slope().

float HcalQIECoder::mSlope01
private

Definition at line 58 of file HcalQIECoder.h.

float HcalQIECoder::mSlope02
private

Definition at line 59 of file HcalQIECoder.h.

float HcalQIECoder::mSlope03
private

Definition at line 60 of file HcalQIECoder.h.

float HcalQIECoder::mSlope10
private

Definition at line 61 of file HcalQIECoder.h.

float HcalQIECoder::mSlope11
private

Definition at line 62 of file HcalQIECoder.h.

float HcalQIECoder::mSlope12
private

Definition at line 63 of file HcalQIECoder.h.

float HcalQIECoder::mSlope13
private

Definition at line 64 of file HcalQIECoder.h.

float HcalQIECoder::mSlope20
private

Definition at line 65 of file HcalQIECoder.h.

float HcalQIECoder::mSlope21
private

Definition at line 66 of file HcalQIECoder.h.

float HcalQIECoder::mSlope22
private

Definition at line 67 of file HcalQIECoder.h.

float HcalQIECoder::mSlope23
private

Definition at line 68 of file HcalQIECoder.h.

float HcalQIECoder::mSlope30
private

Definition at line 69 of file HcalQIECoder.h.

float HcalQIECoder::mSlope31
private

Definition at line 70 of file HcalQIECoder.h.

float HcalQIECoder::mSlope32
private

Definition at line 71 of file HcalQIECoder.h.

float HcalQIECoder::mSlope33
private

Definition at line 72 of file HcalQIECoder.h.