File indexing completed on 2024-04-06 12:02:48
0001
0002
0003
0004
0005
0006
0007
0008 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0009 #include "FWCore/Framework/interface/Event.h"
0010
0011 #include "FWCore/Framework/interface/EventSetup.h"
0012 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0013 class DTHVStatus;
0014 class DTHVStatusRcd;
0015 class DTHVStatusValidateDBRead : public edm::one::EDAnalyzer<> {
0016 public:
0017 explicit DTHVStatusValidateDBRead(edm::ParameterSet const& p);
0018 explicit DTHVStatusValidateDBRead(int i);
0019 ~DTHVStatusValidateDBRead() override = default;
0020 void analyze(const edm::Event& e, const edm::EventSetup& c) override;
0021 void endJob() override;
0022
0023 private:
0024 std::string dataFileName;
0025 std::string elogFileName;
0026 edm::ESGetToken<DTHVStatus, DTHVStatusRcd> dthvstatusToken_;
0027 };