CMS 3D CMS Logo

OutputModule.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_global_OutputModule_h
2 #define FWCore_Framework_global_OutputModule_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // Class : edm::global::OutputModule
7 //
16 //
17 //
18 
19 // system include files
20 
21 // user include files
23 
24 // forward declarations
25 namespace edm {
26  namespace global {
27  template <typename... T>
29  public:
31  : OutputModuleBase(iPSet), outputmodule::AbilityToImplementor<T>::Type(iPSet)... {}
32  OutputModule(const OutputModule&) = delete; // stop default
33  const OutputModule& operator=(const OutputModule&) = delete; // stop default
34 
35  // Required to work around ICC bug, but possible source of bloat in gcc.
36  // We do this only in the case of the intel compiler as this might end up
37  // creating a lot of code bloat due to inline symbols being generated in
38  // each DSO which uses this header.
39 #ifdef __INTEL_COMPILER
40  virtual ~OutputModule() = default;
41 #endif
42 
43  // ---------- const member functions ---------------------
48 
49  // ---------- static member functions --------------------
50 
51  // ---------- member functions ---------------------------
52 
53  private:
54  // ---------- member data --------------------------------
55  };
56  } // namespace global
57 } // namespace edm
58 
59 #endif
bool wantsStreamRuns() const final
Definition: OutputModule.h:46
bool wantsStreamLuminosityBlocks() const final
Definition: OutputModule.h:47
bool wantsProcessBlocks() const final
Definition: OutputModule.h:44
const OutputModule & operator=(const OutputModule &)=delete
bool wantsInputProcessBlocks() const final
Definition: OutputModule.h:45
HLT enums.
long double T
OutputModule(edm::ParameterSet const &iPSet)
Definition: OutputModule.h:30