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

#include <Collimator40BeamLineMessenger.hh>

Inheritance diagram for Collimator40BeamLineMessenger:
G4UImessenger

Public Member Functions

 Collimator40BeamLineMessenger (Collimator40BeamLine *)
 
 ~Collimator40BeamLineMessenger ()
 
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 Collimator40BeamLineMessenger.hh.

Constructor & Destructor Documentation

Collimator40BeamLineMessenger::Collimator40BeamLineMessenger ( Collimator40BeamLine beamLine)

Definition at line 48 of file Collimator40BeamLineMessenger.cc.

References G4State_Idle.

49 :collimator40(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 }
Collimator40BeamLineMessenger::~Collimator40BeamLineMessenger ( )

Definition at line 76 of file Collimator40BeamLineMessenger.cc.

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

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 90 of file Collimator40BeamLineMessenger.cc.

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

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