CMS 3D CMS Logo

FEConfigLUTParamDat.h
Go to the documentation of this file.
1 #ifndef FECONFLUTPARAMDAT_H
2 #define FECONFLUTPARAMDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
12 public:
13  friend class EcalCondDBInterface; // XXX temp should not need
15  ~FEConfigLUTParamDat() override;
16 
17  // User data methods
18  inline std::string getTable() override { return "FE_CONFIG_LUTPARAM_DAT"; }
19 
20  inline void setETSat(float x) { m_etsat = x; }
21  inline void setTTThreshlow(float x) { m_tthreshlow = x; }
22  inline void setTTThreshhigh(float x) { m_tthreshhigh = x; }
23 
24  inline float getETSat() const { return m_etsat; }
25  inline float getTTThreshlow() const { return m_tthreshlow; }
26  inline float getTTThreshhigh() const { return m_tthreshhigh; }
27 
28 private:
29  void prepareWrite() noexcept(false) override;
30 
32 
34 
35  void fetchData(std::map<EcalLogicID, FEConfigLUTParamDat>* fillMap, FEConfigLUTInfo* iconf) noexcept(false);
36 
37  // User data
38  float m_etsat;
39  float m_tthreshlow;
41 };
42 
43 #endif
std::string getTable() override
float getTTThreshlow() const
void prepareWrite() noexcept(false) override
float getTTThreshhigh() const
void writeDB(const EcalLogicID *ecid, const FEConfigLUTParamDat *item, FEConfigLUTInfo *iconf) noexcept(false)
void fetchData(std::map< EcalLogicID, FEConfigLUTParamDat > *fillMap, FEConfigLUTInfo *iconf) noexcept(false)
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80
void setTTThreshhigh(float x)
void writeArrayDB(const std::map< EcalLogicID, FEConfigLUTParamDat > *data, FEConfigLUTInfo *iconf) noexcept(false)
void setTTThreshlow(float x)