BDSIM
BDSIM is a Geant4 extension toolkit for simulation of particle transport in accelerator beamlines.
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
BDSFieldFactory Class Reference

Factory that produces fields and their associated objects. More...

#include <BDSFieldFactory.hh>

Collaboration diagram for BDSFieldFactory:
Collaboration graph

Public Member Functions

BDSFieldObjectsCreateField (const BDSFieldInfo &info, const BDSMagnetStrength *scalingStrength=nullptr, const G4String &scalingKey="none")
 Main interface to field factory.
 
BDSFieldInfoGetDefinition (const G4String &name) const
 
BDSModulatorInfoGetModulatorDefinition (const G4String &modulatorName) const
 

Static Public Member Functions

static BDSFieldFactoryInstance ()
 Public accessor method for singleton pattern.
 
static void SetDesignParticle (const BDSParticleDefinition *designParticleIn)
 Update the internal cache of the rigidity.
 
static void SetPrimaryGeneratorAction (BDSPrimaryGeneratorAction *pgaIn)
 Update the internal cache of the primary generator action.
 
static BDSInterpolatorType DefaultInterpolatorType (G4int numberOfDimensions)
 Suggest a default interpolator.
 
static G4double CalculateGlobalPhase (G4double oscillatorFrequency, G4double tOffsetIn)
 
static G4double CalculateGlobalPhase (const BDSModulatorInfo &modulatorInfo, const BDSFieldInfo &fieldInfo)
 

Private Member Functions

BDSFieldObjectsCreateFieldMag (const BDSFieldInfo &info, const BDSMagnetStrength *scalingStrength=nullptr, const G4String &scalingKey="none")
 Create a purely magnetic field.
 
BDSFieldObjectsCreateFieldEM (const BDSFieldInfo &info)
 Create a general EM field.
 
BDSFieldObjectsCreateFieldE (const BDSFieldInfo &info)
 Create an electric field.
 
BDSFieldObjectsCreateFieldIrregular (const BDSFieldInfo &info)
 Create an irregular (special) field.
 
BDSFieldMagCreateFieldMagRaw (const BDSFieldInfo &info, const BDSMagnetStrength *scalingStrength=nullptr, const G4String &scalingKey="none")
 Creat just the magnetic field object.
 
BDSFieldECreateFieldERaw (const BDSFieldInfo &info)
 Creat just the electric field object.
 
G4MagIntegratorStepper * CreateIntegratorMag (const BDSFieldInfo &info, G4Mag_EqRhs *eqOfM, const BDSMagnetStrength *strength)
 
G4MagIntegratorStepper * CreateIntegratorEM (const BDSFieldInfo &info, G4EquationOfMotion *eqOfM)
 
G4MagIntegratorStepper * CreateIntegratorE (const BDSFieldInfo &info, G4EquationOfMotion *eqOfM)
 
BDSFieldObjectsCreateTeleporter (const BDSFieldInfo &info)
 
BDSFieldObjectsCreateRMatrix (const BDSFieldInfo &info)
 Create special rmatrix 'field' that applies an rmatrix.
 
BDSFieldObjectsCreateCavityFringe (const BDSFieldInfo &info)
 Create special rf cavity fringe 'field' that applies an rmatrix.
 
BDSFieldObjectsCreateParallelTransport (const BDSFieldInfo &info)
 
G4double GetOuterScaling (const BDSMagnetStrength *st) const
 Return the parameter "outerScaling" from strength st, but default to 1.
 
BDSModulatorCreateModulator (const BDSModulatorInfo *modulatorRecipe, const BDSFieldInfo &info) const
 Create the necessary modulator.
 
 BDSFieldFactory ()
 Private default constructor as singleton class.
 
void PrepareFieldDefinitions (const std::vector< GMAD::Field > &definitions, G4double defaultBRho)
 Prepare all required definitions that can be used dynamically.
 
void PrepareModulatorDefinitions (const std::vector< GMAD::Modulator > &definitions)
 Prepare all required modulator definitions that can be used dynamically.
 
G4double ConvertToDoubleWithException (const G4String &value, const G4String &parameterNameForError) const
 Convert the string 'value' to a double. Throw an exception including the parameterNameForError if it doesn't work.
 
void PrepareFieldStrengthFromParameters (BDSMagnetStrength *st, const G4String &fieldParameters, G4double &poleTipRadius) const
 

Private Attributes

std::map< G4String, BDSFieldInfo * > parserDefinitions
 BDSFieldInfo definitions prepare from parser vector of definitions.
 
std::map< G4String, BDSModulatorInfo * > parserModulatorDefinitions
 
G4bool useOldMultipoleOuterFields
 

Static Private Attributes

static BDSFieldFactoryinstance = nullptr
 Instance - singleton pattern.
 
