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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
|
/*----------------------------------------------------------------------
Toy edm::one::EDProducer modules of
edm::one cache classes and edm::*Producer classes
for testing purposes only.
----------------------------------------------------------------------*/
#include <atomic>
#include <memory>
#include <tuple>
#include <vector>
#include "DataFormats/TestObjects/interface/ToyProducts.h"
#include "FWCore/Framework/interface/CacheHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/moduleAbilities.h"
#include "FWCore/Framework/interface/one/EDProducer.h"
#include "FWCore/Framework/interface/ProcessBlock.h"
#include "FWCore/Framework/interface/Run.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/BranchType.h"
#include "FWCore/Utilities/interface/EDMException.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Utilities/interface/InputTag.h"
namespace edmtest {
namespace one {
class SharedResourcesProducer : public edm::one::EDProducer<edm::one::SharedResources> {
public:
explicit SharedResourcesProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
usesResource("foo");
}
const unsigned int trans_;
unsigned int m_count = 0;
void produce(edm::Event&, edm::EventSetup const&) override { ++m_count; }
~SharedResourcesProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "SharedResourcesProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class WatchRunsProducer : public edm::one::EDProducer<edm::one::WatchRuns> {
public:
explicit WatchRunsProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
}
bool br = false;
bool er = false;
const unsigned int trans_;
unsigned int m_count = 0;
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
if (!br || er) {
throw cms::Exception("out of sequence") << " produce before beginRun or after endRun";
}
}
void beginRun(edm::Run const&, edm::EventSetup const&) override {
++m_count;
if (br) {
throw cms::Exception("out of sequence") << " beginRun seen multiple times";
}
br = true;
er = false;
}
void endRun(edm::Run const&, edm::EventSetup const&) override {
++m_count;
if (!br) {
throw cms::Exception("out of sequence") << " endRun before beginRun";
}
br = false;
er = true;
}
~WatchRunsProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "WatchRunsProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class WatchLumiBlocksProducer : public edm::one::EDProducer<edm::one::WatchLuminosityBlocks> {
public:
explicit WatchLumiBlocksProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
}
const unsigned int trans_;
bool bl = false;
bool el = false;
unsigned int m_count = 0;
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
if (!bl || el) {
throw cms::Exception("out of sequence") << " produce before beginLumiBlock or after endLumiBlock";
}
}
void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {
++m_count;
if (bl) {
throw cms::Exception("out of sequence") << " beginLumiBlock seen mutiple times";
}
bl = true;
el = false;
}
void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {
++m_count;
if (!bl) {
throw cms::Exception("out of sequence") << " endLumiBlock before beginLumiBlock";
}
bl = false;
el = true;
}
~WatchLumiBlocksProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "WatchLumiBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
namespace prdr {
struct Cache {
bool begin = true;
bool end = false;
};
} // namespace prdr
class RunCacheProducer : public edm::one::EDProducer<edm::RunCache<prdr::Cache>> {
public:
explicit RunCacheProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
}
const unsigned int trans_;
mutable std::atomic<unsigned int> m_count = 0;
void produce(edm::Event& iEvent, edm::EventSetup const&) override {
++m_count;
auto c = runCache(iEvent.getRun().index());
if (nullptr == c) {
throw cms::Exception("Missing cache") << " no cache in analyze";
}
if (!c->begin || c->end) {
throw cms::Exception("out of sequence") << " produce before beginRun or after endRun";
}
}
std::shared_ptr<prdr::Cache> globalBeginRun(edm::Run const&, edm::EventSetup const&) const final {
++m_count;
return std::make_shared<prdr::Cache>();
}
void globalEndRun(edm::Run const& iRun, edm::EventSetup const&) final {
++m_count;
auto c = runCache(iRun.index());
if (nullptr == c) {
throw cms::Exception("Missing cache") << " no cache in globalEndRun";
}
if (!c->begin) {
throw cms::Exception("out of sequence") << " endRun before beginRun";
}
c->begin = false;
c->end = true;
}
~RunCacheProducer() {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "WatchRunsAnalyzer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class LumiBlockCacheProducer : public edm::one::EDProducer<edm::LuminosityBlockCache<prdr::Cache>> {
public:
explicit LumiBlockCacheProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
}
const unsigned int trans_;
mutable std::atomic<unsigned int> m_count = 0;
void produce(edm::Event& iEvent, edm::EventSetup const&) override {
++m_count;
auto c = luminosityBlockCache(iEvent.getLuminosityBlock().index());
if (nullptr == c) {
throw cms::Exception("Missing cache") << " no cache in analyze";
}
if (!c->begin || c->end) {
throw cms::Exception("out of sequence") << " produce before beginLumiBlock or after endLumiBlock";
}
}
std::shared_ptr<prdr::Cache> globalBeginLuminosityBlock(edm::LuminosityBlock const&,
edm::EventSetup const&) const final {
++m_count;
return std::make_shared<prdr::Cache>();
}
void globalEndLuminosityBlock(edm::LuminosityBlock const& iLumi, edm::EventSetup const&) override {
++m_count;
auto c = luminosityBlockCache(iLumi.index());
if (!c->begin) {
throw cms::Exception("out of sequence") << " endLumiBlock before beginLumiBlock";
}
c->begin = false;
c->end = true;
}
~LumiBlockCacheProducer() {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "WatchLumiBlocksAnalyzer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class ProcessBlockIntProducer : public edm::one::EDProducer<edm::WatchProcessBlock> {
public:
explicit ProcessBlockIntProducer(edm::ParameterSet const& pset) : trans_(pset.getParameter<int>("transitions")) {
produces<unsigned int>();
{
auto tag = pset.getParameter<edm::InputTag>("consumesBeginProcessBlock");
if (not tag.label().empty()) {
getTokenBegin_ = consumes<unsigned int, edm::InProcess>(tag);
}
}
{
auto tag = pset.getParameter<edm::InputTag>("consumesEndProcessBlock");
if (not tag.label().empty()) {
getTokenEnd_ = consumes<unsigned int, edm::InProcess>(tag);
}
}
}
void beginProcessBlock(edm::ProcessBlock const& processBlock) override {
if (m_count != 0) {
throw cms::Exception("transitions")
<< "ProcessBlockIntProducer::begin transitions " << m_count << " but it was supposed to be " << 0;
}
++m_count;
const unsigned int valueToGet = 11;
if (not getTokenBegin_.isUninitialized()) {
if (processBlock.get(getTokenBegin_) != valueToGet) {
throw cms::Exception("BadValue")
<< "expected " << valueToGet << " but got " << processBlock.get(getTokenBegin_);
}
}
}
void produce(edm::Event&, edm::EventSetup const&) override {
if (m_count < 1u) {
throw cms::Exception("out of sequence") << "produce before beginProcessBlock " << m_count;
}
++m_count;
}
void endProcessBlock(edm::ProcessBlock const& processBlock) override {
++m_count;
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "ProcessBlockIntProducer::end transitions " << m_count << " but it was supposed to be " << trans_;
}
{
const unsigned int valueToGet = 11;
if (not getTokenBegin_.isUninitialized()) {
if (processBlock.get(getTokenBegin_) != valueToGet) {
throw cms::Exception("BadValue")
<< "expected " << valueToGet << " but got " << processBlock.get(getTokenBegin_);
}
}
}
{
const unsigned int valueToGet = 21;
if (not getTokenEnd_.isUninitialized()) {
if (processBlock.get(getTokenEnd_) != valueToGet) {
throw cms::Exception("BadValue")
<< "expected " << valueToGet << " but got " << processBlock.get(getTokenEnd_);
}
}
}
}
~ProcessBlockIntProducer() {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "ProcessBlockIntProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
private:
const unsigned int trans_;
mutable std::atomic<unsigned int> m_count{0};
edm::EDGetTokenT<unsigned int> getTokenBegin_;
edm::EDGetTokenT<unsigned int> getTokenEnd_;
};
class TestBeginProcessBlockProducer : public edm::one::EDProducer<edm::BeginProcessBlockProducer> {
public:
explicit TestBeginProcessBlockProducer(edm::ParameterSet const& pset)
: trans_(pset.getParameter<int>("transitions")),
token_(produces<unsigned int, edm::Transition::BeginProcessBlock>("begin")) {
produces<unsigned int>();
auto tag = pset.getParameter<edm::InputTag>("consumesBeginProcessBlock");
if (not tag.label().empty()) {
getToken_ = consumes<unsigned int, edm::InProcess>(tag);
}
}
void beginProcessBlockProduce(edm::ProcessBlock& processBlock) override {
if (m_count != 0) {
throw cms::Exception("transitions")
<< "TestBeginProcessBlockProducer transitions " << m_count << " but it was supposed to be " << 0;
}
++m_count;
const unsigned int valueToPutAndGet = 11;
processBlock.emplace(token_, valueToPutAndGet);
if (not getToken_.isUninitialized()) {
if (processBlock.get(getToken_) != valueToPutAndGet) {
throw cms::Exception("BadValue")
<< "expected " << valueToPutAndGet << " but got " << processBlock.get(getToken_);
}
}
}
void produce(edm::Event&, edm::EventSetup const&) override {
if (m_count < 1u) {
throw cms::Exception("out of sequence") << "produce before beginProcessBlockProduce " << m_count;
}
++m_count;
}
~TestBeginProcessBlockProducer() {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestBeginProcessBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
private:
const unsigned int trans_;
mutable std::atomic<unsigned int> m_count{0};
edm::EDPutTokenT<unsigned int> token_;
edm::EDGetTokenT<unsigned int> getToken_;
};
class TestEndProcessBlockProducer : public edm::one::EDProducer<edm::EndProcessBlockProducer> {
public:
explicit TestEndProcessBlockProducer(edm::ParameterSet const& pset)
: trans_(pset.getParameter<int>("transitions")),
token_(produces<unsigned int, edm::Transition::EndProcessBlock>("end")) {
produces<unsigned int>();
auto tag = pset.getParameter<edm::InputTag>("consumesEndProcessBlock");
if (not tag.label().empty()) {
getToken_ = consumes<unsigned int, edm::InProcess>(tag);
}
}
void produce(edm::Event&, edm::EventSetup const&) override { ++m_count; }
void endProcessBlockProduce(edm::ProcessBlock& processBlock) override {
++m_count;
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestEndProcessBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
const unsigned int valueToPutAndGet = 21;
processBlock.emplace(token_, valueToPutAndGet);
if (not getToken_.isUninitialized()) {
if (processBlock.get(getToken_) != valueToPutAndGet) {
throw cms::Exception("BadValue")
<< "expected " << valueToPutAndGet << " but got " << processBlock.get(getToken_);
}
}
}
~TestEndProcessBlockProducer() {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "~TestEndProcessBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
private:
const unsigned int trans_;
mutable std::atomic<unsigned int> m_count{0};
edm::EDPutTokenT<unsigned int> token_;
edm::EDGetTokenT<unsigned int> getToken_;
};
class TestBeginRunProducer : public edm::one::EDProducer<edm::one::WatchRuns, edm::BeginRunProducer> {
public:
explicit TestBeginRunProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
produces<unsigned int, edm::Transition::BeginRun>("a");
}
const unsigned int trans_;
unsigned int m_count = 0;
bool p = false;
void beginRun(edm::Run const&, edm::EventSetup const&) override { p = false; }
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
p = true;
}
void beginRunProduce(edm::Run&, edm::EventSetup const&) override {
if (p) {
throw cms::Exception("out of sequence") << "produce before beginRunProduce";
}
++m_count;
}
void endRun(edm::Run const&, edm::EventSetup const&) override {}
~TestBeginRunProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestBeginRunProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class TestBeginLumiBlockProducer
: public edm::one::EDProducer<edm::one::WatchLuminosityBlocks, edm::BeginLuminosityBlockProducer> {
public:
explicit TestBeginLumiBlockProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
produces<unsigned int, edm::Transition::BeginLuminosityBlock>("a");
}
const unsigned int trans_;
unsigned int m_count = 0;
bool p = false;
void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override { p = false; }
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
p = true;
}
void beginLuminosityBlockProduce(edm::LuminosityBlock&, edm::EventSetup const&) override {
++m_count;
if (p) {
throw cms::Exception("out of sequence") << "produce before beginLuminosityBlockProduce";
}
}
void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {}
~TestBeginLumiBlockProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestBeginLumiBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class TestEndRunProducer : public edm::one::EDProducer<edm::one::WatchRuns, edm::EndRunProducer> {
public:
explicit TestEndRunProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
produces<unsigned int, edm::Transition::EndRun>("a");
}
const unsigned int trans_;
bool erp = false;
void beginRun(edm::Run const&, edm::EventSetup const&) override { erp = false; }
unsigned int m_count = 0;
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
if (erp) {
throw cms::Exception("out of sequence") << "endRunProduce before produce";
}
}
void endRunProduce(edm::Run&, edm::EventSetup const&) override {
++m_count;
erp = true;
}
void endRun(edm::Run const&, edm::EventSetup const&) override {}
~TestEndRunProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestEndRunProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class TestEndLumiBlockProducer
: public edm::one::EDProducer<edm::one::WatchLuminosityBlocks, edm::EndLuminosityBlockProducer> {
public:
explicit TestEndLumiBlockProducer(edm::ParameterSet const& p) : trans_(p.getParameter<int>("transitions")) {
produces<int>();
produces<unsigned int, edm::Transition::EndLuminosityBlock>("a");
}
const unsigned int trans_;
bool elbp = false;
unsigned int m_count = 0;
void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override { elbp = false; }
void produce(edm::Event&, edm::EventSetup const&) override {
++m_count;
if (elbp) {
throw cms::Exception("out of sequence") << "endLumiBlockProduce before produce";
}
}
void endLuminosityBlockProduce(edm::LuminosityBlock&, edm::EventSetup const&) override {
++m_count;
elbp = true;
}
void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override {}
~TestEndLumiBlockProducer() noexcept(false) {
if (m_count != trans_) {
throw cms::Exception("transitions")
<< "TestEndLumiBlockProducer transitions " << m_count << " but it was supposed to be " << trans_;
}
}
};
class TestAccumulator : public edm::one::EDProducer<edm::Accumulator, edm::EndLuminosityBlockProducer> {
public:
explicit TestAccumulator(edm::ParameterSet const& p)
: m_expectedCount(p.getParameter<unsigned int>("expectedCount")),
m_putToken(produces<unsigned int, edm::Transition::EndLuminosityBlock>()) {}
void accumulate(edm::Event const&, edm::EventSetup const&) override { ++m_count; }
void endLuminosityBlockProduce(edm::LuminosityBlock& l, edm::EventSetup const&) override {
l.emplace(m_putToken, m_count.load());
}
~TestAccumulator() {
if (m_count.load() != m_expectedCount) {
throw cms::Exception("TestCount")
<< "TestAccumulator counter was " << m_count << " but it was supposed to be " << m_expectedCount;
}
}
mutable std::atomic<unsigned int> m_count{0};
const unsigned int m_expectedCount;
const edm::EDPutTokenT<unsigned int> m_putToken;
};
class TestInputProcessBlockCache {
public:
long long int value_ = 0;
};
class TestInputProcessBlockCache1 {
public:
long long int value_ = 0;
};
class InputProcessBlockIntProducer
: public edm::one::EDProducer<
edm::InputProcessBlockCache<int, TestInputProcessBlockCache, TestInputProcessBlockCache1>> {
public:
explicit InputProcessBlockIntProducer(edm::ParameterSet const& pset) {
expectedTransitions_ = pset.getParameter<int>("transitions");
expectedByRun_ = pset.getParameter<std::vector<int>>("expectedByRun");
expectedSum_ = pset.getParameter<int>("expectedSum");
{
auto tag = pset.getParameter<edm::InputTag>("consumesBeginProcessBlock");
if (not tag.label().empty()) {
getTokenBegin_ = consumes<IntProduct, edm::InProcess>(tag);
}
}
{
auto tag = pset.getParameter<edm::InputTag>("consumesEndProcessBlock");
if (not tag.label().empty()) {
getTokenEnd_ = consumes<IntProduct, edm::InProcess>(tag);
}
}
{
auto tag = pset.getParameter<edm::InputTag>("consumesBeginProcessBlockM");
if (not tag.label().empty()) {
getTokenBeginM_ = consumes<IntProduct, edm::InProcess>(tag);
}
}
{
auto tag = pset.getParameter<edm::InputTag>("consumesEndProcessBlockM");
if (not tag.label().empty()) {
getTokenEndM_ = consumes<IntProduct, edm::InProcess>(tag);
}
}
registerProcessBlockCacheFiller<int>(
getTokenBegin_, [this](edm::ProcessBlock const& processBlock, std::shared_ptr<int> const& previousCache) {
auto returnValue = std::make_shared<int>(0);
*returnValue += processBlock.get(getTokenBegin_).value;
*returnValue += processBlock.get(getTokenEnd_).value;
++transitions_;
return returnValue;
});
registerProcessBlockCacheFiller<1>(getTokenBegin_,
[this](edm::ProcessBlock const& processBlock,
std::shared_ptr<TestInputProcessBlockCache> const& previousCache) {
auto returnValue = std::make_shared<TestInputProcessBlockCache>();
returnValue->value_ += processBlock.get(getTokenBegin_).value;
returnValue->value_ += processBlock.get(getTokenEnd_).value;
++transitions_;
return returnValue;
});
registerProcessBlockCacheFiller<TestInputProcessBlockCache1>(
getTokenBegin_,
[this](edm::ProcessBlock const& processBlock,
std::shared_ptr<TestInputProcessBlockCache1> const& previousCache) {
auto returnValue = std::make_shared<TestInputProcessBlockCache1>();
returnValue->value_ += processBlock.get(getTokenBegin_).value;
returnValue->value_ += processBlock.get(getTokenEnd_).value;
++transitions_;
return returnValue;
});
}
void accessInputProcessBlock(edm::ProcessBlock const& processBlock) override {
if (processBlock.processName() == "PROD1") {
sum_ += processBlock.get(getTokenBegin_).value;
sum_ += processBlock.get(getTokenEnd_).value;
}
if (processBlock.processName() == "MERGE") {
sum_ += processBlock.get(getTokenBeginM_).value;
sum_ += processBlock.get(getTokenEndM_).value;
}
++transitions_;
}
void produce(edm::Event& event, edm::EventSetup const&) override {
auto cacheTuple = processBlockCaches(event);
if (!expectedByRun_.empty()) {
if (expectedByRun_.at(event.run() - 1) != *std::get<edm::CacheHandle<int>>(cacheTuple)) {
throw cms::Exception("UnexpectedValue")
<< "InputProcessBlockIntProducer::produce cached value was "
<< *std::get<edm::CacheHandle<int>>(cacheTuple) << " but it was supposed to be "
<< expectedByRun_.at(event.run() - 1);
}
if (expectedByRun_.at(event.run() - 1) != std::get<1>(cacheTuple)->value_) {
throw cms::Exception("UnexpectedValue")
<< "InputProcessBlockIntProducer::produce second cached value was " << std::get<1>(cacheTuple)->value_
<< " but it was supposed to be " << expectedByRun_.at(event.run() - 1);
}
if (expectedByRun_.at(event.run() - 1) !=
std::get<edm::CacheHandle<TestInputProcessBlockCache1>>(cacheTuple)->value_) {
throw cms::Exception("UnexpectedValue")
<< "InputProcessBlockIntProducer::produce third cached value was "
<< std::get<edm::CacheHandle<TestInputProcessBlockCache1>>(cacheTuple)->value_
<< " but it was supposed to be " << expectedByRun_.at(event.run() - 1);
}
}
++transitions_;
}
void endJob() override {
if (transitions_ != expectedTransitions_) {
throw cms::Exception("transitions") << "InputProcessBlockIntProducer transitions " << transitions_
<< " but it was supposed to be " << expectedTransitions_;
}
if (sum_ != expectedSum_) {
throw cms::Exception("UnexpectedValue")
<< "InputProcessBlockIntProducer sum " << sum_ << " but it was supposed to be " << expectedSum_;
}
if (cacheSize() > 0u) {
throw cms::Exception("UnexpectedValue")
<< "InputProcessBlockIntProducer cache size not zero at endJob " << cacheSize();
}
}
private:
edm::EDGetTokenT<IntProduct> getTokenBegin_;
edm::EDGetTokenT<IntProduct> getTokenEnd_;
edm::EDGetTokenT<IntProduct> getTokenBeginM_;
edm::EDGetTokenT<IntProduct> getTokenEndM_;
mutable std::atomic<unsigned int> transitions_{0};
int sum_{0};
unsigned int expectedTransitions_{0};
std::vector<int> expectedByRun_;
int expectedSum_{0};
};
} // namespace one
} // namespace edmtest
DEFINE_FWK_MODULE(edmtest::one::SharedResourcesProducer);
DEFINE_FWK_MODULE(edmtest::one::WatchRunsProducer);
DEFINE_FWK_MODULE(edmtest::one::WatchLumiBlocksProducer);
DEFINE_FWK_MODULE(edmtest::one::RunCacheProducer);
DEFINE_FWK_MODULE(edmtest::one::LumiBlockCacheProducer);
DEFINE_FWK_MODULE(edmtest::one::ProcessBlockIntProducer);
DEFINE_FWK_MODULE(edmtest::one::TestBeginProcessBlockProducer);
DEFINE_FWK_MODULE(edmtest::one::TestEndProcessBlockProducer);
DEFINE_FWK_MODULE(edmtest::one::TestBeginRunProducer);
DEFINE_FWK_MODULE(edmtest::one::TestBeginLumiBlockProducer);
DEFINE_FWK_MODULE(edmtest::one::TestEndRunProducer);
DEFINE_FWK_MODULE(edmtest::one::TestEndLumiBlockProducer);
DEFINE_FWK_MODULE(edmtest::one::TestAccumulator);
DEFINE_FWK_MODULE(edmtest::one::InputProcessBlockIntProducer);
|