CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CondFormats/HcalObjects/interface/HcalLUTCorr.h

Go to the documentation of this file.
00001 #ifndef HcalLUTCorr_h
00002 #define HcalLUTCorr_h
00003 
00004 /*
00005 \class HcalLUTCorr
00006 \author Radek Ofierzynski
00007 contains one LUT correction factor value + corresponding DetId
00008 */
00009 
00010 class HcalLUTCorr
00011 {
00012  public:
00013   HcalLUTCorr(): mId(0), mValue(0) {}
00014   HcalLUTCorr(unsigned long fid, float value): mId(fid), mValue(value) {}
00015 
00016   uint32_t rawId() const {return mId;}
00017 
00018   float getValue() const {return mValue;}
00019 
00020  private:
00021   uint32_t mId;
00022   float mValue;
00023 };
00024 
00025 #endif