CMS 3D CMS Logo

FEConfigBadStripInfo.h
Go to the documentation of this file.
1 #ifndef FECONFIGBADStripINFO_H
2 #define FECONFIGBADStripINFO_H
3 
4 #include <map>
5 #include <string>
6 
8 
10 public:
11  friend class EcalCondDBInterface;
13  ~FEConfigBadStripInfo() override;
14 
15  // User data methods
16  inline std::string getTable() override { return "FE_CONFIG_BadST_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(FEConfigBadStripInfo* result) noexcept(false);
38 
39  // User data
40  int m_ID;
41  int m_version;
42 };
43 
44 #endif
int fetchID() noexcept(false)
void writeDB() noexcept(false)
void setParameters(const std::map< std::string, std::string > &my_keys_map)
int fetchNextId() noexcept(false)
void fetchData(FEConfigBadStripInfo *result) noexcept(false)
std::string getTable() override
void prepareWrite() noexcept(false) override