/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Validation/CSCRecHits/interface/CSCRecHit2DValidation.h
33 строки
1 KB
Sven Dildick
CSCRecHit validation clean-up
09 мар 2021, 04:41
09 мар 2021, 04:41
362c485
Код
Авторство
О чём код?
#ifndef Validation_CSCRecHits_CSCRecHit2DValidation_h #define Validation_CSCRecHits_CSCRecHit2DValidation_h #include "Validation/MuonCSCDigis/interface/CSCBaseValidation.h" #include "DataFormats/CSCRecHit/interface/CSCRecHit2DCollection.h" #include "FWCore/Framework/interface/ConsumesCollector.h" class CSCRecHit2DValidation : public CSCBaseValidation { public: CSCRecHit2DValidation(const edm::ParameterSet &ps, edm::ConsumesCollector &&iC); ~CSCRecHit2DValidation() override; void bookHistograms(DQMStore::IBooker &); void analyze(const edm::Event &, const edm::EventSetup &) override; private: edm::EDGetTokenT<CSCRecHit2DCollection> rechits_Token_; edm::InputTag inputTag_; void plotResolution(const PSimHit &simHit, const CSCRecHit2D &recHit, const CSCLayer *layer, int chamberType); MonitorElement *theNPerEventPlot; MonitorElement *theResolutionPlots[10]; MonitorElement *thePullPlots[10]; MonitorElement *theYResolutionPlots[10]; MonitorElement *theYPullPlots[10]; MonitorElement *theScatterPlots[10]; MonitorElement *theSimHitScatterPlots[10]; MonitorElement *theRecHitPosInStrip[10]; MonitorElement *theSimHitPosInStrip[10]; MonitorElement *theTPeaks[10]; }; #endif