static const BDSParticleDefinitiondesignParticle = nullptr
 Cache of design particle for fields.
 
static BDSPrimaryGeneratorActionprimaryGeneratorAction = nullptr
 Cache of primary generator action.
 

Detailed Description

Factory that produces fields and their associated objects.

Field objects are created according to a BDSFieldType and the associated and required Geant4 objects to properly implement a field. These are packaged together in one object. This factory does not own any of its products. Construction follows in this order:

1 field 2 equation of motion (based on field object) 3 integrator 4 chord finder 5 field manager 6 package it up

This also makes use of BDSParser singleton class to create a series of BDSFieldInfo field specifications as defined by the parser.

This owns the converted modulator definitions (BDSModulatorInfo*) despite the design of a factory that should give up ownership. This is so we don't duplicate the instance for the sake of ownership.

Author
Laurie Nevay

Definition at line 76 of file BDSFieldFactory.hh.

Constructor & Destructor Documentation

◆ ~BDSFieldFactory()

BDSFieldFactory::~BDSFieldFactory ( )

Definition at line 180 of file BDSFieldFactory.cc.

◆ BDSFieldFactory()

BDSFieldFactory::BDSFieldFactory ( )
private

Private default constructor as singleton class.

Definition at line 165 of file BDSFieldFactory.cc.

References BDSParticleDefinition::BRho(), designParticle, BDSGlobalConstants::Instance(), BDSParser::Instance(), BDSParser::IsInitialised(), PrepareFieldDefinitions(), and PrepareModulatorDefinitions().

Referenced by Instance().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Function Documentation

◆ CalculateGlobalPhase() [1/2]

G4double BDSFieldFactory::CalculateGlobalPhase ( const BDSModulatorInfo modulatorInfo,
const BDSFieldInfo fieldInfo 
)
static

Definition at line 414 of file BDSFieldFactory.cc.

◆ CalculateGlobalPhase() [2/2]

G4double BDSFieldFactory::CalculateGlobalPhase ( G4double  oscillatorFrequency,
G4double  tOffsetIn 
)
static

Definition at line 400 of file BDSFieldFactory.cc.

◆ ConvertToDoubleWithException()

G4double BDSFieldFactory::ConvertToDoubleWithException ( const G4String &  value,
const G4String &  parameterNameForError 
) const
private

Convert the string 'value' to a double. Throw an exception including the parameterNameForError if it doesn't work.

Definition at line 434 of file BDSFieldFactory.cc.

Referenced by PrepareFieldStrengthFromParameters().

Here is the caller graph for this function:

◆ CreateCavityFringe()

BDSFieldObjects * BDSFieldFactory::CreateCavityFringe ( const BDSFieldInfo info)
private

Create special rf cavity fringe 'field' that applies an rmatrix.

Definition at line 1267 of file BDSFieldFactory.cc.

References BDSFieldInfo::BeamPipeRadius(), and BDSFieldInfo::MagnetStrength().

Referenced by CreateFieldIrregular().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateField()

BDSFieldObjects * BDSFieldFactory::CreateField ( const BDSFieldInfo info,
const BDSMagnetStrength scalingStrength = nullptr,
const G4String &  scalingKey = "none" 
)

◆ CreateFieldE()

BDSFieldObjects * BDSFieldFactory::CreateFieldE ( const BDSFieldInfo info)
private

Create an electric field.

Definition at line 935 of file BDSFieldFactory.cc.

References CreateFieldERaw(), CreateIntegratorE(), BDSFieldInfo::ProvideGlobal(), and BDSFieldInfo::UsePlacementWorldTransform().

Referenced by CreateField().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateFieldEM()

BDSFieldObjects * BDSFieldFactory::CreateFieldEM ( const BDSFieldInfo info)
private

◆ CreateFieldERaw()

BDSFieldE * BDSFieldFactory::CreateFieldERaw ( const BDSFieldInfo info)
private

◆ CreateFieldIrregular()

BDSFieldObjects * BDSFieldFactory::CreateFieldIrregular ( const BDSFieldInfo info)
private

Create an irregular (special) field.

Definition at line 1023 of file BDSFieldFactory.cc.

References CreateCavityFringe(), CreateParallelTransport(), CreateRMatrix(), CreateTeleporter(), BDSFieldInfo::FieldType(), and BDSTypeSafeEnum< def, inner >::underlying().

Referenced by CreateField().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateFieldMag()

BDSFieldObjects * BDSFieldFactory::CreateFieldMag ( const BDSFieldInfo info,
const BDSMagnetStrength scalingStrength = nullptr,
const G4String &  scalingKey = "none" 
)
private

Create a purely magnetic field.

Definition at line 575 of file BDSFieldFactory.cc.

