1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef CondTools_DQM_DQMSummarySourceHandler_h
#define CondTools_DQM_DQMSummarySourceHandler_h
#include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
#include "CondCore/PopCon/interface/PopConSourceHandler.h"
//#include "CondFormats/Common/interface/Time.h"
#include "CondFormats/DQMObjects/interface/DQMSummary.h"
#include <string>
namespace popcon {
class DQMSummarySourceHandler : public popcon::PopConSourceHandler<DQMSummary> {
public:
DQMSummarySourceHandler(const edm::ParameterSet& pset);
~DQMSummarySourceHandler() override;
void getNewObjects() override;
std::string id() const override;
private:
std::string m_name;
//cond::Time_t m_since;
unsigned long long m_since;
// for reading from omds
std::string m_connectionString;
std::string m_user;
std::string m_pass;
};
} // namespace popcon
#endif
|