CMS 3D CMS Logo

EDProducer.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_global_EDProducer_h
2 #define FWCore_Framework_global_EDProducer_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // Class : edm::global::EDProducer
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Thu, 18 Jul 2013 11:51:07 GMT
19 //
20 
21 // system include files
22 
23 // user include files
26 
27 // forward declarations
28 
29 namespace edm {
30  namespace global {
31  template< typename... T>
33  CheckAbility<edm::module::Abilities::kRunSummaryCache,T...>::kHasIt & CheckAbility<edm::module::Abilities::kEndRunProducer,T...>::kHasIt,
34  CheckAbility<edm::module::Abilities::kLuminosityBlockSummaryCache,T...>::kHasIt & CheckAbility<edm::module::Abilities::kEndLuminosityBlockProducer,T...>::kHasIt,
35  T>::Type...,
36  public virtual EDProducerBase
37  {
38 
39  public:
40  EDProducer() = default;
41 
42  // ---------- const member functions ---------------------
43  bool wantsGlobalRuns() const final {
45  }
46  bool wantsGlobalLuminosityBlocks() const final {
48  }
49 
50  bool wantsStreamRuns() const final {
52  }
53  bool wantsStreamLuminosityBlocks() const final {
55  }
56 
57  bool hasAbilityToProduceInRuns() const final {
59  }
60 
61  bool hasAbilityToProduceInLumis() const final {
63  }
64 
65  // ---------- static member functions --------------------
66 
67  // ---------- member functions ---------------------------
68 
69  private:
70  EDProducer(const EDProducer&) = delete;
71 
72  const EDProducer& operator=(const EDProducer&) = delete;
73 
74  // ---------- member data --------------------------------
75 
76  };
77 
78  }
79 }
80 
81 #endif
const EDProducer & operator=(const EDProducer &)=delete
bool hasAbilityToProduceInRuns() const final
Definition: EDProducer.h:57
bool wantsStreamRuns() const final
Definition: EDProducer.h:50
bool wantsStreamLuminosityBlocks() const final
Definition: EDProducer.h:53
HLT enums.
bool hasAbilityToProduceInLumis() const final
Definition: EDProducer.h:61
long double T
bool wantsGlobalRuns() const final
Definition: EDProducer.h:43
bool wantsGlobalLuminosityBlocks() const final
Definition: EDProducer.h:46