blob: 9807bbf82a00282e6babf47ad382dbbd9a9b326a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|