CMS 3D CMS Logo

FEConfigLinParamDat.h
Go to the documentation of this file.
1 #ifndef FECONFLINPARAMDAT_H
2 #define FECONFLINPARAMDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
12 public:
13  friend class EcalCondDBInterface;
15  ~FEConfigLinParamDat() override;
16 
17  // User data methods
18  inline std::string getTable() override { return "FE_CONFIG_LINPARAM_DAT"; }
19 
20  inline void setETSat(float x) { m_etsat = x; }
21 
22  inline float getETSat() const { return m_etsat; }
23 
24 private:
25  void prepareWrite() noexcept(false) override;
26 
28 
30 
31  void fetchData(std::map<EcalLogicID, FEConfigLinParamDat>* fillMap, FEConfigLinInfo* iconf) noexcept(false);
32 
33  // User data
34  float m_etsat;
35 };
36 
37 #endif
std::string getTable() override
void writeArrayDB(const std::map< EcalLogicID, FEConfigLinParamDat > *data, FEConfigLinInfo *iconf) noexcept(false)
void prepareWrite() noexcept(false) override
void writeDB(const EcalLogicID *ecid, const FEConfigLinParamDat *item, FEConfigLinInfo *iconf) noexcept(false)
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80
void fetchData(std::map< EcalLogicID, FEConfigLinParamDat > *fillMap, FEConfigLinInfo *iconf) noexcept(false)