CMS 3D CMS Logo

MonRunOutcomeDef.h
Go to the documentation of this file.
1 #ifndef MONRUNOUTCOMEDEF_H
2 #define MONRUNOUTCOMEDEF_H
3 
4 #include <string>
5 #include <stdexcept>
6 
8 
12 class MonRunOutcomeDef : public IDef {
13 public:
14  friend class EcalCondDBInterface;
15 
17  ~MonRunOutcomeDef() override;
18 
19  // Methods for user data
20  std::string getShortDesc() const;
22 
23  std::string getLongDesc() const;
24 
25  // Methods from IUniqueDBObject
26  int fetchID() noexcept(false) override;
27  void setByID(int id) noexcept(false) override;
28 
29  // Operators
30  inline bool operator==(const MonRunOutcomeDef &d) const { return m_shortDesc == d.m_shortDesc; }
31  inline bool operator!=(const MonRunOutcomeDef &d) const { return m_shortDesc != d.m_shortDesc; }
32 
33 protected:
34  // User data for this def
37 
38  void fetchAllDefs(std::vector<MonRunOutcomeDef> *fillVec) noexcept(false);
39 };
40 
41 #endif
void setByID(int id) noexcept(false) override
void fetchAllDefs(std::vector< MonRunOutcomeDef > *fillVec) noexcept(false)
std::string m_shortDesc
bool operator!=(const MonRunOutcomeDef &d) const
void setShortDesc(std::string desc)
int fetchID() noexcept(false) override
std::string getLongDesc() const
d
Definition: ztail.py:151
Definition: IDef.h:11
std::string getShortDesc() const
std::string m_longDesc
~MonRunOutcomeDef() override