CMS 3D CMS Logo

FEConfigFgrGroupDat.h
Go to the documentation of this file.
1 #ifndef FECONFFGRGROUPDAT_H
2 #define FECONFFGRGROUPDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
12 public:
13  friend class EcalCondDBInterface; // XXX temp should not need
15  ~FEConfigFgrGroupDat() override;
16 
17  // User data methods
18  inline std::string getTable() override { return "FE_CONFIG_FGR_PER_GROUP_DAT"; }
19 
20  inline void setFgrGroupId(int x) { m_group_id = x; }
21  inline int getFgrGroupId() const { return m_group_id; }
22 
23  inline void setThreshLow(float x) { m_thresh_low = x; }
24  inline float getThreshLow() const { return m_thresh_low; }
25  inline void setThreshHigh(float x) { m_thresh_high = x; }
26  inline float getThreshHigh() const { return m_thresh_high; }
27  inline void setRatioLow(float x) { m_ratio_low = x; }
28  inline float getRatioLow() const { return m_ratio_low; }
29  inline void setRatioHigh(float x) { m_ratio_high = x; }
30  inline float getRatioHigh() const { return m_ratio_high; }
31  inline void setLUTValue(int x) { m_lut = x; }
32  inline int getLUTValue() const { return m_lut; }
33 
34 private:
35  void prepareWrite() noexcept(false) override;
36 
38 
40 
41  void fetchData(std::map<EcalLogicID, FEConfigFgrGroupDat>* fillMap, FEConfigFgrInfo* iconf) noexcept(false);
42 
43  // User data
45  float m_thresh_low;
47  float m_ratio_low;
48  float m_ratio_high;
49  int m_lut;
50 };
51 
52 #endif
void setThreshLow(float x)
float getRatioHigh() const
void setRatioHigh(float x)
void setThreshHigh(float x)
float getThreshHigh() const
void prepareWrite() noexcept(false) override
void fetchData(std::map< EcalLogicID, FEConfigFgrGroupDat > *fillMap, FEConfigFgrInfo *iconf) noexcept(false)
std::string getTable() override
float getThreshLow() const
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80
void writeArrayDB(const std::map< EcalLogicID, FEConfigFgrGroupDat > *data, FEConfigFgrInfo *iconf) noexcept(false)
void writeDB(const EcalLogicID *ecid, const FEConfigFgrGroupDat *item, FEConfigFgrInfo *iconf) noexcept(false)