CMS 3D CMS Logo

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