CMS 3D CMS Logo

ODLaserCycle.h
Go to the documentation of this file.
1 #ifndef ODLASERCYCLE_H
2 #define ODLASERCYCLE_H
3 
4 #include <stdexcept>
5 #include <iostream>
6 
8 
9 class ODLaserCycle : public IODConfig {
10 public:
11  friend class EcalCondDBInterface;
12  friend class ODEcalCycle;
13 
14  ODLaserCycle();
15  ~ODLaserCycle() override;
16 
17  inline std::string getTable() override { return "ECAL_Laser_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 setLaserConfigurationID(int x) { m_laser_config_id = x; }
24  inline int getLaserConfigurationID() const { return m_laser_config_id; }
25 
26  // Operators
27  inline bool operator==(const ODLaserCycle &m) const { return (m_ID == m.m_ID); }
28  inline bool operator!=(const ODLaserCycle &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(ODLaserCycle *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
void setId(int id)
Definition: ODLaserCycle.h:19
int getId() const
Definition: ODLaserCycle.h:20
int fetchID() noexcept(false)
Definition: ODLaserCycle.cc:56
bool operator==(const ODLaserCycle &m) const
Definition: ODLaserCycle.h:27
void fetchData(ODLaserCycle *result) noexcept(false)
int getLaserConfigurationID() const
Definition: ODLaserCycle.h:24
~ODLaserCycle() override
Definition: ODLaserCycle.cc:19
int m_laser_config_id
Definition: ODLaserCycle.h:33
void setByID(int id) noexcept(false)
Definition: ODLaserCycle.cc:86
std::string getTable() override
Definition: ODLaserCycle.h:17
bool operator!=(const ODLaserCycle &m) const
Definition: ODLaserCycle.h:28
void writeDB() noexcept(false)
Definition: ODLaserCycle.cc:34
void prepareWrite() noexcept(false) override
Definition: ODLaserCycle.cc:21
void setLaserConfigurationID(int x)
Definition: ODLaserCycle.h:23
void insertConfig() noexcept(false)