Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4FieldSetupMessenger Class Reference

Messenger class that defines commands for G4FieldSetup. More...

#include <G4FieldSetupMessenger.hh>

+ Inheritance diagram for G4FieldSetupMessenger:

Public Member Functions

 G4FieldSetupMessenger (G4FieldSetup *fieldSetup)
 Standard constructor.
 
 ~G4FieldSetupMessenger () override
 Destructor.
 
void SetNewValue (G4UIcommand *command, G4String newValues) override
 Apply command to the associated object.
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (const 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 = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 

Detailed Description

Messenger class that defines commands for G4FieldSetup.

Implements commands:

  • /field/update
Author
I. Hrivnacova; IJCLab, Orsay

Definition at line 52 of file G4FieldSetupMessenger.hh.

Constructor & Destructor Documentation

◆ G4FieldSetupMessenger()

G4FieldSetupMessenger::G4FieldSetupMessenger ( G4FieldSetup * fieldSetup)

Standard constructor.

Definition at line 49 of file G4FieldSetupMessenger.cc.

50 : fFieldSetup(fieldSetup)
51{
52 // Standard constructor
53
54 G4String directoryName = "/field/";
55 if (fFieldSetup->GetLogicalVolume() != nullptr) {
56 directoryName.append(fFieldSetup->GetLogicalVolume()->GetName());
57 directoryName.append("/");
58 }
59
60 G4String commandName = std::move(directoryName);
61 commandName.append("update");
62 fUpdateCmd = new G4UIcmdWithoutParameter(commandName, this);
63 fUpdateCmd->SetGuidance("Update field setup.");
64 fUpdateCmd->AvailableForStates(
66}
@ G4State_Init
@ G4State_Idle
@ G4State_PreInit

Referenced by G4FieldSetupMessenger().

◆ ~G4FieldSetupMessenger()

G4FieldSetupMessenger::~G4FieldSetupMessenger ( )
override

Destructor.

Definition at line 69 of file G4FieldSetupMessenger.cc.

70{
71 // Destructor
72
73 delete fUpdateCmd;
74}

Member Function Documentation

◆ SetNewValue()

void G4FieldSetupMessenger::SetNewValue ( G4UIcommand * command,
G4String newValues )
overridevirtual

Apply command to the associated object.

Reimplemented from G4UImessenger.

Definition at line 81 of file G4FieldSetupMessenger.cc.

83{
84 // Apply command to the associated object.
85
86 if (command == fUpdateCmd) {
87 G4cout << "Execute update command" << G4endl;
88 fFieldSetup->Update();
89 return;
90 }
91}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

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