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

#include <G4SextupoleMagField.hh>

+ Inheritance diagram for G4SextupoleMagField:

Public Member Functions

 G4SextupoleMagField (G4double pGradient)
 
 G4SextupoleMagField (G4double pGradient, const G4ThreeVector &pOrigin, G4RotationMatrix *pMatrix)
 
 ~G4SextupoleMagField () override
 
void GetFieldValue (const G4double yTrack[], G4double B[]) const override
 
G4FieldClone () const override
 
- Public Member Functions inherited from G4MagneticField
 G4MagneticField ()
 
 ~G4MagneticField () override
 
 G4MagneticField (const G4MagneticField &r)
 
G4MagneticFieldoperator= (const G4MagneticField &p)
 
G4bool DoesFieldChangeEnergy () const override
 
void GetFieldValue (const G4double Point[4], G4double *Bfield) const override=0
 
- Public Member Functions inherited from G4Field
 G4Field (G4bool gravityOn=false)
 
 G4Field (const G4Field &)
 
virtual ~G4Field ()
 
G4Fieldoperator= (const G4Field &p)
 
G4bool IsGravityActive () const
 
void SetGravityActive (G4bool OnOffFlag)
 

Additional Inherited Members

- Static Public Attributes inherited from G4Field
static constexpr G4int MAX_NUMBER_OF_COMPONENTS = 24
 

Detailed Description

Definition at line 44 of file G4SextupoleMagField.hh.

Constructor & Destructor Documentation

◆ G4SextupoleMagField() [1/2]

G4SextupoleMagField::G4SextupoleMagField ( G4double pGradient)

Definition at line 40 of file G4SextupoleMagField.cc.

41{
42 fGradient = pGradient;
43 fpMatrix = &IdentityMatrix;
44}

Referenced by Clone().

◆ G4SextupoleMagField() [2/2]

G4SextupoleMagField::G4SextupoleMagField ( G4double pGradient,
const G4ThreeVector & pOrigin,
G4RotationMatrix * pMatrix )

Definition at line 46 of file G4SextupoleMagField.cc.

49{
50 fGradient = pGradient ;
51 fOrigin = pOrigin ;
52 fpMatrix = pMatrix ;
53}

◆ ~G4SextupoleMagField()

G4SextupoleMagField::~G4SextupoleMagField ( )
overridedefault

Member Function Documentation

◆ Clone()

G4Field * G4SextupoleMagField::Clone ( ) const
overridevirtual

Reimplemented from G4Field.

Definition at line 55 of file G4SextupoleMagField.cc.

56{
57 return new G4SextupoleMagField(fGradient, fOrigin, fpMatrix);
58}
G4SextupoleMagField(G4double pGradient)

◆ GetFieldValue()

void G4SextupoleMagField::GetFieldValue ( const G4double yTrack[],
G4double B[] ) const
override

Definition at line 64 of file G4SextupoleMagField.cc.

67{
69 y[0] - fOrigin.x(),
70 y[1] - fOrigin.y(),
71 y[2] - fOrigin.z());
72
73 const G4ThreeVector r_local = (*fpMatrix) * r_global;
74 const G4ThreeVector B_local( fGradient * r_local.x() * r_local.y(),fGradient * ( std::pow(r_local.x(),2) - std::pow(r_local.y(),2) )/2 ,0);
75 const G4ThreeVector B_global = fpMatrix->inverse() * B_local;
76
77 B[0] = B_global.x() ;
78 B[1] = B_global.y() ;
79 B[2] = B_global.z() ;
80}
G4double B(G4double temperature)
CLHEP::Hep3Vector G4ThreeVector
double z() const
double x() const
double y() const
HepRotation inverse() const

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