diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-08-16 14:01:19 +0100 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-08-16 14:01:19 +0100 |
| commit | 3a83ec3bce239359f1cd71d1c0bfbf23b61d0db8 (patch) | |
| tree | 7b75a539576992ec9a82ec0add0d0e9b565347dd /include/G4BeamTestUserSteppingAction.h | |
| download | G4BeamTest-3a83ec3bce239359f1cd71d1c0bfbf23b61d0db8.tar.gz G4BeamTest-3a83ec3bce239359f1cd71d1c0bfbf23b61d0db8.zip | |
initial commit
Diffstat (limited to 'include/G4BeamTestUserSteppingAction.h')
| -rw-r--r-- | include/G4BeamTestUserSteppingAction.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/G4BeamTestUserSteppingAction.h b/include/G4BeamTestUserSteppingAction.h new file mode 100644 index 0000000..9807bbf --- /dev/null +++ b/include/G4BeamTestUserSteppingAction.h @@ -0,0 +1,31 @@ +#ifndef G4BEAMTESTUSERSTEPPINGACTION_H_INCLUDED +#define G4BEAMTESTUSERSTEPPINGACTION_H_INCLUDED +/** + * Copyright (C) 2011 + * The IceCube collaboration + * ID: $Id$ + * + * @file G4BeamTestUserSteppingAction.h + * @version $Revision$ + * @date $Date$ + * @author Thomas Melzig + * + * $LastChangedBy$ + */ + + +#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 |
