CMS 3D CMS Logo

RunTTErrorsDat.h
Go to the documentation of this file.
1 #ifndef RUNTTERRORSDAT_H
2 #define RUNTTERRORSDAT_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 #include <cstdint>
11 
12 class RunTTErrorsDat : public IDataItem {
13 public:
14  friend class EcalCondDBInterface;
16  ~RunTTErrorsDat() override;
17 
18  // User data methods
19  inline std::string getTable() override { return "RUN_TT_ERRORS_DAT"; }
20 
22  inline uint64_t getErrorBits() const { return m_errorBits; }
23 
24 private:
25  void prepareWrite() noexcept(false) override;
26 
27  void writeDB(const EcalLogicID* ecid, const RunTTErrorsDat* item, RunIOV* iov) noexcept(false);
28 
29  void fetchData(std::map<EcalLogicID, RunTTErrorsDat>* fillMap, RunIOV* iov) noexcept(false);
30 
31  // User data
33 };
34 
35 #endif
uint64_t m_errorBits
~RunTTErrorsDat() override
void setErrorBits(uint64_t bits)
void writeDB(const EcalLogicID *ecid, const RunTTErrorsDat *item, RunIOV *iov) noexcept(false)
std::string getTable() override
uint64_t getErrorBits() const
void fetchData(std::map< EcalLogicID, RunTTErrorsDat > *fillMap, RunIOV *iov) noexcept(false)
unsigned long long uint64_t
Definition: Time.h:13
Definition: RunIOV.h:13
void prepareWrite() noexcept(false) override