test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DCUCapsuleTempDat.h
Go to the documentation of this file.
1 #ifndef DCUCAPSULETEMPDAT_H
2 #define DCUCAPSULETEMPDAT_H
3 
4 #include <map>
5 #include <stdexcept>
6 
11 
12 class DCUCapsuleTempDat : public IDataItem {
13  public:
14  friend class EcalCondDBInterface;
17 
18  // User data methods
19  inline std::string getTable() { return "DCU_CAPSULE_TEMP_DAT"; }
20 
21  inline void setCapsuleTemp(float temp) { m_capsuleTemp = temp; }
22  inline float getCapsuleTemp() const { return m_capsuleTemp; }
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, DCUCapsuleTempDat >* fillVec, DCUIOV* iov)
35  throw(std::runtime_error);
36 
37  // User data
39 
40 };
41 
42 #endif
Definition: DCUIOV.h:13
std::string getTable()
float getCapsuleTemp() const
tuple iov
Definition: o2o.py:307
void writeArrayDB(const std::map< EcalLogicID, DCUCapsuleTempDat > *data, DCUIOV *iov)
string const
Definition: compareJSON.py:14
void fetchData(std::map< EcalLogicID, DCUCapsuleTempDat > *fillVec, DCUIOV *iov)
void writeDB(const EcalLogicID *ecid, const DCUCapsuleTempDat *item, DCUIOV *iov)
void setCapsuleTemp(float temp)