Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4NeutronKillerMessenger Class Reference

#include <G4NeutronKillerMessenger.hh>

Inheritance diagram for G4NeutronKillerMessenger:

Public Member Functions

 G4NeutronKillerMessenger (G4NeutronKiller *)
virtual ~G4NeutronKillerMessenger ()
void SetNewValue (G4UIcommand *, G4String)
Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
virtual ~G4UImessenger ()
virtual G4String GetCurrentValue (G4UIcommand *command)
G4bool CommandsShouldBeInMaster () const

Additional Inherited Members

Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
G4String LtoS (G4long l)
G4String DtoS (G4double a)
G4String BtoS (G4bool b)
G4int StoI (const G4String &s)
G4long StoL (const G4String &s)
G4double StoD (const G4String &s)
G4bool StoB (const G4String &s)
void AddUIcommand (G4UIcommand *newCommand)
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
template<typename T>
T * CreateCommand (const G4String &cname, const G4String &dsc)
Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
G4String baseDirName = ""
G4bool commandsShouldBeInMaster = false

Detailed Description

Definition at line 52 of file G4NeutronKillerMessenger.hh.

Constructor & Destructor Documentation

◆ G4NeutronKillerMessenger()

G4NeutronKillerMessenger::G4NeutronKillerMessenger ( G4NeutronKiller * p)

Definition at line 47 of file G4NeutronKillerMessenger.cc.

48 :killer(p)
49{
50
51 dir = new G4UIdirectory("/physics_engine/neutron/");
52 dir->SetGuidance("control on neutrons");
53
54 eCmd = new G4UIcmdWithADoubleAndUnit("/physics_engine/neutron/energyLimit",this);
55 eCmd->SetGuidance("Set tracking cut - min energy of a particle.");
56 eCmd->SetParameterName("energyLimit",false);
57 eCmd->SetUnitCategory("Energy");
58 eCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
59
60 tCmd = new G4UIcmdWithADoubleAndUnit("/physics_engine/neutron/timeLimit",this);
61 tCmd->SetGuidance("Set time limit.");
62 tCmd->SetParameterName("timeLimit",false);
63 tCmd->SetUnitCategory("Time");
64 tCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
65}
@ G4State_Idle
@ G4State_PreInit

◆ ~G4NeutronKillerMessenger()

G4NeutronKillerMessenger::~G4NeutronKillerMessenger ( )
virtual

Definition at line 69 of file G4NeutronKillerMessenger.cc.

70{
71 delete eCmd;
72 delete tCmd;
73 delete dir;
74}

Member Function Documentation

◆ SetNewValue()

void G4NeutronKillerMessenger::SetNewValue ( G4UIcommand * command,
G4String val )
virtual

Reimplemented from G4UImessenger.

Definition at line 78 of file G4NeutronKillerMessenger.cc.

79{
80 if (command == eCmd)
81 killer->SetKinEnergyLimit(eCmd->GetNewDoubleValue(val));
82
83 if (command == tCmd)
84 killer->SetTimeLimit(tCmd->GetNewDoubleValue(val));
85}

The documentation for this class was generated from the following files: