CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/SimG4Core/Notification/interface/BeginOfEvent.h

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