From 650583dc721219a8effa0095f8cbd08ecfc1db86 Mon Sep 17 00:00:00 2001 From: Manuel Huber Date: Tue, 3 Dec 2024 11:49:06 +0100 Subject: [PATCH] update command states --- src/RMGTrackingAction.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RMGTrackingAction.cc b/src/RMGTrackingAction.cc index adc41732..10b0c67b 100644 --- a/src/RMGTrackingAction.cc +++ b/src/RMGTrackingAction.cc @@ -88,7 +88,7 @@ void RMGTrackingAction::DefineCommands() { .SetGuidance("If the initial step is a radioactive decay, reset the global time of all its " "secondary tracks to 0.") .SetDefaultValue("true") - .SetStates(G4State_PreInit); + .SetStates(G4State_Idle); fMessenger ->DeclareMethodWithUnit("LargeGlobalTimeUncertaintyWarning", "us", @@ -96,7 +96,7 @@ void RMGTrackingAction::DefineCommands() { .SetGuidance("Warn if the global times of tracks get too large to provide the requested time " "uncertainty.") .SetDefaultValue("1") - .SetStates(G4State_PreInit); + .SetStates(G4State_Idle); } // vim: tabstop=2 shiftwidth=2 expandtab