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 
10 
11 class ODLaserCycle : public IODConfig {
12  public:
13  friend class EcalCondDBInterface;
14  friend class ODEcalCycle;
15 
16  ODLaserCycle();
17  ~ODLaserCycle() override;
18 
19  inline std::string getTable() override { return "ECAL_Laser_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 getLaserConfigurationID() const{return m_laser_config_id;}
27 
28  // Operators
29  inline bool operator==(const ODLaserCycle &m) const { return ( m_ID == m.m_ID); }
30  inline bool operator!=(const ODLaserCycle &m) const { return !(*this == m); }
31 
32  private:
33  // User data
34  int m_ID;
36  void writeDB() noexcept(false);
37  void prepareWrite() noexcept(false) override;
38  void clear();
39  void fetchData(ODLaserCycle * result) noexcept(false);
40  void insertConfig() noexcept(false);
41 
42 
43  // Methods from IUniqueDBObject
44  int fetchID() noexcept(false);
45  void setByID(int id) noexcept(false);
46 
47 
48 };
49 
50 #endif
void setId(int id)
Definition: ODLaserCycle.h:21
#define noexcept
int fetchID() noexcept(false)
Definition: ODLaserCycle.cc:71
void fetchData(ODLaserCycle *result) noexcept(false)
~ODLaserCycle() override
Definition: ODLaserCycle.cc:21
int m_laser_config_id
Definition: ODLaserCycle.h:35
void setByID(int id) noexcept(false)
std::string getTable() override
Definition: ODLaserCycle.h:19
void writeDB() noexcept(false)
Definition: ODLaserCycle.cc:41
void prepareWrite() noexcept(false) override
Definition: ODLaserCycle.cc:26
int getId() const
Definition: ODLaserCycle.h:22
bool operator==(const ODLaserCycle &m) const
Definition: ODLaserCycle.h:29
int getLaserConfigurationID() const
Definition: ODLaserCycle.h:26
bool operator!=(const ODLaserCycle &m) const
Definition: ODLaserCycle.h:30
void setLaserConfigurationID(int x)
Definition: ODLaserCycle.h:25
void insertConfig() noexcept(false)