CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalLUTCorr.h
Go to the documentation of this file.
1 #ifndef HcalLUTCorr_h
2 #define HcalLUTCorr_h
3 
4 /*
5 \class HcalLUTCorr
6 \author Radek Ofierzynski
7 contains one LUT correction factor value + corresponding DetId
8 */
9 
11 {
12  public:
13  HcalLUTCorr(): mId(0), mValue(0) {}
14  HcalLUTCorr(unsigned long fid, float value): mId(fid), mValue(value) {}
15 
16  uint32_t rawId() const {return mId;}
17 
18  float getValue() const {return mValue;}
19 
20  private:
21  uint32_t mId;
22  float mValue;
23 };
24 
25 #endif
uint32_t rawId() const
Definition: HcalLUTCorr.h:16
float getValue() const
Definition: HcalLUTCorr.h:18
uint32_t mId
Definition: HcalLUTCorr.h:21
float mValue
Definition: HcalLUTCorr.h:22
list fid
Definition: NewTree.py:51
HcalLUTCorr(unsigned long fid, float value)
Definition: HcalLUTCorr.h:14