00001 // This file is part of the GenericLAND software library. 00002 // $Id: GLG4SteppingAction.hh,v 1.1.1.1 2004/12/21 22:29:48 GLG4sim Exp $ 00003 // 00004 #ifndef __GLG4SteppingAction_H__ 00005 #define __GLG4SteppingAction_H__ 1 00006 00007 #include "globals.hh" 00008 #include "G4UserSteppingAction.hh" 00009 00010 class GLG4PrimaryGeneratorAction; 00011 00012 class GLG4SteppingAction : public G4UserSteppingAction 00013 { 00014 public: 00015 GLG4SteppingAction(); 00016 void UserSteppingAction(const G4Step* aStep); 00017 00018 private: 00019 GLG4PrimaryGeneratorAction* myGenerator; 00020 }; 00021 00022 #endif