References CreateFieldMagRaw(), CreateIntegratorMag(), BDSFieldInfo::MagnetStrength(), BDSFieldInfo::ProvideGlobal(), and BDSFieldInfo::UsePlacementWorldTransform().

Referenced by CreateField().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateFieldMagRaw()

BDSFieldMag * BDSFieldFactory::CreateFieldMagRaw ( const BDSFieldInfo info,
const BDSMagnetStrength scalingStrength = nullptr,
const G4String &  scalingKey = "none" 
)
private

◆ CreateIntegratorE()

G4MagIntegratorStepper * BDSFieldFactory::CreateIntegratorE ( const BDSFieldInfo info,
G4EquationOfMotion *  eqOfM 
)
private

Create an integrator for a general E field. Same ones as EM but keep this method for clarity as Geant4 unclear - only based on their examples. examples/extended/field/field02/src/F02ElectricFieldSetup.cc

Definition at line 1227 of file BDSFieldFactory.cc.

References CreateIntegratorEM().

Referenced by CreateFieldE().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateIntegratorEM()

G4MagIntegratorStepper * BDSFieldFactory::CreateIntegratorEM ( const BDSFieldInfo info,
G4EquationOfMotion *  eqOfM 
)
private

Create an integrator for a general EM field. As it's a general field, this takes a G4EquationOfMotion* equation of motion instance.

Definition at line 1131 of file BDSFieldFactory.cc.

References BDSFieldInfo::IntegratorType(), and BDSTypeSafeEnum< def, inner >::underlying().

Referenced by CreateFieldEM(), CreateIntegratorE(), and CreateIntegratorMag().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateIntegratorMag()

G4MagIntegratorStepper * BDSFieldFactory::CreateIntegratorMag ( const BDSFieldInfo info,
G4Mag_EqRhs *  eqOfM,
const BDSMagnetStrength strength 
)
private

Create a purely magnetic integrator. As it's purely magnetic, this requires a G4Mag_EqRhs* equation of motion instance.

Definition at line 1043 of file BDSFieldFactory.cc.

References BDSFieldInfo::BeamPipeRadius(), BDSFieldInfo::BRho(), CreateIntegratorEM(), designParticle, BDSGlobalConstants::Instance(), BDSFieldInfo::IntegratorType(), BDSFieldInfo::Tilt(), and BDSTypeSafeEnum< def, inner >::underlying().

Referenced by CreateFieldMag().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateModulator()

BDSModulator * BDSFieldFactory::CreateModulator ( const BDSModulatorInfo modulatorRecipe,
const BDSFieldInfo info 
) const
private

◆ CreateParallelTransport()

BDSFieldObjects * BDSFieldFactory::CreateParallelTransport ( const BDSFieldInfo info)
private

Create special parallel transport 'field' that applies a parallel transport along beam line.

Definition at line 1277 of file BDSFieldFactory.cc.

Referenced by CreateFieldIrregular().

Here is the caller graph for this function:

◆ CreateRMatrix()

BDSFieldObjects * BDSFieldFactory::CreateRMatrix ( const BDSFieldInfo info)
private

Create special rmatrix 'field' that applies an rmatrix.

Definition at line 1257 of file BDSFieldFactory.cc.

References BDSFieldInfo::BeamPipeRadius(), and BDSFieldInfo::MagnetStrength().

Referenced by CreateFieldIrregular().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CreateTeleporter()

BDSFieldObjects * BDSFieldFactory::CreateTeleporter ( const BDSFieldInfo info)
private

Create a special teleporter 'field' that shifts particles at the end of rings to match up correctly.

Definition at line 1233 of file BDSFieldFactory.cc.

References designParticle, BDSGlobalConstants::Instance(), BDSFieldInfo::MagnetStrength(), primaryGeneratorAction, BDSPrimaryGeneratorAction::RegisterPTCOneTurnMap(), and BDSFieldInfo::TransformComplete().

Referenced by CreateFieldIrregular().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ DefaultInterpolatorType()

BDSInterpolatorType BDSFieldFactory::DefaultInterpolatorType ( G4int  numberOfDimensions)
static

Suggest a default interpolator.

Definition at line 556 of file BDSFieldFactory.cc.

Referenced by PrepareFieldDefinitions().

Here is the caller graph for this function:

◆ GetDefinition()

BDSFieldInfo * BDSFieldFactory::GetDefinition ( const G4String &  name) const

Return a BDSFieldInfo instance from the parser definitions. Will exit if no matching field definition is found but will return nullptr if empty string supplied.

Definition at line 483 of file BDSFieldFactory.cc.

References parserDefinitions.

Referenced by CreateFieldERaw(), and CreateFieldMagRaw().

Here is the caller graph for this function:

◆ GetModulatorDefinition()

BDSModulatorInfo * BDSFieldFactory::GetModulatorDefinition ( const G4String &  modulatorName) const

