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

The manger class for building magnetic or other field using the configuration in field parameters. More...

#include <G4FieldBuilder.hh>

Public Member Functions

 ~G4FieldBuilder ()
 Destructor.
 
G4FieldParametersCreateFieldParameters (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.
 
G4FieldParametersGetFieldParameters (const G4String &volumeName="") const
 

Static Public Member Functions

static G4FieldBuilderInstance ()
 
static G4bool IsInstance ()
 Return the information if an instance exists.
 

Detailed Description

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 can configure a global field, and field(s) local to a (logical) volume
  • The parameter values can be configured by the user (else use a default)
  • They can be set/changed via a messenger provided or in the code of the user detector construciton
  • 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

    • equations templated on the field type,
    • steppers/drivers templated on the equation and field types.
Author
I. Hrivnacova; IJCLab, Orsay

Definition at line 79 of file G4FieldBuilder.hh.

Constructor & Destructor Documentation

◆ ~G4FieldBuilder()

G4FieldBuilder::~G4FieldBuilder ( )

Destructor.

Definition at line 71 of file G4FieldBuilder.cc.

72{
73 // Destructor
74
75 delete fMessenger;
76
77 for (auto parameters : fFieldParameters) {
78 delete parameters;
79 }
80
81 for (auto setup : GetFieldSetups()) {
82 delete setup;
83 }
84
85 fgIsInstance = false;
86
87 // magnetic field objects are deleted via G4 kernel
88}

Member Function Documentation

◆ ConstructFieldSetup()

void G4FieldBuilder::ConstructFieldSetup ( )

Construct setups for all registered fields.

Definition at line 228 of file G4FieldBuilder.cc.

229{
230 // Construct setups for all registered fields.
231
232 if (fVerboseLevel > 1) {
233 G4cout << "G4FieldBuilder::ConstructField" << G4endl;
234 }
235
236 if (fIsConstructed) {
238 "G4FieldBuilder::ConstructField:", "GeomFieldParameters0001",
239 JustWarning, "Field was already constructed.");
240 return;
241 }
242
243 ConstructGlobalField();
244 ConstructLocalFields();
245
246 UpdateFieldSetups();
247
248 fIsConstructed = true;
249}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ CreateFieldParameters()

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.

215{
216 // Create local magnetic field parameters (configuration) which can be then
217 // configured by the user via UI commands.
218 // The parameters are used in geometry only if a local magnetic field is
219 // associated with the volumes with the given name.
220
221 auto fieldParameters = new G4FieldParameters(fieldVolName);
222 fFieldParameters.push_back(fieldParameters);
223
224 return fieldParameters;
225}

◆ GetFieldParameters()

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.

452{
453 // Get field parameters with the given volumeName.
454 // Return global field parameters, if volume name is empty.
455
456 // Get user field parameters
457 for (auto fieldParameters : fFieldParameters) {
458 if (fieldParameters->GetVolumeName() == volumeName) {
459 // G4cout << "Found field parameters for " << volumeName << G4endl;
460 return fieldParameters;
461 }
462 }
463
465 "G4FieldBuilder::GetFieldParameters:", "GeomFieldParameters0001",
466 JustWarning, "Field parameters not found.");
467 return nullptr;
468}

◆ Instance()

G4FieldBuilder * G4FieldBuilder::Instance ( )
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.

53{
54 static G4FieldBuilder instance;
55 fgIsInstance = true;
56 return &instance;
57}
G4TemplateRNGHelper< G4long > * G4TemplateRNGHelper< G4long >::instance

Referenced by G4RunManager::ReinitializeGeometry().

◆ IsInstance()

G4bool G4FieldBuilder::IsInstance ( )
inlinestatic

Return the information if an instance exists.

Definition at line 219 of file G4FieldBuilder.hh.

220{
221 // Return the information if an instance exists
222 return fgIsInstance;
223}

Referenced by G4RunManager::ReinitializeGeometry().

◆ Reinitialize()

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.

275{
276 // Reinitialize if geometry has been modified.
277 // This function is called by G4RunManager during ReinitializeGeometry()
278
279 if (fVerboseLevel > 1) {
280 G4cout << "G4FieldBuilder::Reinitialize" << G4endl;
281 }
282
283 // Delete global field
284 delete fGlobalField;
285 fGlobalField = nullptr;
286
287 // Delete local fields if defined
288 if (fLocalFields.Get() != nullptr) {
289 for (auto vectorElement : GetLocalFields()) {
290 delete vectorElement.second;
291 }
292 // Clear local fields map
293 GetLocalFields().clear();
294 }
295
296 // Clear field setups if defined
297 if (fFieldSetups.Get() != nullptr) {
298 for (auto fieldSetup : GetFieldSetups()) {
299 fieldSetup->SetG4Field(nullptr);
300 fieldSetup->Clear();
301 }
302 }
303
304 fIsConstructed = false;
305
306 if (fVerboseLevel > 1) {
307 G4cout << "End of G4FieldBuilder::Reinitialize" << G4endl;
308 }
309}

Referenced by G4RunManager::ReinitializeGeometry().

◆ SetFieldType()

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.

