36 lines
898 B
C++
36 lines
898 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: ExN02SteppingAction.hh,v 1.2.8.1 1999/12/07 20:47:25 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
|
|
#ifndef ExN02SteppingAction_h
|
|
#define ExN02SteppingAction_h 1
|
|
|
|
#include "G4UserSteppingAction.hh"
|
|
#include "globals.hh"
|
|
|
|
class ExN02DetectorConstruction;
|
|
class ExN02EventAction;
|
|
|
|
class ExN02SteppingAction : public G4UserSteppingAction
|
|
{
|
|
public:
|
|
ExN02SteppingAction(ExN02DetectorConstruction* myDC,ExN02EventAction* myEA);
|
|
virtual ~ExN02SteppingAction(){};
|
|
|
|
virtual void UserSteppingAction(const G4Step*);
|
|
|
|
private:
|
|
ExN02DetectorConstruction* myDetector;
|
|
ExN02EventAction* eventAction;
|
|
};
|
|
|
|
#endif
|