Geant4 10.7.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 ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
virtual void SetNewValue (G4UIcommand *command, G4String newValue)
 
G4bool operator== (const G4UImessenger &messenger) const
 
G4bool operator!= (const G4UImessenger &messenger) const
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (G4String s)
 
G4long StoL (G4String s)
 
G4double StoD (G4String s)
 
G4bool StoB (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");
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");
65}
@ G4State_Idle
@ G4State_PreInit
void SetUnitCategory(const char *unitCategory)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:156
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:273

◆ ~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}
void SetTimeLimit(G4double)
void SetKinEnergyLimit(G4double)
static G4double GetNewDoubleValue(const char *paramString)

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