File indexing completed on 2024-04-06 12:12:48
0001 #ifndef FWCore_MessageService_test_UnitTestClient_L_h
0002 #define FWCore_MessageService_test_UnitTestClient_L_h
0003
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0006
0007 namespace edm {
0008 class ParameterSet;
0009 }
0010
0011 namespace edmtest {
0012
0013 class UnitTestClient_L : public edm::one::EDAnalyzer<> {
0014 public:
0015 explicit UnitTestClient_L(edm::ParameterSet const&) {}
0016
0017 void analyze(edm::Event const& e, edm::EventSetup const& c) final;
0018
0019 private:
0020 };
0021
0022 class UnitTestClient_L1 : public edm::one::EDAnalyzer<> {
0023 public:
0024 explicit UnitTestClient_L1(edm::ParameterSet const&) {}
0025
0026 void analyze(edm::Event const& e, edm::EventSetup const& c) final;
0027
0028 private:
0029 };
0030
0031 }
0032
0033 #endif