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

#include <G4MonopoleFieldMessenger.hh>

Inheritance diagram for G4MonopoleFieldMessenger:
G4UImessenger

Public Member Functions

 G4MonopoleFieldMessenger (G4MonopoleFieldSetup *)
 
 ~G4MonopoleFieldMessenger ()
 
virtual 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 50 of file G4MonopoleFieldMessenger.hh.

Constructor & Destructor Documentation

G4MonopoleFieldMessenger::G4MonopoleFieldMessenger ( G4MonopoleFieldSetup fld)

Definition at line 47 of file G4MonopoleFieldMessenger.cc.

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

48 :G4UImessenger(),
49  fField(fld),
50  fFieldDir(0),
51  fSetFieldCmd(0)
52 
53 {
54  fFieldDir = new G4UIdirectory("/testex/fld/");
55  fFieldDir->SetGuidance("field setup commands");
56 
57  fSetFieldCmd = new G4UIcmdWithADoubleAndUnit("/testex/fld/setField",this);
58  fSetFieldCmd->SetGuidance("Define magnetic field.");
59  fSetFieldCmd->SetGuidance("Magnetic field will be in Z direction.");
60  fSetFieldCmd->SetParameterName("Bz",false);
61  fSetFieldCmd->SetUnitCategory("Magnetic flux density");
63 }
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)
G4MonopoleFieldMessenger::~G4MonopoleFieldMessenger ( )

Definition at line 67 of file G4MonopoleFieldMessenger.cc.

68 {
69  delete fSetFieldCmd;
70  delete fFieldDir;
71 }

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 75 of file G4MonopoleFieldMessenger.cc.

References G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(), and G4MonopoleFieldSetup::SetMagField().

76 {
77  if( command == fSetFieldCmd )
78  { fField->SetMagField(fSetFieldCmd->GetNewDoubleValue(newValue));}
79 }
void SetMagField(G4double fieldValue)
static G4double GetNewDoubleValue(const char *paramString)

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