CMS 3D CMS Logo

Container.h
Go to the documentation of this file.
1 #ifndef Container_h
2 #define Container_h
3 
4 /*
5  * file: Container.h
6  * Author: Viktor Khristenko
7  *
8  * Description:
9  * Container Base class
10  *
11  *
12  */
13 
16 
17 #include <string>
18 #include <vector>
19 
20 namespace hcaldqm {
21  class Container {
22  public:
25 
26  Container() : _folder("HcalInfo"), _qname("SomeQuantity") {}
27  Container(std::string const &folder, std::string const &qname) : _folder(folder), _qname(qname) {}
28  virtual ~Container() {}
29 
30  virtual void initialize(std::string const &folder, std::string const &qname, int debug = 0) {
31  _folder = folder;
32  _qname = qname;
34  }
35 
36  protected:
40  };
41 } // namespace hcaldqm
42 
43 #endif
Definition: Logger.h:6
virtual void initialize(std::string const &folder, std::string const &qname, int debug=0)
Definition: Container.h:30
virtual ~Container()
Definition: Container.h:28
void set(std::string const &name, int debug=0)
Definition: Logger.h:29
dqm::legacy::MonitorElement MonitorElement
Definition: Container.h:24
Container(std::string const &folder, std::string const &qname)
Definition: Container.h:27
std::string _folder
Definition: Container.h:37
#define debug
Definition: HDRShower.cc:19
std::string _qname
Definition: Container.h:38
dqm::legacy::DQMStore DQMStore
Definition: Container.h:23