blob: bb6d155dfcf5dd1fd666b6bd79e1564ed623c5b8 (
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
32
|
#ifndef G4BEAMTESTUSERTRACKINGACTION_H_INCLUDED
#define G4BEAMTESTUSERTRACKINGACTION_H_INCLUDED
/**
* Copyright (C) 2011
* The IceCube collaboration
* ID: $Id$
*
* @file G4BeamTestUserTrackingAction.h
* @version $Revision$
* @date $Date$
* @author Thomas Melzig
*
* $LastChangedBy$
*/
#include "G4UserTrackingAction.hh"
/**
* Implementation of G4UserTrackingAction. This class kills gammas below threshold (set by G4BeamTestTank).
*/
class G4BeamTestUserTrackingAction : public G4UserTrackingAction {
public:
G4BeamTestUserTrackingAction();
~G4BeamTestUserTrackingAction() {}
void PreUserTrackingAction(const G4Track*);
void PostUserTrackingAction(const G4Track*);
};
#endif // G4BEAMTESTUSERTRACKINGACTION_H_INCLUDED
|