Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4LineCurrentMagField Class Reference

#include <G4LineCurrentMagField.hh>

Inheritance diagram for G4LineCurrentMagField:
G4MagneticField G4ElectroMagneticField G4Field

Public Member Functions

 G4LineCurrentMagField (G4double pFieldConstant)
 
 ~G4LineCurrentMagField ()
 
void GetFieldValue (const G4double yTrack[], G4double B[]) const
 
G4LineCurrentMagFieldClone () const
 
- Public Member Functions inherited from G4MagneticField
 G4MagneticField ()
 
virtual ~G4MagneticField ()
 
 G4MagneticField (const G4MagneticField &r)
 
G4MagneticFieldoperator= (const G4MagneticField &p)
 
G4bool DoesFieldChangeEnergy () const
 
virtual void GetFieldValue (const G4double Point[4], G4double *Bfield) const =0
 
- Public Member Functions inherited from G4ElectroMagneticField
 G4ElectroMagneticField ()
 
virtual ~G4ElectroMagneticField ()
 
 G4ElectroMagneticField (const G4ElectroMagneticField &r)
 
G4ElectroMagneticFieldoperator= (const G4ElectroMagneticField &p)
 
- 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)
 

Detailed Description

Definition at line 48 of file G4LineCurrentMagField.hh.

Constructor & Destructor Documentation

G4LineCurrentMagField::G4LineCurrentMagField ( G4double  pFieldConstant)

Definition at line 32 of file G4LineCurrentMagField.cc.

Referenced by Clone().

33 {
34  fFieldConstant = pFieldConstant ;
35 }
G4LineCurrentMagField::~G4LineCurrentMagField ( )

Definition at line 42 of file G4LineCurrentMagField.cc.

43 {
44 }

Member Function Documentation

G4LineCurrentMagField * G4LineCurrentMagField::Clone ( ) const
virtual

Reimplemented from G4Field.

Definition at line 36 of file G4LineCurrentMagField.cc.

References G4LineCurrentMagField().

37 {
38  return new G4LineCurrentMagField( this->fFieldConstant );
39 }
G4LineCurrentMagField(G4double pFieldConstant)
void G4LineCurrentMagField::GetFieldValue ( const G4double  yTrack[],
G4double  B[] 
) const

Definition at line 49 of file G4LineCurrentMagField.cc.

References test::a, and test::x.

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

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