]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4StepStatus.h
Added EDEFINE with the flags from Geant4
[u/mrichter/AliRoot.git] / TGeant4 / TG4StepStatus.h
1 // $Id$
2 // Category: event
3 //
4 // Author: I.Hrivnacova
5 //
6 // Enum TG4StepStatus
7 // ------------------
8 // In orded to take into account different stepping 
9 // mechanism in G3 and G4 three states of TG4StepManager
10 // are defined:
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
23 enum 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