Go to the source code of this file.
Defines | |
#define | G4StepStatus_h 1 |
Enumerations | |
enum | G4StepStatus { fWorldBoundary, fGeomBoundary, fAtRestDoItProc, fAlongStepDoItProc, fPostStepDoItProc, fUserDefinedLimit, fExclusivelyForcedProc, fUndefined } |
#define G4StepStatus_h 1 |
Definition at line 46 of file G4StepStatus.hh.
enum G4StepStatus |
fWorldBoundary | |
fGeomBoundary | |
fAtRestDoItProc | |
fAlongStepDoItProc | |
fPostStepDoItProc | |
fUserDefinedLimit | |
fExclusivelyForcedProc | |
fUndefined |
Definition at line 49 of file G4StepStatus.hh.
00051 { 00052 fWorldBoundary, 00053 // Step reached the world boundary 00054 fGeomBoundary, 00055 // Step defined by a geometry boundary 00056 fAtRestDoItProc, 00057 // Step defined by a PreStepDoItVector 00058 fAlongStepDoItProc, 00059 // Step defined by a AlongStepDoItVector 00060 fPostStepDoItProc, 00061 // Step defined by a PostStepDoItVector 00062 fUserDefinedLimit, 00063 // Step defined by the user Step limit in the logical volume 00064 fExclusivelyForcedProc, 00065 // Step defined by an exclusively forced PostStepDoIt process 00066 fUndefined 00067 // Step not defined yet 00068 };