Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4NeutronKillerMessenger Class Reference

#include <G4NeutronKillerMessenger.hh>

Inheritance diagram for G4NeutronKillerMessenger:
Collaboration 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)
 
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)
 
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
 
G4String baseDirName
 
G4bool commandsShouldBeInMaster
 

Detailed Description

Definition at line 53 of file G4NeutronKillerMessenger.hh.

Constructor & Destructor Documentation

G4NeutronKillerMessenger::G4NeutronKillerMessenger ( G4NeutronKiller p)

Definition at line 48 of file G4NeutronKillerMessenger.cc.

49  :killer(p)
50 {
51 
52  dir = new G4UIdirectory("/physics_engine/neutron/");
53  dir->SetGuidance("control on neutrons");
54 
55  eCmd = new G4UIcmdWithADoubleAndUnit("/physics_engine/neutron/energyLimit",this);
56  eCmd->SetGuidance("Set tracking cut - min energy of a particle.");
57  eCmd->SetParameterName("energyLimit",false);
58  eCmd->SetUnitCategory("Energy");
60 
61  tCmd = new G4UIcmdWithADoubleAndUnit("/physics_engine/neutron/timeLimit",this);
62  tCmd->SetGuidance("Set time limit.");
63  tCmd->SetParameterName("timeLimit",false);
64  tCmd->SetUnitCategory("Time");
66 }
void SetUnitCategory(const char *unitCategory)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:240
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)

Here is the call graph for this function:

G4NeutronKillerMessenger::~G4NeutronKillerMessenger ( )
virtual

Definition at line 70 of file G4NeutronKillerMessenger.cc.

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

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 79 of file G4NeutronKillerMessenger.cc.

80 {
81  if (command == eCmd)
82  killer->SetKinEnergyLimit(eCmd->GetNewDoubleValue(val));
83 
84  if (command == tCmd)
85  killer->SetTimeLimit(tCmd->GetNewDoubleValue(val));
86 }
void SetKinEnergyLimit(G4double)
static G4double GetNewDoubleValue(const char *paramString)
void SetTimeLimit(G4double)

Here is the call graph for this function:


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