Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:47

0001 #ifndef Validation_MuonCSCDigis_CSCStubResolutionValidation_H
0002 #define Validation_MuonCSCDigis_CSCStubResolutionValidation_H
0003 
0004 #include "Validation/MuonCSCDigis/interface/CSCBaseValidation.h"
0005 
0006 #include <string>
0007 
0008 class CSCStubMatcher;
0009 
0010 class CSCStubResolutionValidation : public CSCBaseValidation {
0011 public:
0012   CSCStubResolutionValidation(const edm::ParameterSet &pset, edm::ConsumesCollector &&iC);
0013   ~CSCStubResolutionValidation() override;
0014 
0015   void bookHistograms(DQMStore::IBooker &);
0016   void analyze(const edm::Event &, const edm::EventSetup &) override;
0017 
0018 private:
0019   std::unique_ptr<CSCStubMatcher> cscStubMatcher_;
0020 
0021   // resolution for each CSC TP; 10 CSC stations;
0022   MonitorElement *posresCLCT_hs[10];
0023   MonitorElement *posresCLCT_qs[10];
0024   MonitorElement *posresCLCT_es[10];
0025 
0026   MonitorElement *bendresCLCT[10];
0027 
0028   edm::EDGetTokenT<edm::SimVertexContainer> simVertexInput_;
0029   edm::EDGetTokenT<edm::SimTrackContainer> simTrackInput_;
0030 };
0031 
0032 #endif