#ifndef ExR04SteppingAction_h #define ExR04SteppingAction_h 1 #include "G4UserSteppingAction.hh" #include "globals.hh" class ExN02DetectorConstruction; class ExR04EventAction; class RecorderBase; class ExR04SteppingAction : public G4UserSteppingAction { public: ExR04SteppingAction(ExN02DetectorConstruction* myDC,ExR04EventAction* myEA,RecorderBase* r = 0); virtual ~ExR04SteppingAction(){}; virtual void UserSteppingAction(const G4Step*); private: ExN02DetectorConstruction* myDetector; ExR04EventAction* eventAction; RecorderBase* recorder; }; #endif