CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RunFEConfigDat.h
Go to the documentation of this file.
1 #ifndef RUNFECONFIGDAT_H
2 #define RUNFECONFIGDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
11 
12 class RunFEConfigDat : public IDataItem {
13  public:
14  friend class EcalCondDBInterface;
17 
18  // User data methods
19  inline std::string getTable() { return "RUN_FECONFIG_DAT"; }
20 
21  inline int getConfigId() const { return m_config; }
22  inline void setConfigId(int x) { m_config = x; }
23 
24  std::list<ODDelaysDat> getDelays();
25 
26  private:
27  void prepareWrite()
28  throw(std::runtime_error);
29 
30  void writeDB(const EcalLogicID* ecid, const RunFEConfigDat* item, RunIOV* iov )
31  throw(std::runtime_error);
32 
34  throw(std::runtime_error);
35 
36  // User data
37 
38  int m_config;
39 
40 };
41 
42 #endif
void setConfigId(int x)
void writeDB(const EcalLogicID *ecid, const RunFEConfigDat *item, RunIOV *iov)
tuple iov
Definition: o2o.py:307
void fetchData(std::map< EcalLogicID, RunFEConfigDat > *fillMap, RunIOV *iov)
std::string getTable()
int getConfigId() const
string const
Definition: compareJSON.py:14
std::list< ODDelaysDat > getDelays()
void fillMap(Registry *reg, regmap_type &fillme)
Definition: Registry.cc:24
x
Definition: VDTMath.h:216
Definition: RunIOV.h:13