CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
BeginOfJob.h
Go to the documentation of this file.
1 #ifndef SimG4Core_BeginOfJob_H
2 #define SimG4Core_BeginOfJob_H
3 
4 namespace edm {
5  class EventSetup;
6 }
7 
8 class BeginOfJob {
9 public:
10  BeginOfJob(const edm::EventSetup* tJob) : anJob(tJob) {}
11  const edm::EventSetup* operator()() const { return anJob; }
12 
13 private:
15 };
16 
17 #endif
const edm::EventSetup * operator()() const
Definition: BeginOfJob.h:11
BeginOfJob(const edm::EventSetup *tJob)
Definition: BeginOfJob.h:10
const edm::EventSetup * anJob
Definition: BeginOfJob.h:14