CMS 3D CMS Logo

EDProducer.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_one_EDProducer_h
2 #define FWCore_Framework_one_EDProducer_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // Class : edm::one::EDProducer
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Thu, 09 May 2013 19:53:55 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>
30  class EDProducer : public virtual EDProducerBase,
32  public:
33  EDProducer() = default;
34 #ifdef __INTEL_COMPILER
35  virtual ~EDProducer() = default;
36 #endif
37  //
38 
39  // ---------- const member functions ---------------------
40  bool wantsGlobalRuns() const final {
42  }
43  bool wantsGlobalLuminosityBlocks() const final {
45  }
46 
47  bool hasAbilityToProduceInRuns() const final {
49  }
50 
51  bool hasAbilityToProduceInLumis() const final {
53  }
54 
55  SerialTaskQueue* globalRunsQueue() final { return globalRunsQueue_.queue();}
57 
58  // ---------- static member functions --------------------
59 
60  // ---------- member functions ---------------------------
61 
62  private:
63  EDProducer(const EDProducer&) = delete;
64  const EDProducer& operator=(const EDProducer&) = delete;
65 
66  // ---------- member data --------------------------------
69  };
70 
71  }
72 }
73 
74 
75 #endif
const EDProducer & operator=(const EDProducer &)=delete
impl::OptionalSerialTaskQueueHolder< WantsGlobalLuminosityBlockTransitions< T... >::value > globalLuminosityBlocksQueue_
Definition: EDProducer.h:68
bool wantsGlobalRuns() const final
Definition: EDProducer.h:40
bool wantsGlobalLuminosityBlocks() const final
Definition: EDProducer.h:43
bool hasAbilityToProduceInLumis() const final
Definition: EDProducer.h:51
SerialTaskQueue * globalLuminosityBlocksQueue() final
Definition: EDProducer.h:56
SerialTaskQueue * globalRunsQueue() final
Definition: EDProducer.h:55
HLT enums.
impl::OptionalSerialTaskQueueHolder< WantsGlobalRunTransitions< T... >::value > globalRunsQueue_
Definition: EDProducer.h:67
long double T
bool hasAbilityToProduceInRuns() const final
Definition: EDProducer.h:47