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 
5 
6 /*
7 \class HcalLUTCorr
8 \author Radek Ofierzynski
9 contains one LUT correction factor value + corresponding DetId
10 */
11 
13 {
14  public:
15  HcalLUTCorr(): mId(0), mValue(0) {}
16  HcalLUTCorr(unsigned long fid, float value): mId(fid), mValue(value) {}
17 
18  uint32_t rawId() const {return mId;}
19 
20  float getValue() const {return mValue;}
21 
22  private:
23  uint32_t mId;
24  float mValue;
25 
27 };
28 
29 #endif
uint32_t rawId() const
Definition: HcalLUTCorr.h:18
float getValue() const
Definition: HcalLUTCorr.h:20
uint32_t mId
Definition: HcalLUTCorr.h:23
#define COND_SERIALIZABLE
Definition: Serializable.h:37
float mValue
Definition: HcalLUTCorr.h:24
list fid
Definition: NewTree.py:51
HcalLUTCorr(unsigned long fid, float value)
Definition: HcalLUTCorr.h:16