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