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
|
#ifndef FWCore_Framework_global_implementorsMethods_h
#define FWCore_Framework_global_implementorsMethods_h
// -*- C++ -*-
//
// Package: FWCore/Framework
// File : implementorsMethods
//
/**\file implementorsMethods.h "FWCore/Framework/src/global/implementorsMethods.h"
Description: [one line class summary]
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Thu, 09 May 2013 20:13:53 GMT
//
// system include files
// user include files
#include "FWCore/Framework/interface/global/implementors.h"
#include "FWCore/Concurrency/interface/WaitingTaskWithArenaHolder.h"
// forward declarations
namespace edm {
namespace global {
namespace impl {
template <typename T>
void WatchProcessBlock<T>::doBeginProcessBlock_(ProcessBlock const& pb) {
this->beginProcessBlock(pb);
}
template <typename T>
void WatchProcessBlock<T>::doEndProcessBlock_(ProcessBlock const& pb) {
this->endProcessBlock(pb);
}
template <typename T>
void BeginProcessBlockProducer<T>::doBeginProcessBlockProduce_(ProcessBlock& pb) {
this->beginProcessBlockProduce(pb);
}
template <typename T>
void EndProcessBlockProducer<T>::doEndProcessBlockProduce_(ProcessBlock& pb) {
this->endProcessBlockProduce(pb);
}
template <typename T>
void BeginRunProducer<T>::doBeginRunProduce_(Run& rp, EventSetup const& c) {
this->globalBeginRunProduce(rp, c);
}
template <typename T>
void EndRunProducer<T>::doEndRunProduce_(Run& rp, EventSetup const& c) {
this->globalEndRunProduce(rp, c);
}
template <typename T>
void BeginLuminosityBlockProducer<T>::doBeginLuminosityBlockProduce_(LuminosityBlock& rp, EventSetup const& c) {
this->globalBeginLuminosityBlockProduce(rp, c);
}
template <typename T>
void EndLuminosityBlockProducer<T>::doEndLuminosityBlockProduce_(LuminosityBlock& rp, EventSetup const& c) {
this->globalEndLuminosityBlockProduce(rp, c);
}
template <typename T>
void ExternalWork<T>::doAcquire_(StreamID s,
Event const& ev,
edm::EventSetup const& es,
WaitingTaskHolder&& holder) {
this->acquire(s, ev, es, WaitingTaskWithArenaHolder(std::move(holder)));
}
} // namespace impl
} // namespace global
} // namespace edm
#endif
|