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;
21  void setShortDesc(std::string desc);
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
std::string getShortDesc() const
void setByID(int id) noexcept(false) override
void fetchAllDefs(std::vector< MonRunOutcomeDef > *fillVec) noexcept(false)
std::string m_shortDesc
void setShortDesc(std::string desc)
std::string getLongDesc() const
int fetchID() noexcept(false) override
bool operator!=(const MonRunOutcomeDef &d) const
Definition: IDef.h:11
#define noexcept
std::string m_longDesc
~MonRunOutcomeDef() override