Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
|
The manger class for building magnetic or other field using the configuration in field parameters. More...
#include <G4FieldBuilder.hh>
Public Member Functions | |
~G4FieldBuilder () | |
Destructor. | |
G4FieldParameters * | CreateFieldParameters (const G4String &fieldVolName) |
void | ConstructFieldSetup () |
Construct setups for all registered fields. | |
void | UpdateField () |
void | Reinitialize () |
void | SetFieldType (G4FieldType fieldType) |
void | SetGlobalField (G4Field *field, G4bool warn=false) |
void | SetLocalField (G4Field *field, G4LogicalVolume *lv, G4bool warn=false) |
void | SetUserEquationOfMotion (G4EquationOfMotion *equation, G4String volumeName="") |
Set user equation of motion. | |
void | SetUserStepper (G4MagIntegratorStepper *stepper, G4String volumeName="") |
Set user stepper. | |
void | SetVerboseLevel (G4int value) |
Set verbose level. | |
G4FieldParameters * | GetFieldParameters (const G4String &volumeName="") const |
Static Public Member Functions | |
static G4FieldBuilder * | Instance () |
static G4bool | IsInstance () |
Return the information if an instance exists. | |
The manger class for building magnetic or other field using the configuration in field parameters.
Purpose: Provide a single 'place' to configure field & integration
It retains ownership of the following object(s): field parameters and field setups, field
Note MT: an object of the builder class should be created on master only (in DetectorConstruction constructor) The functions SetGlobal/LocalField and ConstructFieldSetup should be called on workers (in DetectorConstruction::ConstructSDandField )
This design/implementation covers the most common use cases. It cannot be used to create some complex setups such as
Definition at line 79 of file G4FieldBuilder.hh.
G4FieldBuilder::~G4FieldBuilder | ( | ) |
Destructor.
Definition at line 71 of file G4FieldBuilder.cc.
void G4FieldBuilder::ConstructFieldSetup | ( | ) |
Construct setups for all registered fields.
Definition at line 228 of file G4FieldBuilder.cc.
G4FieldParameters * G4FieldBuilder::CreateFieldParameters | ( | const G4String & | fieldVolName | ) |
Create local magnetic field parameters (configuration) which can be then configured by the user via UI commands. The parameters are used in geometry only if a local magnetic field is associated with the volumes with the given name
Definition at line 213 of file G4FieldBuilder.cc.
G4FieldParameters * G4FieldBuilder::GetFieldParameters | ( | const G4String & | volumeName = "" | ) | const |
Get field parameters with the given volumeName. Return global field parameters, if volume name is empty.
Definition at line 450 of file G4FieldBuilder.cc.
|
static |
Create the class instance, if it does not exist, and return it on the next calls.
Definition at line 52 of file G4FieldBuilder.cc.
Referenced by G4RunManager::ReinitializeGeometry().
|
inlinestatic |
Return the information if an instance exists.
Definition at line 219 of file G4FieldBuilder.hh.
Referenced by G4RunManager::ReinitializeGeometry().
void G4FieldBuilder::Reinitialize | ( | ) |
Reinitialize if geometry has been modified. This function is called by G4RunManager during ReinitializeGeometry()
Definition at line 274 of file G4FieldBuilder.cc.
Referenced by G4RunManager::ReinitializeGeometry().
void G4FieldBuilder::SetFieldType | ( | G4FieldType | fieldType | ) |
Default field type is set to kMagnetic; this function should be called for other than magnetic field in order to update the default equation and stepper types.
Definition at line 312 of file G4FieldBuilder.cc.
Definition at line 335 of file G4FieldBuilder.cc.
void G4FieldBuilder::SetLocalField | ( | G4Field * | field, |
G4LogicalVolume * | lv, | ||
G4bool | warn = false ) |
Register the local field in the map. Update field objects, if the field was already constructed. If warn, issue a warning if the previous field is deleted. The field is propagated to all volume daughters regardless if they have already assigned a field manager or not. When multiple local fields are defined (by calling this function multiple times), they will be applied in the order they were set.
Definition at line 357 of file G4FieldBuilder.cc.
void G4FieldBuilder::SetUserEquationOfMotion | ( | G4EquationOfMotion * | equation, |
G4String | volumeName = "" ) |
Set user equation of motion.
Definition at line 412 of file G4FieldBuilder.cc.
void G4FieldBuilder::SetUserStepper | ( | G4MagIntegratorStepper * | stepper, |
G4String | volumeName = "" ) |
Set user stepper.
Definition at line 431 of file G4FieldBuilder.cc.
|
inline |
Set verbose level.
Definition at line 225 of file G4FieldBuilder.hh.
void G4FieldBuilder::UpdateField | ( | ) |
Update magnetic field. This function must be called if the field parameters were changed in other than PreInit> phase.
Definition at line 252 of file G4FieldBuilder.cc.