/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/CastorMonitor/interface/CastorRecHitMonitor.h
55 строк
2 KB
Shahzad Malik Muzaffar
[DQM] Remove unnecessary include statements to avoid private header dep
13 авг 2021, 11:18
13 авг 2021, 11:18
f824ae8
Код
Авторство
О чём код?
#ifndef DQM_CASTORMONITOR_CASTORRECHITMONITOR_H #define DQM_CASTORMONITOR_CASTORRECHITMONITOR_H #include "DQMServices/Core/interface/DQMStore.h" //#include "DataFormats/HcalRecHit/interface/CastorRecHit.h" #include "DataFormats/HcalRecHit/interface/HcalRecHitCollections.h" #include "DataFormats/CastorReco/interface/CastorCluster.h" #include "DataFormats/CastorReco/interface/CastorJet.h" #include "DataFormats/CastorReco/interface/CastorTower.h" #include "DataFormats/JetReco/interface/BasicJet.h" #include "DataFormats/JetReco/interface/BasicJetCollection.h" #include "DataFormats/JetReco/interface/CastorJetID.h" #include "DataFormats/JetReco/interface/Jet.h" #include "RecoJets/JetProducers/interface/CastorJetIDHelper.h" #include "DataFormats/Common/interface/TriggerResults.h" class CastorRecHitMonitor { public: typedef dqm::legacy::DQMStore DQMStore; typedef dqm::legacy::MonitorElement MonitorElement; CastorRecHitMonitor(const edm::ParameterSet &ps); ~CastorRecHitMonitor(); void bookHistograms(DQMStore::IBooker &, edm::Run const &); void processEvent(const CastorRecHitCollection &castorHits); void processEventTowers(const reco::CastorTowerCollection &castorTowers); void processEventJets(const reco::BasicJetCollection &Jets); private: int fVerbosity = 0; int ievt_; float energyInEachChannel[14][16]; std::string subsystemname; MonitorElement *hTowerE; MonitorElement *hTowerDepth; MonitorElement *h2TowerEMhad; MonitorElement *hTowerMultipl; MonitorElement *hJetsMultipl; MonitorElement *hJetEnergy; MonitorElement *hJetEta; MonitorElement *hJetPhi; TH2F *h2RecHitMap; MonitorElement *h2RHchan; MonitorElement *h2RHvsSec; MonitorElement *h2RHmap; MonitorElement *h2RHoccmap; MonitorElement *h2RHentriesMap; MonitorElement *hRHtime, *hallchan; }; #endif