blob: 2d09799c812e6a3bf5f1f63bec173727e3ad8515 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef G4BEAMTESTUSERSTEPPINGACTION_H_INCLUDED
#define G4BEAMTESTUSERSTEPPINGACTION_H_INCLUDED
#include "G4UserSteppingAction.hh"
/**
* Implementation of G4UserSteppingAction. This class kills gammas below threshold (set by G4BeamTestTank).
*/
class G4BeamTestUserSteppingAction : public G4UserSteppingAction {
public:
G4BeamTestUserSteppingAction();
~G4BeamTestUserSteppingAction() {}
void UserSteppingAction(const G4Step*);
};
#endif // G4BEAMTESTUSERSTEPPINGACTION_H_INCLUDED
|