/home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/core/include/RAT/GLG4SteppingAction.hh Source File

Ratpac-two: /home/docs/checkouts/readthedocs.org/user_builds/ratpac/checkouts/latest/src/core/include/RAT/GLG4SteppingAction.hh Source File
Ratpac-two
GLG4SteppingAction.hh
1 // This file is part of the GenericLAND software library.
2 // $Id: GLG4SteppingAction.hh,v 1.1 2005/08/30 19:55:22 volsung Exp $
3 //
4 #ifndef __GLG4SteppingAction_H__
5 #define __GLG4SteppingAction_H__ 1
6 
7 #include "G4ParticleChange.hh"
8 #include "G4UserSteppingAction.hh"
9 #include "globals.hh"
10 
12 
13 class GLG4SteppingAction : public G4UserSteppingAction {
14  public:
15  static G4bool fUseGLG4;
17  void UserSteppingAction(const G4Step *aStep);
18 
19  // Kill a track if its global time exceeds this time.
20  // Default is 0, or no time limit.
21  static G4double max_global_time;
22 
23  private:
24  GLG4PrimaryGeneratorAction *myGenerator;
25 };
26 
27 #endif
Definition: GLG4PrimaryGeneratorAction.hh:21
Definition: GLG4SteppingAction.hh:13