CMS 3D CMS Logo

DCUVFETempDat.h
Go to the documentation of this file.
1 #ifndef DCUVFETEMPDAT_H
2 #define DCUVFETEMPDAT_H
3 
4 #include <map>
5 #include <stdexcept>
6 
11 
12 class DCUVFETempDat : public IDataItem {
13 public:
14  friend class EcalCondDBInterface;
15  DCUVFETempDat();
16  ~DCUVFETempDat() override;
17 
18  // User data methods
19  inline std::string getTable() override { return "DCU_VFE_TEMP_DAT"; }
20 
21  inline void setVFETemp(float temp) { m_vfeTemp = temp; }
22  inline float getVFETemp() const { return m_vfeTemp; }
23 
24 private:
25  void prepareWrite() noexcept(false) override;
26 
27  void writeDB(const EcalLogicID* ecid, const DCUVFETempDat* item, DCUIOV* iov) noexcept(false);
28 
30 
31  void fetchData(std::map<EcalLogicID, DCUVFETempDat>* fillVec, DCUIOV* iov) noexcept(false);
32 
33  // User data
34  float m_vfeTemp;
35 };
36 
37 #endif
std::string getTable() override
Definition: DCUVFETempDat.h:19
void writeArrayDB(const std::map< EcalLogicID, DCUVFETempDat > *data, DCUIOV *iov) noexcept(false)
float getVFETemp() const
Definition: DCUVFETempDat.h:22
~DCUVFETempDat() override
Definition: DCUIOV.h:13
void prepareWrite() noexcept(false) override
void writeDB(const EcalLogicID *ecid, const DCUVFETempDat *item, DCUIOV *iov) noexcept(false)
void fetchData(std::map< EcalLogicID, DCUVFETempDat > *fillVec, DCUIOV *iov) noexcept(false)
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
void setVFETemp(float temp)
Definition: DCUVFETempDat.h:21