File indexing completed on 2024-04-06 12:02:13
0001 #ifndef HcalLUTCorr_h
0002 #define HcalLUTCorr_h
0003
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005
0006 #include <vector>
0007 #include <cstdint>
0008
0009
0010
0011
0012
0013
0014
0015 class HcalLUTCorr {
0016 public:
0017 HcalLUTCorr() : mId(0), mValue(0) {}
0018 HcalLUTCorr(unsigned long fid, float value) : mId(fid), mValue(value) {}
0019
0020 uint32_t rawId() const { return mId; }
0021
0022 float getValue() const { return mValue; }
0023
0024 private:
0025 uint32_t mId;
0026 float mValue;
0027
0028 COND_SERIALIZABLE;
0029 };
0030
0031 #endif