CMS 3D CMS Logo

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() noexcept(false);
39  void prepareWrite() noexcept(false);
40  void clear();
41  void fetchData(ODCCSCycle * result) noexcept(false);
42 
43  void insertConfig() noexcept(false);
44 
45  // Methods from IUniqueDBObject
46  int fetchID() noexcept(false);
47  void setByID(int id) noexcept(false);
48 
49 
50 };
51 
52 #endif
int m_ccs_config_id
Definition: ODCCSCycle.h:37
#define noexcept
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
bool operator!=(const ODCCSCycle &m) const
Definition: ODCCSCycle.h:30
void writeDB() noexcept(false)
Definition: ODCCSCycle.cc:41
void insertConfig() noexcept(false)
Definition: ODCCSCycle.cc:158
void prepareWrite() noexcept(false)
Definition: ODCCSCycle.cc:26
void fetchData(ODCCSCycle *result) noexcept(false)
Definition: ODCCSCycle.cc:131
int getCCSConfigurationID() const
Definition: ODCCSCycle.h:26
int fetchID() noexcept(false)
Definition: ODCCSCycle.cc:71
void setCCSConfigurationID(int x)
Definition: ODCCSCycle.h:25
void setByID(int id) noexcept(false)
Definition: ODCCSCycle.cc:104
int getId() const
Definition: ODCCSCycle.h:22