313{
314// Default field type is set to kMagnetic;
315// this function should be called for other than magnetic field
316// in order to update the default equation and stepper types.
317
318 if (fIsConstructed) {
320 "G4FieldBuilder::SetFieldType:", "GeomFieldParameters0001",
321 JustWarning, "Field was already constructed.");
322 return;
323 }
324
325 fFieldParameters[0]->SetFieldType(fieldType);
326
327 // change default equation and stepper if other than magnetic field
328 if (fieldType == kElectroMagnetic) {
329 fFieldParameters[0]->SetEquationType(kEqElectroMagnetic);
330 fFieldParameters[0]->SetStepperType(kClassicalRK4);
331 }
332}
@ kEqElectroMagnetic
@ kElectroMagnetic
electromagnetic field
@ kClassicalRK4
G4ClassicalRK4.

◆ SetGlobalField()

void G4FieldBuilder::SetGlobalField ( G4Field * field,
G4bool warn = false )

Definition at line 335 of file G4FieldBuilder.cc.

336{
337 // Set or reset the global field.
338 // Update field objects, if the field was already constructed.
339 // If warn, issue a warning if the previous field is deleted.
340
341 if (fGlobalField != nullptr && warn) {
343 "G4FieldBuilder::SetGlobalField:", "GeomFieldParameters0001",
344 JustWarning, "The global field already exists, it will be deleted.");
345 }
346 delete fGlobalField;
347 fGlobalField = field;
348
349 if (fIsConstructed) {
350 // update the global field objects if already constructed
351 GetFieldSetups()[0]->SetG4Field(field);
352 GetFieldSetups()[0]->Update();
353 }
354}

◆ SetLocalField()

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.

359{
360 // Register the local field in the map.
361 // Update field objects, if the field was already constructed.
362 // If warn, issue a warning if the previous field is deleted.
363
364 if (lv == nullptr) {
365 G4cerr << "Cannot register local field without Logical volume." << G4endl;
366 return;
367 }
368
369 if (fLocalFields.Get() == nullptr) {
370 auto localFields = new std::vector<std::pair<G4LogicalVolume*, G4Field*>>();
371 fLocalFields.Put(localFields);
372 }
373
374 auto it = GetLocalFields().begin();
375 for (it = GetLocalFields().begin(); it != GetLocalFields().end(); ++it) {
376 if (it->first == lv) break;
377 }
378
379 if (it != GetLocalFields().end()) {
380 // replaced field if already in the map
381 if (warn) {
383 descr << "Logical volume " << lv->GetName() << " has already field."
384 " It will be deleted.";
386 "G4FieldBuilder::SetLocalField:", "GeomFieldParameters0001",
387 JustWarning, descr);
388 }
389 delete it->second;
390 it->second = field;
391 }
392 else {
393 // register field in the map
394 GetLocalFields().push_back(std::pair(lv,field));
395 }
396
397 if (fIsConstructed) {
398 // update this local field objects if already constructed
399 auto fieldSetup = GetFieldSetup(lv);
400 if (fieldSetup == nullptr) {
402 "G4FieldBuilder::SetLocalField:", "GeomFieldParameters0001",
403 JustWarning, "Cannot get field setup for a local field.");
404 return;
405 }
406 fieldSetup->SetG4Field(field);
407 fieldSetup->Update();
408 }
409}
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cerr
const G4String & GetName() const

◆ SetUserEquationOfMotion()

void G4FieldBuilder::SetUserEquationOfMotion ( G4EquationOfMotion * equation,
G4String volumeName = "" )

Set user equation of motion.

Definition at line 412 of file G4FieldBuilder.cc.

414{
415 // Set user equation of motion
416
417 if (!volumeName.size()) {
418 // global field
419 fFieldParameters[0]->SetUserEquationOfMotion(equation);
420 }
421 else {
422 // local field
423 // Get or create user field parameters
424 G4FieldParameters* fieldParameters =
425 GetOrCreateFieldParameters(volumeName);
426 fieldParameters->SetUserEquationOfMotion(equation);
427 }
428}
void SetUserEquationOfMotion(G4EquationOfMotion *equation)
Set user defined equation of motion.

◆ SetUserStepper()

void G4FieldBuilder::SetUserStepper ( G4MagIntegratorStepper * stepper,
G4String volumeName = "" )

Set user stepper.

Definition at line 431 of file G4FieldBuilder.cc.

433{
434 // Set user stepper
435
436 if (!volumeName.size()) {
437 // global field
438 fFieldParameters[0]->SetUserStepper(stepper);
439 }
440 else {
441 // local field
442 // Get or create user field parameters
443 G4FieldParameters* fieldParameters =
444 GetOrCreateFieldParameters(volumeName);
445 fieldParameters->SetUserStepper(stepper);
446 }
447}
void SetUserStepper(G4MagIntegratorStepper *stepper)
Set user defined integrator of particle's equation of motion.

◆ SetVerboseLevel()

void G4FieldBuilder::SetVerboseLevel ( G4int value)
inline

Set verbose level.

Definition at line 225 of file G4FieldBuilder.hh.

226{
227 // Set verbose level
228 fVerboseLevel = value;
229}

◆ UpdateField()

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.

253{
254 // Update magnetic field.
255 // This function must be called if the field parameters were changed
256 // in other than PreInit> phase.
257
258 if (fFieldSetups.Get() == nullptr) {
260 "G4FieldBuilder::UpdateField", "GeomFieldParameters0001",
261 JustWarning, "No field setup is defined.");
262 return;
263 }
264
265 if (fVerboseLevel > 1) {
266 G4cout << "G4FieldBuilder::UpdateField" << G4endl;
267 }
268
269 // Update the objects defined in G4FieldSetup's
270 UpdateFieldSetups();
271}

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