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
|
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDAnalyzer.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Utilities/interface/StreamID.h"
namespace edmtest {
class UnitTestClient_E : public edm::global::EDAnalyzer<> {
public:
explicit UnitTestClient_E(edm::ParameterSet const&) {}
void analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const override;
};
void UnitTestClient_E::analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const {
edm::LogInfo("expect_overall_unnamed") << "The following outputs are expected: \n"
<< "unlisted_category appearing in events 1,2,3,4,5,10,15,25,45 \n";
edm::LogInfo("expect_overall_specific") << "The following outputs are expected: \n"
<< "lim3bydefault appearing in events 1,2,3,6,9,15,27 \n";
edm::LogInfo("expect_supercede_specific") << "The following outputs are expected: \n"
<< "lim2bycommondefault appearing in events 1,2,3,4,5,6,7,8,16,24,40 \n";
edm::LogInfo("expect_non_supercede_common_specific")
<< "The following outputs are expected: \n"
<< "lim2bycommondefault appearing in events 1,2,4,6,10,18,34 \n";
edm::LogInfo("expect_specific") << "The following outputs are expected: \n"
<< "lim0bydefaults appearing in events 1,2,3,4,5,6,12,18,30 \n";
for (int i = 1; i <= 50; ++i) {
edm::LogInfo("unlisted_category") << "message with overall default limit of 5: " << i;
edm::LogInfo("lim3bydefault") << "message with specific overall default limit of 3: " << i;
edm::LogInfo("lim2bycommondefault") << "message with specific overall default limit of 2: " << i;
edm::LogInfo("lim0bydefaults") << "message with overall default and dest default limit of 0: " << i;
// edm::LogInfo ("lim3bydefault") <<
// "message with overall default limit (superceded) of 2: " << i;
}
}
} // namespace edmtest
using edmtest::UnitTestClient_E;
DEFINE_FWK_MODULE(UnitTestClient_E);
|