Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-11 04:32:30

0001 #ifndef DQM_GEM_GEMEffByGEMCSCSegmentClient_h
0002 #define DQM_GEM_GEMEffByGEMCSCSegmentClient_h
0003 
0004 /** \class GEMEffByGEMCSCSegmentClient
0005  * 
0006  * `GEMEffByGEMCSCSegmentSource` measures the efficiency of GE11-L1(2) using GE11-L2(1) and ME11 as trigger detectors.
0007  * See https://github.com/cms-sw/cmssw/blob/CMSSW_12_3_0_pre5/RecoLocalMuon/GEMCSCSegment/plugins/GEMCSCSegAlgoRR.cc
0008  *
0009  * \author Seungjin Yang <seungjin.yang@cern.ch>
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  // DQM_GEM_GEMEffByGEMCSCSegmentClient_h