CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
QTestHandle.h
Go to the documentation of this file.
1 #ifndef QTestHandle_H
2 #define QTestHandle_H
3 
13 #include<string>
14 #include<vector>
15 #include<map>
16 
17 class DQMStore;
19 class QTestConfigure;
20 class QTestStatusChecker;
21 
23 public:
25  QTestHandle();
27  ~QTestHandle();
29  bool configureTests(const std::string &configFile, DQMStore *bei, bool UseDB=false);
31  void attachTests(DQMStore * bei, bool verboseQT=true);
33  std::pair<std::string,std::string> checkGlobalQTStatus(DQMStore *bei) const;
35  std::map< std::string, std::vector<std::string> > checkDetailedQTStatus(DQMStore *bei) const;
36 
37 private:
42 };
43 
44 
45 #endif
QTestHandle()
Creator.
Definition: QTestHandle.cc:20
std::map< std::string, std::vector< std::string > > checkDetailedQTStatus(DQMStore *bei) const
Checks alarms for single MonitorElements.
Definition: QTestHandle.cc:97
void attachTests(DQMStore *bei, bool verboseQT=true)
Attaches the quality tests to the MonitorElement.
Definition: QTestHandle.cc:64
~QTestHandle()
Destructor.
Definition: QTestHandle.cc:30
std::pair< std::string, std::string > checkGlobalQTStatus(DQMStore *bei) const
Checks global status of Quality Tests.
Definition: QTestHandle.cc:91
QTestConfigurationParser * qtParser
Definition: QTestHandle.h:38
QTestConfigure * qtConfigurer
Definition: QTestHandle.h:39
QTestStatusChecker * qtChecker
Definition: QTestHandle.h:40
bool testsConfigured
Definition: QTestHandle.h:41
bool configureTests(const std::string &configFile, DQMStore *bei, bool UseDB=false)
Parses Config File and configures the quality tests.
Definition: QTestHandle.cc:37