CMS 3D CMS Logo

ODLTSCycle.h
Go to the documentation of this file.
1 #ifndef ODLTSCYCLE_H
2 #define ODLTSCYCLE_H
3 
4 #include <stdexcept>
5 #include <iostream>
6 
8 
9 class ODLTSCycle : public IODConfig {
10 public:
11  friend class EcalCondDBInterface;
12  friend class ODEcalCycle;
13 
14  ODLTSCycle();
15  ~ODLTSCycle() override;
16 
17  inline std::string getTable() override { return "ECAL_LTS_CYCLE"; }
18 
19  inline void setId(int id) { m_ID = id; }
20  inline int getId() const { return m_ID; };
21 
22  // Methods for user data
23  inline void setLTSConfigurationID(int x) { m_lts_config_id = x; }
24  inline int getLTSConfigurationID() const { return m_lts_config_id; }
25 
26  // Operators
27  inline bool operator==(const ODLTSCycle &m) const { return (m_ID == m.m_ID); }
28  inline bool operator!=(const ODLTSCycle &m) const { return !(*this == m); }
29 
30 private:
31  // User data
32  int m_ID;
34  void writeDB() noexcept(false);
35  void prepareWrite() noexcept(false) override;
36  void clear();
37  void fetchData(ODLTSCycle *result) noexcept(false);
38  void insertConfig() noexcept(false);
39 
40  // Methods from IUniqueDBObject
41  int fetchID() noexcept(false);
42  void setByID(int id) noexcept(false);
43 };
44 
45 #endif
~ODLTSCycle() override
Definition: ODLTSCycle.cc:19
void setId(int id)
Definition: ODLTSCycle.h:19
int getLTSConfigurationID() const
Definition: ODLTSCycle.h:24
void fetchData(ODLTSCycle *result) noexcept(false)
Definition: ODLTSCycle.cc:109
bool operator!=(const ODLTSCycle &m) const
Definition: ODLTSCycle.h:28
int getId() const
Definition: ODLTSCycle.h:20
bool operator==(const ODLTSCycle &m) const
Definition: ODLTSCycle.h:27
std::string getTable() override
Definition: ODLTSCycle.h:17
void writeDB() noexcept(false)
Definition: ODLTSCycle.cc:34
void clear()
Definition: ODLTSCycle.cc:54
void setByID(int id) noexcept(false)
Definition: ODLTSCycle.cc:86
int fetchID() noexcept(false)
Definition: ODLTSCycle.cc:56
void setLTSConfigurationID(int x)
Definition: ODLTSCycle.h:23
void prepareWrite() noexcept(false) override
Definition: ODLTSCycle.cc:21
int m_lts_config_id
Definition: ODLTSCycle.h:33
void insertConfig() noexcept(false)
Definition: ODLTSCycle.cc:134