CMS 3D CMS Logo

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