/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Validation/MuonCSCDigis/interface/CSCStripDigiValidation.h
39 строк
1 KB
Sven Dildick
More CSC TP diagnostic plots
29 сен 2021, 18:23
29 сен 2021, 18:23
d48a4e0
Код
Авторство
О чём код?
#ifndef Validation_MuonCSCDigis_CSCStripDigiValidation_H #define Validation_MuonCSCDigis_CSCStripDigiValidation_H #include "FWCore/Framework/interface/ConsumesCollector.h" #include "DQMServices/Core/interface/DQMStore.h" #include "DataFormats/CSCDigi/interface/CSCStripDigiCollection.h" #include "Validation/MuonCSCDigis/interface/CSCBaseValidation.h" class CSCStripDigiValidation : public CSCBaseValidation { public: CSCStripDigiValidation(const edm::ParameterSet &ps, edm::ConsumesCollector &&iC); ~CSCStripDigiValidation() override; void bookHistograms(DQMStore::IBooker &); void analyze(const edm::Event &e, const edm::EventSetup &) override; void plotResolution(const PSimHit &hit, int strip, const CSCLayer *layer, int chamberType); private: void fillPedestalPlots(const CSCStripDigi &digi); void fillSignalPlots(const CSCStripDigi &digi); edm::EDGetTokenT<CSCStripDigiCollection> strips_Token_; edm::InputTag inputTag_; float thePedestalSum; float thePedestalCovarianceSum; int thePedestalCount; MonitorElement *thePedestalPlot; MonitorElement *thePedestalTimeCorrelationPlot; MonitorElement *thePedestalNeighborCorrelationPlot; MonitorElement *theAmplitudePlot; MonitorElement *theRatio4to5Plot; MonitorElement *theRatio6to5Plot; MonitorElement *theNDigisPerLayerPlot; MonitorElement *theNDigisPerChamberPlot; MonitorElement *theNDigisPerEventPlot; }; #endif