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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
#include "FWCore/Framework/interface/stream/EDFilter.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "DataFormats/TestObjects/interface/Thing.h"
#include "DataFormats/TestObjects/interface/ToyProducts.h"
#include "DataFormats/Provenance/interface/ProductDescriptionFwd.h"
#include "FWCore/Framework/interface/GetterOfProducts.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/ModuleLabelMatch.h"
#include "FWCore/Framework/interface/ProcessMatch.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/BranchType.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <iostream>
#include <string>
#include <vector>
namespace edm {
class Event;
class EventSetup;
} // namespace edm
namespace edmtest {
class TestGetterOfProducts : public edm::stream::EDFilter<> {
public:
explicit TestGetterOfProducts(edm::ParameterSet const&);
~TestGetterOfProducts() override;
bool filter(edm::Event&, edm::EventSetup const&) override;
private:
std::string processName_;
std::vector<std::string> expectedInputTagLabels_;
std::vector<std::string> expectedLabelsAfterGet_;
edm::GetterOfProducts<Thing> getterOfProducts_;
};
TestGetterOfProducts::TestGetterOfProducts(edm::ParameterSet const& par)
: processName_(par.getParameter<std::string>("processName")),
expectedInputTagLabels_(par.getParameter<std::vector<std::string> >("expectedInputTagLabels")),
expectedLabelsAfterGet_(par.getParameter<std::vector<std::string> >("expectedLabelsAfterGet")),
getterOfProducts_(edm::ProcessMatch(processName_), this) {
callWhenNewProductsRegistered(getterOfProducts_);
}
TestGetterOfProducts::~TestGetterOfProducts() {}
bool TestGetterOfProducts::filter(edm::Event& event, edm::EventSetup const&) {
// These are the InputTag's of the products the getter will look for.
// These are the matching products in the ProductRegistry, but they
// may or may not be in a particular Event.
auto const& tokens = getterOfProducts_.tokens();
if (expectedInputTagLabels_.size() != tokens.size()) {
std::cerr << "Expected number of InputTag's differs from actual number.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << expectedInputTagLabels_.size() << " actual value = " << tokens.size()
<< std::endl;
abort();
}
std::vector<std::string>::const_iterator iter = expectedInputTagLabels_.begin();
for (auto const& token : tokens) {
edm::EDConsumerBase::Labels labels;
labelsForToken(token, labels);
if (*iter != labels.module) {
throw cms::Exception("Failed Test")
<< "Expected InputTag differs from actual InputTag.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << *iter << " actual value = " << labels.module << std::endl;
}
++iter;
}
// A handle is added to this vector for each product that is found in the event.
std::vector<edm::Handle<Thing> > handles;
getterOfProducts_.fillHandles(event, handles);
if (expectedLabelsAfterGet_.size() != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << expectedLabelsAfterGet_.size() << " actual value = " << handles.size() << std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != *iter) {
throw cms::Exception("Failed Test")
<< "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << *iter << " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
return true;
}
// -----------------------------------------------------------------------------------------------------------
// Very similar to the above class with these differences.
// 1. The is an EDAnalyzer instead of a EDFilter
// 2. It gets multiple types of products so there are
// two GetterOfProducts objects.
// 3. Initialize one of the GetterOfProducts later in the
// constructor.
// 4. It can be configured to get things from the Run, LuminosityBlock,
// or Event.
class TestGetterOfProductsA : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::WatchLuminosityBlocks> {
public:
explicit TestGetterOfProductsA(edm::ParameterSet const&);
~TestGetterOfProductsA() override;
void analyze(edm::Event const&, edm::EventSetup const&) override;
void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
void endRun(edm::Run const&, edm::EventSetup const&) override;
void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {}
void beginRun(edm::Run const&, edm::EventSetup const&) override {}
private:
std::string processName_;
edm::BranchType branchType_;
std::vector<std::string> expectedInputTagLabels_;
std::vector<std::string> expectedLabelsAfterGet_;
unsigned expectedNumberOfThingsWithLabelA_;
edm::GetterOfProducts<IntProduct> getterOfIntProducts_;
edm::GetterOfProducts<Thing> getterOfProducts_;
edm::GetterOfProducts<Thing> getterUsingLabel_;
};
TestGetterOfProductsA::TestGetterOfProductsA(edm::ParameterSet const& par)
: processName_(par.getParameter<std::string>("processName")),
branchType_(edm::InEvent),
expectedInputTagLabels_(par.getParameter<std::vector<std::string> >("expectedInputTagLabels")),
expectedLabelsAfterGet_(par.getParameter<std::vector<std::string> >("expectedLabelsAfterGet")),
expectedNumberOfThingsWithLabelA_(par.getParameter<unsigned>("expectedNumberOfThingsWithLabelA")),
getterOfIntProducts_(),
getterOfProducts_(),
getterUsingLabel_() {
int bt = par.getParameter<int>("branchType");
if (bt == 1)
branchType_ = edm::InLumi;
else if (bt == 2)
branchType_ = edm::InRun;
getterOfIntProducts_ = edm::GetterOfProducts<IntProduct>(edm::ProcessMatch(processName_), this);
getterOfProducts_ = edm::GetterOfProducts<Thing>(edm::ProcessMatch(processName_), this, branchType_);
getterUsingLabel_ = edm::GetterOfProducts<Thing>(edm::ModuleLabelMatch("A"), this, branchType_);
callWhenNewProductsRegistered([this](edm::ProductDescription const& bd) {
getterOfIntProducts_(bd);
getterOfProducts_(bd);
getterUsingLabel_(bd);
});
}
TestGetterOfProductsA::~TestGetterOfProductsA() {}
void TestGetterOfProductsA::analyze(edm::Event const& event, edm::EventSetup const&) {
if (branchType_ != edm::InEvent)
return;
auto const& tokens = getterOfProducts_.tokens();
if (expectedInputTagLabels_.size() != tokens.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of InputTag's differs from actual number.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << expectedInputTagLabels_.size() << " actual value = " << tokens.size() << std::endl;
}
std::vector<std::string>::const_iterator iter = expectedInputTagLabels_.begin();
for (auto const& token : tokens) {
edm::EDConsumerBase::Labels labels;
labelsForToken(token, labels);
if (*iter != labels.module) {
throw cms::Exception("Failed Test")
<< "Expected InputTag differs from actual InputTag.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << *iter << " actual value = " << labels.module << std::endl;
}
++iter;
}
std::vector<edm::Handle<Thing> > handles;
getterOfProducts_.fillHandles(event, handles);
if (expectedLabelsAfterGet_.size() != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << expectedLabelsAfterGet_.size() << " actual value = " << handles.size() << std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != *iter) {
throw cms::Exception("Failed Test")
<< "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << *iter << " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
getterUsingLabel_.fillHandles(event, handles);
if (expectedNumberOfThingsWithLabelA_ != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products with module label A gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "Expected value = " << expectedNumberOfThingsWithLabelA_ << " actual value = " << handles.size()
<< std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != std::string("A")) {
throw cms::Exception("Failed Test") << "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::filter\n"
<< "For this get a module label \"A\" is always expected "
<< " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
}
void TestGetterOfProductsA::endLuminosityBlock(edm::LuminosityBlock const& lumi, edm::EventSetup const&) {
if (branchType_ != edm::InLumi)
return;
auto const& tokens = getterOfProducts_.tokens();
if (expectedInputTagLabels_.size() != tokens.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of InputTag's differs from actual number.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "Expected value = " << expectedInputTagLabels_.size() << " actual value = " << tokens.size() << std::endl;
}
std::vector<std::string>::const_iterator iter = expectedInputTagLabels_.begin();
for (auto const& token : tokens) {
edm::EDConsumerBase::Labels labels;
labelsForToken(token, labels);
if (*iter != labels.module) {
throw cms::Exception("Failed Test")
<< "Expected InputTag differs from actual InputTag.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "Expected value = " << *iter << " actual value = " << labels.module << std::endl;
}
++iter;
}
std::vector<edm::Handle<Thing> > handles;
getterOfProducts_.fillHandles(lumi, handles);
if (expectedLabelsAfterGet_.size() != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "Expected value = " << expectedLabelsAfterGet_.size() << " actual value = " << handles.size() << std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != *iter) {
throw cms::Exception("Failed Test")
<< "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "Expected value = " << *iter << " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
getterUsingLabel_.fillHandles(lumi, handles);
if (expectedNumberOfThingsWithLabelA_ != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products with module label A gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "Expected value = " << expectedNumberOfThingsWithLabelA_ << " actual value = " << handles.size()
<< std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != std::string("A")) {
throw cms::Exception("Failed Test") << "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::endLuminosityBlock\n"
<< "For this get a module label \"A\" is always expected "
<< " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
}
void TestGetterOfProductsA::endRun(edm::Run const& run, edm::EventSetup const&) {
if (branchType_ != edm::InRun)
return;
auto const& tokens = getterOfProducts_.tokens();
if (expectedInputTagLabels_.size() != tokens.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of InputTag's differs from actual number.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "Expected value = " << expectedInputTagLabels_.size() << " actual value = " << tokens.size() << std::endl;
}
std::vector<std::string>::const_iterator iter = expectedInputTagLabels_.begin();
for (auto const& token : tokens) {
edm::EDConsumerBase::Labels labels;
labelsForToken(token, labels);
if (*iter != labels.module) {
throw cms::Exception("Failed Test")
<< "Expected InputTag differs from actual InputTag.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "Expected value = " << *iter << " actual value = " << labels.module << std::endl;
}
++iter;
}
std::vector<edm::Handle<Thing> > handles;
getterOfProducts_.fillHandles(run, handles);
if (expectedLabelsAfterGet_.size() != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "Expected value = " << expectedLabelsAfterGet_.size() << " actual value = " << handles.size() << std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != *iter) {
throw cms::Exception("Failed Test")
<< "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "Expected value = " << *iter << " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
getterUsingLabel_.fillHandles(run, handles);
if (expectedNumberOfThingsWithLabelA_ != handles.size()) {
throw cms::Exception("Failed Test")
<< "Expected number of products with module label A gotten differs from actual number.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "Expected value = " << expectedNumberOfThingsWithLabelA_ << " actual value = " << handles.size()
<< std::endl;
}
iter = expectedLabelsAfterGet_.begin();
for (auto const& handle : handles) {
if (handle.provenance()->moduleLabel() != std::string("A")) {
throw cms::Exception("Failed Test") << "Expected module label after get differs from actual module label.\n"
<< "In function TestGetterOfProducts::endRun\n"
<< "For this get a module label \"A\" is always expected "
<< " actual value = " << handle.provenance()->moduleLabel() << std::endl;
break;
}
++iter;
}
}
} // namespace edmtest
using namespace edmtest;
DEFINE_FWK_MODULE(TestGetterOfProducts);
DEFINE_FWK_MODULE(TestGetterOfProductsA);
|