CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ODDCCCycle.h
Go to the documentation of this file.
1 #ifndef ODDCCCYCLE_H
2 #define ODDCCCYCLE_H
3 
4 #include <stdexcept>
5 #include <iostream>
6 
8 
9 
10 
11 class ODDCCCycle : public IODConfig {
12  public:
13  friend class EcalCondDBInterface;
14  friend class ODEcalCycle;
15 
16  ODDCCCycle();
17  ~ODDCCCycle();
18 
19  inline std::string getTable() { return "ECAL_DCC_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 getDCCConfigurationID() const{return m_dcc_config_id;}
27 
28  // Operators
29  inline bool operator==(const ODDCCCycle &m) const { return ( m_ID == m.m_ID); }
30  inline bool operator!=(const ODDCCCycle &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(ODDCCCycle * 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 writeDB()
Definition: ODDCCCycle.cc:41
void setByID(int id)
Definition: ODDCCCycle.cc:104
int getId() const
Definition: ODDCCCycle.h:22
void setDCCConfigurationID(int x)
Definition: ODDCCCycle.h:25
tuple result
Definition: query.py:137
std::string getTable()
Definition: ODDCCCycle.h:19
int fetchID()
Definition: ODDCCCycle.cc:71
void fetchData(ODDCCCycle *result)
Definition: ODDCCCycle.cc:131
int m_dcc_config_id
Definition: ODDCCCycle.h:35
bool operator!=(const ODDCCCycle &m) const
Definition: ODDCCCycle.h:30
void prepareWrite()
Definition: ODDCCCycle.cc:26
bool operator==(const ODDCCCycle &m) const
Definition: ODDCCCycle.h:29
int getDCCConfigurationID() const
Definition: ODDCCCycle.h:26
void clear()
Definition: ODDCCCycle.cc:66
x
Definition: VDTMath.h:216
void setId(int id)
Definition: ODDCCCycle.h:21
void insertConfig()
Definition: ODDCCCycle.cc:158