]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
const kMaxNofSteps added
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 23 Sep 2000 16:06:21 +0000 (16:06 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 23 Sep 2000 16:06:21 +0000 (16:06 +0000)
AliGeant4/AliSteppingAction.h

index 8d59156f5650a8a987d83c437028fb8fa18cca43..dd2b351fa0628f2150feae104f359a2c0e6249d1 100644 (file)
@@ -2,6 +2,7 @@
 // Category: event
 //
 // Class for detecting and stopping looping particles
+// or particles that reached maximal number of steps.
 
 #ifndef ALI_STEPPING_ACTION_H
 #define ALI_STEPPING_ACTION_H
@@ -18,7 +19,8 @@ class AliSteppingAction : public G4UserSteppingAction
 {
   enum { 
     kCheckNofSteps = 100,
-    kMaxNofLoopSteps = 5
+    kMaxNofLoopSteps = 5,
+    kMaxNofSteps = 5000
   };
 
   public: