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  // ---------- static member functions --------------------
58 
59  // ---------- member functions ---------------------------
60 
61  private:
62  EDProducer(const EDProducer&) = delete;
63 
64  const EDProducer& operator=(const EDProducer&) = delete;
65 
66  // ---------- member data --------------------------------
67 
68  };
69 
70  }
71 }
72 
73 #endif
const EDProducer & operator=(const EDProducer &)=delete
bool wantsStreamRuns() const final
Definition: EDProducer.h:50
bool wantsStreamLuminosityBlocks() const final
Definition: EDProducer.h:53
HLT enums.
long double T
bool wantsGlobalRuns() const final
Definition: EDProducer.h:43
bool wantsGlobalLuminosityBlocks() const final
Definition: EDProducer.h:46