Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
ExN02DetectorMessenger Class Reference

#include <ExN02DetectorMessenger.hh>

Inheritance diagram for ExN02DetectorMessenger:
G4UImessenger

Public Member Functions

 ExN02DetectorMessenger (ExN02DetectorConstruction *)
 
 ~ExN02DetectorMessenger ()
 
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
 

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
 

Detailed Description

Definition at line 48 of file ExN02DetectorMessenger.hh.

Constructor & Destructor Documentation

ExN02DetectorMessenger::ExN02DetectorMessenger ( ExN02DetectorConstruction myDet)

Definition at line 45 of file ExN02DetectorMessenger.cc.

References G4UIcommand::AvailableForStates(), G4State_Idle, G4State_PreInit, G4UIcommand::SetGuidance(), G4UIcmdWithAString::SetParameterName(), G4UIcmdWithADoubleAndUnit::SetParameterName(), and G4UIcmdWithADoubleAndUnit::SetUnitCategory().

46 :myDetector(myDet)
47 {
48  N02Dir = new G4UIdirectory("/N02/");
49  N02Dir->SetGuidance("UI commands specific to this example.");
50 
51  detDir = new G4UIdirectory("/N02/det/");
52  detDir->SetGuidance("detector control.");
53 
54  TargMatCmd = new G4UIcmdWithAString("/N02/det/setTargetMate",this);
55  TargMatCmd->SetGuidance("Select Material of the Target.");
56  TargMatCmd->SetParameterName("choice",false);
58 
59  ChamMatCmd = new G4UIcmdWithAString("/N02/det/setChamberMate",this);
60  ChamMatCmd->SetGuidance("Select Material of the Target.");
61  ChamMatCmd->SetParameterName("choice",false);
63 
64  FieldCmd = new G4UIcmdWithADoubleAndUnit("/N02/det/setField",this);
65  FieldCmd->SetGuidance("Define magnetic field.");
66  FieldCmd->SetGuidance("Magnetic field will be in X direction.");
67  FieldCmd->SetParameterName("Bx",false);
68  FieldCmd->SetUnitCategory("Magnetic flux density");
70 
71  StepMaxCmd = new G4UIcmdWithADoubleAndUnit("/N02/det/stepMax",this);
72  StepMaxCmd->SetGuidance("Define a step max");
73  StepMaxCmd->SetParameterName("stepMax",false);
74  StepMaxCmd->SetUnitCategory("Length");
75  StepMaxCmd->AvailableForStates(G4State_Idle);
76 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetUnitCategory(const char *unitCategory)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
ExN02DetectorMessenger::~ExN02DetectorMessenger ( )

Definition at line 80 of file ExN02DetectorMessenger.cc.

81 {
82  delete TargMatCmd;
83  delete ChamMatCmd;
84  delete FieldCmd;
85  delete StepMaxCmd;
86  delete detDir;
87  delete N02Dir;
88 }

Member Function Documentation

void ExN02DetectorMessenger::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 92 of file ExN02DetectorMessenger.cc.

References G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(), ExN02DetectorConstruction::setChamberMaterial(), ExN02DetectorConstruction::SetMagField(), ExN02DetectorConstruction::SetMaxStep(), and ExN02DetectorConstruction::setTargetMaterial().

93 {
94  if( command == TargMatCmd )
95  { myDetector->setTargetMaterial(newValue);}
96 
97  if( command == ChamMatCmd )
98  { myDetector->setChamberMaterial(newValue);}
99 
100  if( command == FieldCmd )
101  { myDetector->SetMagField(FieldCmd->GetNewDoubleValue(newValue));}
102 
103  if( command == StepMaxCmd )
104  { myDetector->SetMaxStep(StepMaxCmd->GetNewDoubleValue(newValue));}
105 }
static G4double GetNewDoubleValue(const char *paramString)

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