/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimGeneral/TrackingAnalysis/test/TrackingTruthOutputTest.h
18 строк
482 B
Sunanda
Remove some compilation warnings in SimGeneral/TrackingAnalysis
27 дек 2021, 20:16
27 дек 2021, 20:16
159c28c
Код
Авторство
О чём код?
#ifndef TrackingTruthOutputTest_h #define TrackingTruthOutputTest_h #include "FWCore/Framework/interface/one/EDAnalyzer.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" class TrackingTruthOutputTest : public edm::one::EDAnalyzer<> { public: explicit TrackingTruthOutputTest(const edm::ParameterSet &conf); ~TrackingTruthOutputTest() override {} void analyze(const edm::Event &e, const edm::EventSetup &c) override; private: edm::ParameterSet conf_; }; #endif