Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:26

0001 #ifndef SimG4Core_BeginOfJob_H
0002 #define SimG4Core_BeginOfJob_H
0003 
0004 namespace edm {
0005   class EventSetup;
0006 }
0007 
0008 class BeginOfJob {
0009 public:
0010   BeginOfJob(const edm::EventSetup* tJob) : anJob(tJob) {}
0011   const edm::EventSetup* operator()() const { return anJob; }
0012 
0013 private:
0014   const edm::EventSetup* anJob;
0015 };
0016 
0017 #endif