CMS 3D CMS Logo

ODFEDelaysInfo.h
Go to the documentation of this file.
1 #ifndef ODFEDELAYSINFO_H
2 #define ODFEDELAYSINFO_H
3 
4 #include <map>
5 #include <string>
6 
8 
9 class ODFEDelaysInfo : public IODConfig {
10 public:
11  friend class EcalCondDBInterface;
13  ~ODFEDelaysInfo() override;
14 
15  // User data methods
16  inline std::string getTable() override { return "DELAYS_INFO"; }
17 
18  inline void setId(int id) { m_ID = id; }
19  inline int getId() const { return m_ID; }
20 
21  // the tag is already in IODConfig
22 
23  inline void setVersion(int id) { m_version = id; }
24  inline int getVersion() const { return m_version; }
25  int fetchID() noexcept(false);
26 
27  int fetchNextId() noexcept(false);
28  void setParameters(const std::map<std::string, std::string>& my_keys_map);
29 
30 private:
31  void prepareWrite() noexcept(false) override;
32 
33  void writeDB() noexcept(false);
34 
35  void clear();
36 
37  void fetchData(ODFEDelaysInfo* result) noexcept(false);
38 
39  // User data
40  int m_ID;
41  int m_version;
42 };
43 
44 #endif
void writeDB() noexcept(false)
int fetchID() noexcept(false)
void fetchData(ODFEDelaysInfo *result) noexcept(false)
void setVersion(int id)
int getVersion() const
void setParameters(const std::map< std::string, std::string > &my_keys_map)
std::string getTable() override
void prepareWrite() noexcept(false) override
void setId(int id)
int getId() const
~ODFEDelaysInfo() override
int fetchNextId() noexcept(false)