Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:26

0001 #ifndef DQM_GEM_GEMEfficiencyHarvester_h
0002 #define DQM_GEM_GEMEfficiencyHarvester_h
0003 
0004 /** \class GEMEfficiencyHarvester
0005  * 
0006  * DQM monitoring client for GEM efficiency and resolution
0007  * based on Validation/MuonGEMHits/MuonGEMBaseHarvestor
0008  *
0009  * TODO bookSummaryPlot
0010  *
0011  * \author Seungjin Yang <seungjin.yang@cern.ch>
0012  */
0013 
0014 #include "DQM/GEM/interface/GEMDQMEfficiencyClientBase.h"
0015 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0016 
0017 class GEMEfficiencyHarvester : public GEMDQMEfficiencyClientBase {
0018 public:
0019   GEMEfficiencyHarvester(const edm::ParameterSet&);
0020   ~GEMEfficiencyHarvester() override;
0021   static void fillDescriptions(edm::ConfigurationDescriptions&);
0022   void dqmEndJob(DQMStore::IBooker&, DQMStore::IGetter&) override;
0023 
0024 private:
0025   void bookDetector1DEfficiency(DQMStore::IBooker&, DQMStore::IGetter&, const std::string&);
0026 
0027   const std::vector<std::string> kFolders_;
0028 };
0029 
0030 #endif  // DQM_GEM_GEMEfficiencyHarvester_h