CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/SimG4Core/Notification/interface/EndOfRun.h

Go to the documentation of this file.
00001 #ifndef SimG4Core_EndOfRun_H
00002 #define SimG4Core_EndOfRun_H
00003 
00004 #include "G4Run.hh"
00005 
00006 class EndOfRun
00007 {
00008 public:
00009     EndOfRun(const G4Run * tRun) : aRun(tRun) {}
00010     const G4Run * operator()() const { return aRun; }
00011 private:
00012     const G4Run * aRun;
00013 };
00014 
00015 #endif