CMS 3D CMS Logo

RunCommentDat.h
Go to the documentation of this file.
1 #ifndef RUNCOMMENTDAT_H
2 #define RUNCOMMENTDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
11 class RunCommentDat : public IDataItem {
12  public:
13  friend class EcalCondDBInterface;
14  RunCommentDat();
16 
17  // User data methods
18  inline std::string getTable() { return "RUN_COMMENT_DAT"; }
19 
20  inline void setSource(std::string x) { m_source = x; }
21  inline std::string getSource() const { return m_source; }
22  inline void setComment(std::string x) { m_comment = x; }
23  inline std::string getComment() const { return m_comment; }
24  inline void setDBTime(const Tm& x) {m_time=x;}
25  inline Tm getDBTime() const {return m_time;}
26 
27  private:
28  void prepareWrite()
29  noexcept(false);
30 
31  void writeDB(const EcalLogicID* ecid, const RunCommentDat* item, RunIOV* iov )
32  noexcept(false);
33 
34  void fetchData(std::map< EcalLogicID, RunCommentDat >* fillMap, RunIOV* iov)
35  noexcept(false);
36 
37  // User data
41 };
42 
43 #endif
std::string getComment() const
Definition: RunCommentDat.h:23
Tm getDBTime() const
Definition: RunCommentDat.h:25
void setSource(std::string x)
Definition: RunCommentDat.h:20
#define noexcept
std::string m_source
Definition: RunCommentDat.h:38
std::string m_comment
Definition: RunCommentDat.h:39
std::string getSource() const
Definition: RunCommentDat.h:21
void setDBTime(const Tm &x)
Definition: RunCommentDat.h:24
void fetchData(std::map< EcalLogicID, RunCommentDat > *fillMap, RunIOV *iov) noexcept(false)
std::string getTable()
Definition: RunCommentDat.h:18
void writeDB(const EcalLogicID *ecid, const RunCommentDat *item, RunIOV *iov) noexcept(false)
Definition: RunIOV.h:13
void setComment(std::string x)
Definition: RunCommentDat.h:22
void prepareWrite() noexcept(false)
Definition: Tm.h:13