CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
implementorsMethods.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_one_implementorsMethods_h
2 #define FWCore_Framework_one_implementorsMethods_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // File : implementorsMethods
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Thu, 09 May 2013 20:13:53 GMT
19 //
20 
21 // system include files
22 
23 // user include files
25 
26 // forward declarations
27 
28 namespace edm {
29  namespace one {
30  namespace impl {
31  template< typename T>
32  void RunWatcher<T>::doBeginRun_(Run const& rp, EventSetup const& c) {
33  this->beginRun(rp,c);
34  }
35  template< typename T>
36  void RunWatcher<T>::doEndRun_(Run const& rp, EventSetup const& c) {
37  this->endRun(rp,c);
38  }
39 
40 
41  template< typename T>
43  this->beginLuminosityBlock(rp,c);
44  }
45  template< typename T>
47  this->endLuminosityBlock(rp,c);
48  }
49 
50  template< typename T>
52  this->beginRunProduce(rp,c);
53  }
54 
55  template< typename T>
57  this->endRunProduce(rp,c);
58  }
59 
60  template< typename T>
62  this->beginLuminosityBlockProduce(rp,c);
63  }
64 
65  template< typename T>
67  this->endLuminosityBlockProduce(rp,c);
68  }
69  }
70  }
71 }
72 
73 
74 #endif
void doEndLuminosityBlockProduce_(LuminosityBlock &lbp, EventSetup const &c) overridefinal
void doBeginLuminosityBlock_(LuminosityBlock const &rp, EventSetup const &c) overridefinal
void doBeginRun_(Run const &rp, EventSetup const &c) overridefinal
void doBeginRunProduce_(Run &rp, EventSetup const &c) overridefinal
void doBeginLuminosityBlockProduce_(LuminosityBlock &lbp, EventSetup const &c) overridefinal
void doEndLuminosityBlock_(LuminosityBlock const &rp, EventSetup const &c) overridefinal
void doEndRun_(Run const &rp, EventSetup const &c) overridefinal
void doEndRunProduce_(Run &rp, EventSetup const &c) overridefinal
Definition: Run.h:41