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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
namespace edmtest {
class UTC_V1
: public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::WatchLuminosityBlocks, edm::WatchProcessBlock> {
public:
explicit UTC_V1(edm::ParameterSet const& ps) : ev(0) {
identifier = ps.getUntrackedParameter<int>("identifier", 99);
}
void analyze(edm::Event const&, edm::EventSetup const&) override;
void beginJob() override;
void beginRun(edm::Run const&, edm::EventSetup const&) override;
void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {}
void endRun(edm::Run const&, edm::EventSetup const&) override {}
void beginProcessBlock(edm::ProcessBlock const&) override;
void endProcessBlock(edm::ProcessBlock const&) override;
private:
int identifier;
int ev;
};
class UTC_V2 : public edm::one::EDAnalyzer<> {
public:
explicit UTC_V2(edm::ParameterSet const& ps) : ev(0) {
identifier = ps.getUntrackedParameter<int>("identifier", 98);
}
void analyze(edm::Event const&, edm::EventSetup const&) override;
private:
int identifier;
int ev;
};
void UTC_V1::analyze(edm::Event const&, edm::EventSetup const&) {
edm::LogError("cat_A") << "T1 analyze error with identifier " << identifier << " event " << ev;
edm::LogWarning("cat_A") << "T1 analyze warning with identifier " << identifier << " event " << ev;
edm::LogInfo("cat_A") << "T1 analyze info with identifier " << identifier << " event " << ev;
LogDebug("cat_A") << "T1 analyze debug with identifier " << identifier << " event " << ev;
ev++;
}
void UTC_V1::beginJob() {
edm::LogWarning("cat_BJ") << "T1 beginJob warning with identifier " << identifier << " event " << ev;
LogDebug("cat_BJ") << "T1 beginJob debug with identifier " << identifier << " event " << ev;
}
void UTC_V1::beginRun(edm::Run const&, edm::EventSetup const&) {
edm::LogInfo("cat_BR") << "T1 beginRun info with identifier " << identifier << " event " << ev;
LogDebug("cat_BR") << "T1 beginRun debug with identifier " << identifier << " event " << ev;
}
void UTC_V1::beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) {
edm::LogWarning("cat_BL") << "T1 beginLumi warning with identifier " << identifier << " event " << ev;
LogDebug("cat_BL") << "T1 beginLumi debug with identifier " << identifier << " event " << ev;
}
void UTC_V1::beginProcessBlock(edm::ProcessBlock const&) {
edm::LogInfo("cat_BPB") << "T1 beginProcessBlock info with identifier " << identifier << " event " << ev;
LogDebug("cat_BPB") << "T1 beginProcessBlock debug with identifier " << identifier << " event " << ev;
}
void UTC_V1::endProcessBlock(edm::ProcessBlock const&) {
edm::LogInfo("cat_EPB") << "T1 endProcessBlock info with identifier " << identifier << " event " << ev;
LogDebug("cat_EPB") << "T1 endProcessBlock debug with identifier " << identifier << " event " << ev;
}
void UTC_V2::analyze(edm::Event const&, edm::EventSetup const&) {
edm::LogError("cat_A") << "T1 analyze error with identifier " << identifier << " event " << ev;
edm::LogWarning("cat_A") << "T1 analyze warning with identifier " << identifier << " event " << ev;
edm::LogInfo("cat_A") << "T1 analyze info with identifier " << identifier << " event " << ev;
ev++;
}
} // end namespace edmtest
using edmtest::UTC_V1;
using edmtest::UTC_V2;
DEFINE_FWK_MODULE(UTC_V1);
DEFINE_FWK_MODULE(UTC_V2);
|