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