Return a BDSModulatorInfo instance from the parser definitions. Will exit if no matching modulator definition is found but will return nullptr if empty string supplied.

Definition at line 502 of file BDSFieldFactory.cc.

Referenced by BDSComponentFactory::ModulatorDefinition(), and PrepareFieldDefinitions().

Here is the caller graph for this function:

◆ GetOuterScaling()

G4double BDSFieldFactory::GetOuterScaling ( const BDSMagnetStrength st) const
private

Return the parameter "outerScaling" from strength st, but default to 1.

Definition at line 1287 of file BDSFieldFactory.cc.

References BDSMagnetStrength::KeyHasBeenSet().

Referenced by CreateFieldMagRaw().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Instance()

BDSFieldFactory * BDSFieldFactory::Instance ( )
static

Public accessor method for singleton pattern.

Definition at line 158 of file BDSFieldFactory.cc.

References BDSFieldFactory(), and instance.

Referenced by BDS::BuildPlacementGeometry(), BDSComponentFactory::ModulatorDefinition(), BDSComponentFactory::SetFieldDefinitions(), BDSIM::~BDSIM(), and BDSIMLink::~BDSIMLink().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PrepareFieldDefinitions()

void BDSFieldFactory::PrepareFieldDefinitions ( const std::vector< GMAD::Field > &  definitions,
G4double  defaultBRho 
)
private

◆ PrepareFieldStrengthFromParameters()

void BDSFieldFactory::PrepareFieldStrengthFromParameters ( BDSMagnetStrength st,
const G4String &  fieldParameters,
G4double &  poleTipRadius 
) const
private

Fill an instance of BDSMagnetStrength with parameters as defined in a string "fieldParameters" that is assumed to be a space-delimited set of parameter=value strings.

Definition at line 450 of file BDSFieldFactory.cc.

References BDSMagnetStrength::AllKeys(), ConvertToDoubleWithException(), BDS::GetUserParametersMap(), BDSMagnetStrength::Unit(), and BDSMagnetStrength::ValidKey().

Referenced by PrepareFieldDefinitions().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PrepareModulatorDefinitions()

void BDSFieldFactory::PrepareModulatorDefinitions ( const std::vector< GMAD::Modulator > &  definitions)
private

Prepare all required modulator definitions that can be used dynamically.

Definition at line 373 of file BDSFieldFactory.cc.

References BDS::DetermineModulatorType().

Referenced by BDSFieldFactory().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetDesignParticle()

static void BDSFieldFactory::SetDesignParticle ( const BDSParticleDefinition designParticleIn)
inlinestatic

Update the internal cache of the rigidity.

Definition at line 83 of file BDSFieldFactory.hh.

References designParticle.

Referenced by BDSIM::Initialise().

Here is the caller graph for this function:

◆ SetPrimaryGeneratorAction()

static void BDSFieldFactory::SetPrimaryGeneratorAction ( BDSPrimaryGeneratorAction pgaIn)
inlinestatic

Update the internal cache of the primary generator action.

Definition at line 86 of file BDSFieldFactory.hh.

References primaryGeneratorAction.

Referenced by BDSIM::Initialise().

Here is the caller graph for this function:

Field Documentation

◆ designParticle

const BDSParticleDefinition * BDSFieldFactory::designParticle = nullptr
staticprivate

Cache of design particle for fields.

Definition at line 203 of file BDSFieldFactory.hh.

Referenced by BDSFieldFactory(), CreateIntegratorMag(), CreateTeleporter(), and SetDesignParticle().

◆ instance

BDSFieldFactory * BDSFieldFactory::instance = nullptr
staticprivate

Instance - singleton pattern.

Definition at line 179 of file BDSFieldFactory.hh.

Referenced by Instance().

◆ parserDefinitions

std::map<G4String, BDSFieldInfo*> BDSFieldFactory::parserDefinitions
private

BDSFieldInfo definitions prepare from parser vector of definitions.

Definition at line 199 of file BDSFieldFactory.hh.

Referenced by GetDefinition(), and PrepareFieldDefinitions().

◆ parserModulatorDefinitions

std::map<G4String, BDSModulatorInfo*> BDSFieldFactory::parserModulatorDefinitions
private

Definition at line 200 of file BDSFieldFactory.hh.

◆ primaryGeneratorAction

BDSPrimaryGeneratorAction * BDSFieldFactory::primaryGeneratorAction = nullptr
staticprivate

Cache of primary generator action.

Definition at line 206 of file BDSFieldFactory.hh.

Referenced by CreateTeleporter(), and SetPrimaryGeneratorAction().

◆ useOldMultipoleOuterFields

G4bool BDSFieldFactory::useOldMultipoleOuterFields
private

Definition at line 208 of file BDSFieldFactory.hh.


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