/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/MessageService/test/PSetTestClient_A.h
32 строки
757 B
Chris Jones
Remove use of legacy module classes from framework tests
05 окт 2021, 17:09
05 окт 2021, 17:09
9c36c49
Код
Авторство
О чём код?
#ifndef FWCore_MessageService_test_PSetTestClient_A_h #define FWCore_MessageService_test_PSetTestClient_A_h #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/global/EDAnalyzer.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include <vector> namespace edm { class ParameterSet; } namespace edmtest { class PSetTestClient_A : public edm::global::EDAnalyzer<> { public: explicit PSetTestClient_A(edm::ParameterSet const& p); void analyze(edm::StreamID, edm::Event const& e, edm::EventSetup const& c) const final; private: edm::ParameterSet a; edm::ParameterSet b; int xa; int xb; }; } // namespace edmtest #endif // FWCore_MessageService_test_PSetTestClient_A_h