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 
12 namespace reco {
13 namespace castor {
14 
15 class QieShape {
16  public:
17  QieShape (const double fAdcShape [32], const double fAdcBin [32]);
18  // center of the nominal linearized QIE bin
19  double linearization (int fAdc) const {return mLinearization [fAdc];}
20  // width of the nominal linearized bin
21  double binSize (int fAdc) const {return mBinSize [fAdc];}
22  private:
23  double mLinearization [128];
24  double mBinSize [128];
25 };
26 
27 }
28 }
29 
30 #endif
double linearization(int fAdc) const
Definition: QieShape.h:19
double mLinearization[128]
Definition: QieShape.h:23
double binSize(int fAdc) const
Definition: QieShape.h:21
double mBinSize[128]
Definition: QieShape.h:24
QieShape(const double fAdcShape[32], const double fAdcBin[32])
Definition: QieShape.cc:16