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

#include <Collimator70BeamLineMessenger.hh>

Inheritance diagram for Collimator70BeamLineMessenger:
G4UImessenger

Public Member Functions

 Collimator70BeamLineMessenger (Collimator70BeamLine *)
 
 ~Collimator70BeamLineMessenger ()
 
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 52 of file Collimator70BeamLineMessenger.hh.

Constructor & Destructor Documentation

Collimator70BeamLineMessenger::Collimator70BeamLineMessenger ( Collimator70BeamLine beamLine)

Definition at line 48 of file Collimator70BeamLineMessenger.cc.

References G4State_Idle.

49 :collimator70(beamLine)
50 
51 {
52 
53  beamLineDir = new G4UIdirectory("/beamLine/");
54  beamLineDir -> SetGuidance("set specification of range shifter");
55 
56  FinalCollimatorIORTDir = new G4UIdirectory("/beamLine/FinalCollimatorIORT/");
57  FinalCollimatorIORTDir -> SetGuidance("set specification of final collimator");
58 
59 
60  innerRadiusFinalCollimatorIORTCmd = new G4UIcmdWithADoubleAndUnit("/beamLine/FinalCollimatorIORT/halfInnerRad",this);
61  innerRadiusFinalCollimatorIORTCmd -> SetGuidance("Set size of inner radius ( max 21.5 mm)");
62  innerRadiusFinalCollimatorIORTCmd -> SetParameterName("Size",false);
63  innerRadiusFinalCollimatorIORTCmd -> SetDefaultUnit("mm");
64  innerRadiusFinalCollimatorIORTCmd -> SetUnitCandidates("mm cm m");
65  innerRadiusFinalCollimatorIORTCmd -> AvailableForStates(G4State_Idle);
66 
67  OuterRadiusFinalCollimatorIORTCmd = new G4UIcmdWithADoubleAndUnit("/beamLine/FinalCollimatorIORT/halfOuterRad",this);
68  OuterRadiusFinalCollimatorIORTCmd -> SetGuidance("Set size of outer radius ( max 21.5 mm)");
69  OuterRadiusFinalCollimatorIORTCmd -> SetParameterName("Size",false);
70  OuterRadiusFinalCollimatorIORTCmd -> SetDefaultUnit("mm");
71  OuterRadiusFinalCollimatorIORTCmd -> SetUnitCandidates("mm cm m");
72  OuterRadiusFinalCollimatorIORTCmd -> AvailableForStates(G4State_Idle);
73 
74 }
Collimator70BeamLineMessenger::~Collimator70BeamLineMessenger ( )

Definition at line 76 of file Collimator70BeamLineMessenger.cc.

77 {
78 
79  delete OuterRadiusFinalCollimatorIORTCmd;
80  delete innerRadiusFinalCollimatorIORTCmd;
81  delete FinalCollimatorIORTDir;
82  delete beamLineDir;
83 
84 
85 }

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 90 of file Collimator70BeamLineMessenger.cc.

91 {
92 
93 
94  if( command == innerRadiusFinalCollimatorIORTCmd )
95  { collimator70 -> SetInnerRadiusFinalCollimatorIORT
96  (innerRadiusFinalCollimatorIORTCmd -> GetNewDoubleValue(newValue));}
97 
98  else if( command == OuterRadiusFinalCollimatorIORTCmd )
99  { collimator70 -> SetOuterRadiusFinalCollimatorIORT
100  (OuterRadiusFinalCollimatorIORTCmd -> GetNewDoubleValue(newValue));}
101 
102 }

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