File indexing completed on 2023-03-17 10:47:46
0001 #ifndef CondTools_DQM_DQMSummarySourceHandler_h
0002 #define CondTools_DQM_DQMSummarySourceHandler_h
0003
0004 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0005 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0006
0007 #include "CondFormats/DQMObjects/interface/DQMSummary.h"
0008 #include <string>
0009
0010 namespace popcon {
0011 class DQMSummarySourceHandler : public popcon::PopConSourceHandler<DQMSummary> {
0012 public:
0013 DQMSummarySourceHandler(const edm::ParameterSet& pset);
0014 ~DQMSummarySourceHandler() override;
0015 void getNewObjects() override;
0016 std::string id() const override;
0017
0018 private:
0019 std::string m_name;
0020
0021 unsigned long long m_since;
0022
0023 std::string m_connectionString;
0024 std::string m_user;
0025 std::string m_pass;
0026 };
0027 }
0028
0029 #endif