CMS 3D CMS Logo

OutputModule.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_one_OutputModule_h
2 #define FWCore_Framework_one_OutputModule_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // Class : edm::one::OutputModule
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Wed, 31 Jul 2013 18:21:29 GMT
19 //
20 
21 // system include files
22 
23 // user include files
25 
26 // forward declarations
27 namespace edm {
28  namespace one {
29  template <typename... T>
31  public:
33  : OutputModuleBase(iPSet), outputmodule::AbilityToImplementor<T>::Type(iPSet)... {}
34  // Required to work around ICC bug, but possible source of bloat in gcc.
35  // We do this only in the case of the intel compiler as this might end up
36  // creating a lot of code bloat due to inline symbols being generated in
37  // each DSO which uses this header.
38 #ifdef __INTEL_COMPILER
39  virtual ~OutputModule() = default;
40 #endif
41 
42  // ---------- const member functions ---------------------
45 
46  SerialTaskQueue* globalRunsQueue() final { return globalRunsQueue_.queue(); }
48 
49  // ---------- static member functions --------------------
50 
51  // ---------- member functions ---------------------------
52 
53  private:
54  OutputModule(const OutputModule&) = delete; // stop default
55 
56  const OutputModule& operator=(const OutputModule&) = delete; // stop default
57 
58  // ---------- member data --------------------------------
62  };
63  } // namespace one
64 } // namespace edm
65 
66 #endif
const OutputModule & operator=(const OutputModule &)=delete
impl::OptionalSerialTaskQueueHolder< WantsSerialGlobalRunTransitions< T... >::value > globalRunsQueue_
Definition: OutputModule.h:59
bool wantsGlobalRuns() const final
Definition: OutputModule.h:43
SerialTaskQueue * globalRunsQueue() final
Definition: OutputModule.h:46
impl::OptionalSerialTaskQueueHolder< WantsSerialGlobalLuminosityBlockTransitions< T... >::value > globalLuminosityBlocksQueue_
Definition: OutputModule.h:61
HLT enums.
SerialTaskQueue * globalLuminosityBlocksQueue() final
Definition: OutputModule.h:47
long double T
OutputModule(edm::ParameterSet const &iPSet)
Definition: OutputModule.h:32
bool wantsGlobalLuminosityBlocks() const final
Definition: OutputModule.h:44