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
|
#ifndef FWCore_Framework_limited_OutputModule_h
#define FWCore_Framework_limited_OutputModule_h
// -*- C++ -*-
//
// Package: FWCore/Framework
// Class : edm::limited::OutputModule
//
/**\class edm::limited::OutputModule OutputModule.h "FWCore/Framework/interface/limited/OutputModule.h"
Description: [one line class summary]
Usage:
<usage>
*/
//
//
// system include files
// user include files
#include "FWCore/Framework/interface/limited/outputmoduleAbilityToImplementor.h"
// forward declarations
namespace edm {
namespace limited {
template <typename... T>
class OutputModule : public virtual OutputModuleBase, public outputmodule::AbilityToImplementor<T>::Type... {
public:
OutputModule(edm::ParameterSet const& iPSet)
: OutputModuleBase(iPSet), outputmodule::AbilityToImplementor<T>::Type(iPSet)... {}
OutputModule(const OutputModule&) = delete; // stop default
const OutputModule& operator=(const OutputModule&) = delete; // stop default
// Required to work around ICC bug, but possible source of bloat in gcc.
// We do this only in the case of the intel compiler as this might end up
// creating a lot of code bloat due to inline symbols being generated in
// each DSO which uses this header.
#ifdef __INTEL_COMPILER
virtual ~OutputModule() = default;
#endif
// ---------- const member functions ---------------------
bool wantsProcessBlocks() const noexcept final { return WantsProcessBlockTransitions<T...>::value; }
bool wantsInputProcessBlocks() const noexcept final { return WantsInputProcessBlockTransitions<T...>::value; }
bool wantsStreamRuns() const noexcept final { return WantsStreamRunTransitions<T...>::value; }
bool wantsStreamLuminosityBlocks() const noexcept final {
return WantsStreamLuminosityBlockTransitions<T...>::value;
}
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
private:
// ---------- member data --------------------------------
};
} // namespace limited
} // namespace edm
#endif
|