File indexing completed on 2024-09-11 04:32:30
0001 #ifndef DQM_GEM_GEMEffByGEMCSCSegmentClient_h
0002 #define DQM_GEM_GEMEffByGEMCSCSegmentClient_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "DQM/GEM/interface/GEMDQMEfficiencyClientBase.h"
0013 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0014
0015 class GEMEffByGEMCSCSegmentClient : public GEMDQMEfficiencyClientBase {
0016 public:
0017 GEMEffByGEMCSCSegmentClient(const edm::ParameterSet &);
0018 ~GEMEffByGEMCSCSegmentClient() override {}
0019 static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
0020
0021 protected:
0022 void dqmEndLuminosityBlock(DQMStore::IBooker &,
0023 DQMStore::IGetter &,
0024 edm::LuminosityBlock const &,
0025 edm::EventSetup const &) override;
0026
0027 void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override {}
0028
0029 const std::string kFolder_;
0030 };
0031
0032 #endif