42 theHadronicParameters( inputHadParam )
46 theDirectory->SetGuidance(
"Control of general hadronic physics parameters and choices." );
53 theVerboseCmd->SetGuidance(
"Set verbose level: 0 (minimum), 1 (default), 2 (higher), ... (even higher)" );
54 theVerboseCmd->SetParameterName(
"VerboseLevel",
true );
55 theVerboseCmd->SetDefaultValue( 1 );
56 theVerboseCmd->SetRange(
"VerboseLevel>=0" );
61 theMaxEnergyCmd->SetGuidance(
"Max energy for hadronics (default: 100 TeV)" );
62 theMaxEnergyCmd->SetParameterName(
"MaxEnergy",
false );
63 theMaxEnergyCmd->SetUnitCategory(
"Energy" );
64 theMaxEnergyCmd->SetRange(
"MaxEnergy>0.0" );
68 theCRCoalescenceCmd =
new G4UIcmdWithABool(
"/process/had/enableCRCoalescence",
this );
69 theCRCoalescenceCmd->SetGuidance(
"Enable Cosmic Ray (CR) coalescence." );
70 theCRCoalescenceCmd->SetParameterName(
"EnableCRCoalescence",
false );
71 theCRCoalescenceCmd->SetDefaultValue(
false );
84 if ( command == theVerboseCmd ) {
88 theHadronicParameters->SetVerboseLevel( theVerboseCmd->GetNewIntValue( newValues ) );
89 }
else if ( command == theMaxEnergyCmd ) {
90 theHadronicParameters->SetMaxEnergy( theMaxEnergyCmd->GetNewDoubleValue( newValues ) );
91 }
else if ( command == theCRCoalescenceCmd ) {
92 theHadronicParameters->SetEnableCRCoalescence( theCRCoalescenceCmd->GetNewBoolValue( newValues ) );