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

#include <G4LineCurrentMagField.hh>

+ Inheritance diagram for G4LineCurrentMagField:

Public Member Functions

 G4LineCurrentMagField (G4double pFieldConstant)
 
 ~G4LineCurrentMagField () 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 42 of file G4LineCurrentMagField.hh.

Constructor & Destructor Documentation

◆ G4LineCurrentMagField()

G4LineCurrentMagField::G4LineCurrentMagField ( G4double pFieldConstant)

Definition at line 34 of file G4LineCurrentMagField.cc.

35{
36 fFieldConstant = pFieldConstant ;
37}

Referenced by Clone().

◆ ~G4LineCurrentMagField()

G4LineCurrentMagField::~G4LineCurrentMagField ( )
overridedefault

Member Function Documentation

◆ Clone()

G4Field * G4LineCurrentMagField::Clone ( ) const
overridevirtual

Reimplemented from G4Field.

Definition at line 41 of file G4LineCurrentMagField.cc.

42{
43 return new G4LineCurrentMagField( fFieldConstant );
44}
G4LineCurrentMagField(G4double pFieldConstant)

◆ GetFieldValue()

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

Definition at line 52 of file G4LineCurrentMagField.cc.

54{
55 // G4double fFieldConstant = 100 ;
56 G4double a = 1.00 ; // mm
57 G4double x = a*yTrack[0], y = a*yTrack[1] ;
58 G4double x2 = x*x, y2 = y*y, r2 = x2 + y2 ;
59 G4double r = std::sqrt(r2+a*a) ;
60 G4double Br = fFieldConstant/r;
61 B[0] = -Br*y/r ;
62 B[1] = Br*x/r ;
63 B[2] = 0.0 ;
64}
G4double B(G4double temperature)
double G4double
Definition G4Types.hh:83

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