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 &
34  CheckAbility<edm::module::Abilities::kEndRunProducer, T...>::kHasIt,
35  CheckAbility<edm::module::Abilities::kLuminosityBlockSummaryCache, T...>::kHasIt &
36  CheckAbility<edm::module::Abilities::kEndLuminosityBlockProducer, T...>::kHasIt,
37  T>::Type...,
38  public virtual EDProducerBase {
39  public:
40  EDProducer() = default;
41 
42  // ---------- const member functions ---------------------
43  bool wantsGlobalRuns() const final { return WantsGlobalRunTransitions<T...>::value; }
45 
46  bool wantsStreamRuns() const final { return WantsStreamRunTransitions<T...>::value; }
48 
50 
52 
53  // ---------- static member functions --------------------
54 
55  // ---------- member functions ---------------------------
56 
57  private:
58  EDProducer(const EDProducer&) = delete;
59 
60  const EDProducer& operator=(const EDProducer&) = delete;
61 
62  // ---------- member data --------------------------------
63  };
64 
65  } // namespace global
66 } // namespace edm
67 
68 #endif
const EDProducer & operator=(const EDProducer &)=delete
bool hasAbilityToProduceInRuns() const final
Definition: EDProducer.h:49
bool wantsStreamRuns() const final
Definition: EDProducer.h:46
bool wantsStreamLuminosityBlocks() const final
Definition: EDProducer.h:47
HLT enums.
bool hasAbilityToProduceInLumis() const final
Definition: EDProducer.h:51
long double T
bool wantsGlobalRuns() const final
Definition: EDProducer.h:43
bool wantsGlobalLuminosityBlocks() const final
Definition: EDProducer.h:44