]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4StepStatus.h
Modified AddTracks. Should be backward compatible
[u/mrichter/AliRoot.git] / TGeant4 / TG4StepStatus.h
CommitLineData
6fc5df41 1// $Id$
2// Category: event
3//
499b353a 4// Author: I.Hrivnacova
5//
6// Enum TG4StepStatus
7// ------------------
6fc5df41 8// In orded to take into account different stepping
499b353a 9// mechanism in G3 and G4 three states of TG4StepManager
10// are defined:
6fc5df41 11// kVertex - returns track properties in the vertex
12// position before particle started stepping
13// kBoundary - returns track properties when particle
14// is crossing geometrical boundary
15// (the volume that preceeds the boundary is returned
16// as current volume)
17// kNormalStep - returns track properties in a post step
18// point
19
20#ifndef TG4_STEP_STATUS_H
21#define TG4_STEP_STATUS_H
22
23enum TG4StepStatus {
24 kVertex, // in track vertex
25 kBoundary, // when crossing geometrical boundary
26 kNormalStep // in post step point
27};
28
29#endif //TG4_STEP_STATUS_H
30