51 rdmDirectory->SetGuidance(
"Controls the biased version of radioactive decay");
55 analoguemcCmd->SetGuidance(
"false: variance reduction method; true: analogue method");
56 analoguemcCmd->SetParameterName(
"AnalogueMC",
true);
57 analoguemcCmd->SetDefaultValue(
true);
61 brbiasCmd->SetGuidance(
"false: no biasing; true: all branches are treated as equal");
62 brbiasCmd->SetParameterName(
"BRBias",
true);
63 brbiasCmd->SetDefaultValue(
true);
67 hlthCmd->SetGuidance(
"Set the h-l threshold for isomer production");
68 hlthCmd->SetParameterName(
"hlThreshold",
false);
69 hlthCmd->SetUnitCategory(
"Time");
72 sourcetimeprofileCmd =
new G4UIcmdWithAString(
"/process/had/rdm/sourceTimeProfile",
this);
73 sourcetimeprofileCmd->SetGuidance
74 (
"Supply the name of the ascii file containing the source particle time profile");
75 sourcetimeprofileCmd->SetParameterName(
"STimeProfile",
true);
76 sourcetimeprofileCmd->SetDefaultValue(
"source.data");
79 decaybiasprofileCmd =
new G4UIcmdWithAString(
"/process/had/rdm/decayBiasProfile",
this);
80 decaybiasprofileCmd->SetGuidance
81 (
"Supply the name of the ascii file containing the decay bias time profile");
82 decaybiasprofileCmd->SetParameterName(
"DBiasProfile",
true);
83 decaybiasprofileCmd->SetDefaultValue(
"bias.data");
87 splitnucleiCmd->SetGuidance(
"Set number of splitting for the isotopes.");
88 splitnucleiCmd->SetParameterName(
"NSplit",
true);
89 splitnucleiCmd->SetDefaultValue(1);
90 splitnucleiCmd->SetRange(
"NSplit>=1");
108 if ( command == analoguemcCmd ) { theRadDecay->
109 SetAnalogueMonteCarlo( analoguemcCmd->GetNewBoolValue( newValues ) );
110 }
else if ( command == brbiasCmd ) { theRadDecay->
111 SetBRBias( brbiasCmd->GetNewBoolValue( newValues ) );
112 }
else if ( command == sourcetimeprofileCmd ) { theRadDecay->
113 SetSourceTimeProfile( newValues );
114 }
else if ( command == decaybiasprofileCmd ) { theRadDecay->
115 SetDecayBias( newValues );
116 }
else if ( command == splitnucleiCmd ) { theRadDecay->
117 SetSplitNuclei( splitnucleiCmd->GetNewIntValue( newValues ) );
118 }
else if ( command == hlthCmd ) { theRadDecay->
119 SetHLThreshold( hlthCmd->GetNewDoubleValue( newValues ) );