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 // $Id: implementorsMethods.h,v 1.1 2013/05/17 14:49:46 chrjones Exp $
20 //
21 
22 // system include files
23 
24 // user include files
26 
27 // forward declarations
28 
29 namespace edm {
30  namespace one {
31  namespace impl {
32  template< typename T>
33  void RunWatcher<T>::doBeginRun_(Run const& rp, EventSetup const& c) {
34  this->beginRun(rp,c);
35  }
36  template< typename T>
37  void RunWatcher<T>::doEndRun_(Run const& rp, EventSetup const& c) {
38  this->endRun(rp,c);
39  }
40 
41 
42  template< typename T>
44  this->beginLuminosityBlock(rp,c);
45  }
46  template< typename T>
48  this->endLuminosityBlock(rp,c);
49  }
50 
51  template< typename T>
53  this->beginRunProduce(rp,c);
54  }
55 
56  template< typename T>
58  this->endRunProduce(rp,c);
59  }
60 
61  template< typename T>
63  this->beginLuminosityBlockProduce(rp,c);
64  }
65 
66  template< typename T>
68  this->endLuminosityBlockProduce(rp,c);
69  }
70  }
71  }
72 }
73 
74 
75 #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:36