CMS 3D CMS Logo

FEConfigLinInfo.h
Go to the documentation of this file.
1 #ifndef FECONFIGLIN_H
2 #define FECONFIGLIN_H
3 
4 #include <map>
5 #include <string>
6 
10 
11 class FEConfigLinInfo : public IODConfig {
12  public:
13  friend class EcalCondDBInterface;
14 
16  ~FEConfigLinInfo() override;
17 
18  // Methods for user data
19  inline std::string getTable() override { return "FE_CONFIG_LIN_INFO"; }
20 
21 
22  inline void setIOVId(int iov_id){ m_iov_id = iov_id; }
23  int getIOVId() const{return m_iov_id; }
24 
25  inline void setId(int id) { m_ID = id; }
26  inline int getId() const { return m_ID; }
27  // for compatibility
28  void setID(int id) {setId(id);}
29  int getID() { return getId() ;}
30  // the tag is already in IODConfig
31  inline void setVersion(int id) { m_version = id; }
32  inline int getVersion() const { return m_version; }
33 
34 
35  Tm getDBTime() const{ return m_db_time;}
36  void setDBTime(const Tm& x) { m_db_time=x; }
37 
38 
39  // Methods from IUniqueDBObject
40  int fetchID() noexcept(false);
41  int fetchNextId() noexcept(false);
42  void setByID(int id) noexcept(false);
43  void setParameters(const std::map<std::string,std::string>& my_keys_map);
44 
45  // operators
46  inline bool operator==(const FEConfigLinInfo &r) const { return (m_ID == r.m_ID ); }
47  inline bool operator!=(const FEConfigLinInfo &r) const { return !(*this == r); }
48 
49  private:
50  // User data for this IOV
51  int m_iov_id ;
52  int m_ID;
54  int m_version;
55 
56  void prepareWrite() noexcept(false) override;
57  void writeDB() noexcept(false);
58  void clear();
59  void fetchData(FEConfigLinInfo * result) noexcept(false);
60  void fetchLastData(FEConfigLinInfo * result) noexcept(false);
61 
62 
63 };
64 
65 
66 #endif
bool operator!=(const FEConfigLinInfo &r) const
int getVersion() const
Tm getDBTime() const
#define noexcept
void setIOVId(int iov_id)
void setId(int id)
void prepareWrite() noexcept(false) override
void setParameters(const std::map< std::string, std::string > &my_keys_map)
bool operator==(const FEConfigLinInfo &r) const
int getIOVId() const
void fetchData(FEConfigLinInfo *result) noexcept(false)
int fetchNextId() noexcept(false)
void setVersion(int id)
void fetchLastData(FEConfigLinInfo *result) noexcept(false)
void setByID(int id) noexcept(false)
int fetchID() noexcept(false)
void setDBTime(const Tm &x)
~FEConfigLinInfo() override
void writeDB() noexcept(false)
Definition: Tm.h:13
void setID(int id)
int getId() const
std::string getTable() override