CMS 3D CMS Logo

QTestHandle.h
Go to the documentation of this file.
1 #ifndef QTestHandle_H
2 #define QTestHandle_H
3 
11 #include<string>
12 #include<vector>
13 #include<map>
14 
15 class DQMStore;
17 class QTestConfigure;
18 class QTestStatusChecker;
19 
21 public:
23  QTestHandle();
25  ~QTestHandle();
27  bool configureTests(const std::string &configFile, DQMStore *bei, bool UseDB=false);
29  void attachTests(DQMStore * bei, bool verboseQT=true);
31  std::pair<std::string,std::string> checkGlobalQTStatus(DQMStore *bei) const;
33  std::map< std::string, std::vector<std::string> > checkDetailedQTStatus(DQMStore *bei) const;
34 
35 private:
40 };
41 
42 
43 #endif
QTestHandle()
Creator.
Definition: QTestHandle.cc:21
std::map< std::string, std::vector< std::string > > checkDetailedQTStatus(DQMStore *bei) const
Checks alarms for single MonitorElements.
Definition: QTestHandle.cc:100
void attachTests(DQMStore *bei, bool verboseQT=true)
Attaches the quality tests to the MonitorElement.
Definition: QTestHandle.cc:65
~QTestHandle()
Destructor.
Definition: QTestHandle.cc:31
std::pair< std::string, std::string > checkGlobalQTStatus(DQMStore *bei) const
Checks global status of Quality Tests.
Definition: QTestHandle.cc:94
QTestConfigurationParser * qtParser
Definition: QTestHandle.h:36
QTestConfigure * qtConfigurer
Definition: QTestHandle.h:37
QTestStatusChecker * qtChecker
Definition: QTestHandle.h:38
bool testsConfigured
Definition: QTestHandle.h:39
bool configureTests(const std::string &configFile, DQMStore *bei, bool UseDB=false)
Parses Config File and configures the quality tests.
Definition: QTestHandle.cc:38