1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#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
|