CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FEConfigTimingInfo.h
Go to the documentation of this file.
1 #ifndef FECONFIGTIMING_H
2 #define FECONFIGTIMING_H
3 
4 #include <map>
5 #include <string>
6 
10 
11 class FEConfigTimingInfo : public IODConfig {
12  public:
13  friend class EcalCondDBInterface;
14 
17 
18  // Methods for user data
19  inline std::string getTable() { return "FE_CONFIG_TIME_INFO"; }
20 
21 
22  inline void setId(int id) { m_ID = id; }
23  inline int getId() const { return m_ID; }
24  // for compatibility
25  void setID(int id) {setId(id);}
26  int getID() { return getId() ;}
27  // the tag is already in IODConfig
28  inline void setVersion(int id) { m_version = id; }
29  inline int getVersion() const { return m_version; }
30 
31 
32  Tm getDBTime() const{ return m_db_time;}
33  void setDBTime(const Tm& x) { m_db_time=x; }
34 
35 
36  // Methods from IUniqueDBObject
37  int fetchID() throw(std::runtime_error);
38  int fetchNextId() throw(std::runtime_error);
39  void setByID(int id) throw(std::runtime_error);
40  void setParameters(const std::map<std::string,std::string>& my_keys_map);
41 
42  // operators
43  inline bool operator==(const FEConfigTimingInfo &r) const { return (m_ID == r.m_ID ); }
44  inline bool operator!=(const FEConfigTimingInfo &r) const { return !(*this == r); }
45 
46  private:
47  // User data for this IOV
48  int m_ID;
50  int m_version;
51 
52  void prepareWrite() throw(std::runtime_error);
53  void writeDB() throw(std::runtime_error);
54  void clear();
55  void fetchData(FEConfigTimingInfo * result) throw(std::runtime_error);
56  void fetchLastData(FEConfigTimingInfo * result) throw(std::runtime_error);
57 
58 
59 };
60 
61 
62 #endif
tuple result
Definition: query.py:137
void fetchLastData(FEConfigTimingInfo *result)
string const
Definition: compareJSON.py:14
std::string getTable()
void fetchData(FEConfigTimingInfo *result)
void setDBTime(const Tm &x)
void setParameters(const std::map< std::string, std::string > &my_keys_map)
Definition: Tm.h:13
bool operator!=(const FEConfigTimingInfo &r) const