CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ODTCCEECycle.h
Go to the documentation of this file.
1 #ifndef ODTCCEECYCLE_H
2 #define ODTCCEECYCLE_H
3 
4 #include <stdexcept>
5 #include <iostream>
6 
8 
9 
10 
11 class ODTCCEECycle : public IODConfig {
12  public:
13  friend class EcalCondDBInterface;
14  friend class ODEcalCycle;
15 
16  ODTCCEECycle();
17  ~ODTCCEECycle();
18 
19  inline std::string getTable() { return "ECAL_TCC_EE_CYCLE"; }
20 
21  inline void setId(int id){m_ID=id;}
22  inline int getId()const{ return m_ID;} ;
23 
24  // Methods for user data
26  inline int getTCCConfigurationID() const{return m_tcc_ee_config_id;}
27 
28  // Operators
29  inline bool operator==(const ODTCCEECycle &m) const { return ( m_ID == m.m_ID); }
30  inline bool operator!=(const ODTCCEECycle &m) const { return !(*this == m); }
31 
32  private:
33  // User data
34  int m_ID;
36  void writeDB() throw(std::runtime_error);
37  void prepareWrite() throw(std::runtime_error);
38  void clear();
39  void fetchData(ODTCCEECycle * result) throw(std::runtime_error);
40  void insertConfig() throw(std::runtime_error);
41 
42 
43  // Methods from IUniqueDBObject
44  int fetchID() throw(std::runtime_error);
45  void setByID(int id) throw(std::runtime_error);
46 
47 
48 };
49 
50 #endif
void setId(int id)
Definition: ODTCCEECycle.h:21
bool operator==(const ODTCCEECycle &m) const
Definition: ODTCCEECycle.h:29
int getId() const
Definition: ODTCCEECycle.h:22
int getTCCConfigurationID() const
Definition: ODTCCEECycle.h:26
bool operator!=(const ODTCCEECycle &m) const
Definition: ODTCCEECycle.h:30
void setTCCConfigurationID(int x)
Definition: ODTCCEECycle.h:25
tuple result
Definition: query.py:137
void fetchData(ODTCCEECycle *result)
void setByID(int id)
int m_tcc_ee_config_id
Definition: ODTCCEECycle.h:35
void writeDB()
Definition: ODTCCEECycle.cc:41
void prepareWrite()
Definition: ODTCCEECycle.cc:26
void insertConfig()
x
Definition: VDTMath.h:216
std::string getTable()
Definition: ODTCCEECycle.h:19