CMS 3D CMS Logo

RunLaserRunDat.h
Go to the documentation of this file.
1 #ifndef RUNLASERRUNDAT_H
2 #define RUNLASERRUNDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
11 class RunLaserRunDat : public IDataItem {
12  public:
13  friend class EcalCondDBInterface;
16 
17  // User data methods
18  inline std::string getTable() { return "RUN_LASERRUN_CONFIG_DAT"; }
19 
21  inline std::string getLaserSequenceType() const { return m_laserSeqType; }
22  //
24  inline std::string getLaserSequenceCond() const { return m_laserSeqCond; }
25 
26  private:
27  void prepareWrite()
28  noexcept(false);
29 
30  void writeDB(const EcalLogicID* ecid, const RunLaserRunDat* item, RunIOV* iov )
31  noexcept(false);
32 
33  void fetchData(std::map< EcalLogicID, RunLaserRunDat >* fillMap, RunIOV* iov)
34  noexcept(false);
35 
36  // User data
39 };
40 
41 #endif
#define noexcept
std::string m_laserSeqCond
void writeDB(const EcalLogicID *ecid, const RunLaserRunDat *item, RunIOV *iov) noexcept(false)
void fetchData(std::map< EcalLogicID, RunLaserRunDat > *fillMap, RunIOV *iov) noexcept(false)
void prepareWrite() noexcept(false)
std::string getLaserSequenceCond() const
std::string getTable()
std::string getLaserSequenceType() const
std::string m_laserSeqType
void setLaserSequenceCond(std::string x)
void setLaserSequenceType(std::string x)
Definition: RunIOV.h:13