CMS 3D CMS Logo

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