/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimMuon/MCTruth/interface/CSCTruthTest.h
22 строки
683 B
W. David Dagenhart
Remove refs to PSet SimMuon and SimPPS
10 авг 2023, 00:17
10 авг 2023, 00:17
1e0f6b6
Код
Авторство
О чём код?
#ifndef MCTruth_CSCTruthTest_h #define MCTruth_CSCTruthTest_h #include "DataFormats/CSCRecHit/interface/CSCRecHit2DCollection.h" #include "FWCore/Framework/interface/ConsumesCollector.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/stream/EDAnalyzer.h" #include "SimMuon/MCTruth/interface/MuonTruth.h" class CSCTruthTest : public edm::stream::EDAnalyzer<> { public: explicit CSCTruthTest(const edm::ParameterSet &); ~CSCTruthTest() override = default; private: void analyze(const edm::Event &, const edm::EventSetup &) override; MuonTruth theTruth_; const edm::EDGetTokenT<CSCRecHit2DCollection> cscRecHitToken_; }; #endif