CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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();
17 
18  // User data methods
19  inline std::string getTable() { 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()
26  throw(std::runtime_error);
27 
29  throw(std::runtime_error);
30 
32  throw(std::runtime_error);
33 
34  void fetchData(std::map< EcalLogicID, DCUVFETempDat >* fillVec, DCUIOV* iov)
35  throw(std::runtime_error);
36 
37  // User data
38  float m_vfeTemp;
39 
40 };
41 
42 #endif
Definition: DCUIOV.h:13
void fetchData(std::map< EcalLogicID, DCUVFETempDat > *fillVec, DCUIOV *iov)
tuple iov
Definition: o2o.py:307
void prepareWrite()
void writeArrayDB(const std::map< EcalLogicID, DCUVFETempDat > *data, DCUIOV *iov)
void writeDB(const EcalLogicID *ecid, const DCUVFETempDat *item, DCUIOV *iov)
string const
Definition: compareJSON.py:14
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
std::string getTable()
Definition: DCUVFETempDat.h:19
void setVFETemp(float temp)
Definition: DCUVFETempDat.h:21
float getVFETemp() const
Definition: DCUVFETempDat.h:22