/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/MessageService/test/UnitTestClient_L.h
33 строки
800 B
Christopher Jones
Removed legacy EDAnalyzer interface
11 янв 2023, 22:29
11 янв 2023, 22:29
870fdfa
Код
Авторство
О чём код?
#ifndef FWCore_MessageService_test_UnitTestClient_L_h #define FWCore_MessageService_test_UnitTestClient_L_h #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/one/EDAnalyzer.h" namespace edm { class ParameterSet; } namespace edmtest { class UnitTestClient_L : public edm::one::EDAnalyzer<> { public: explicit UnitTestClient_L(edm::ParameterSet const&) {} void analyze(edm::Event const& e, edm::EventSetup const& c) final; private: }; class UnitTestClient_L1 : public edm::one::EDAnalyzer<> { public: explicit UnitTestClient_L1(edm::ParameterSet const&) {} void analyze(edm::Event const& e, edm::EventSetup const& c) final; private: }; } // namespace edmtest #endif // FWCore_MessageService_test_UnitTestClient_L_h