CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
QieShape.h
Go to the documentation of this file.
1 #ifndef QIE_SHAPE_H
2 #define QIE_SHAPE_H
3 
11 class QieShape {
12  public:
13  QieShape (const double fAdcShape [32], const double fAdcBin [32]);
14  // center of the nominal linearized QIE bin
15  double linearization (int fAdc) const {return mLinearization [fAdc];}
16  // width of the nominal linearized bin
17  double binSize (int fAdc) const {return mBinSize [fAdc];}
18  private:
19  double mLinearization [128];
20  double mBinSize [128];
21 };
22 
23 #endif
QieShape(const double fAdcShape[32], const double fAdcBin[32])
Definition: QieShape.cc:13
double binSize(int fAdc) const
Definition: QieShape.h:17
double mBinSize[128]
Definition: QieShape.h:20
double mLinearization[128]
Definition: QieShape.h:19
double linearization(int fAdc) const
Definition: QieShape.h:15