Class Reference for E1039 Core & Analysis Software
GFField.cxx
Go to the documentation of this file.
1 #include "GFField.h"
2 
3 #include <iostream>
4 
5 #include <CLHEP/Units/SystemOfUnits.h>
6 
7 namespace SQGenFit
8 {
9 GFField::GFField(const PHField* field):
10  _field(field),
11  _scale(1.),
12  _offset(0.)
13 {
14  _scale = 1.;
15  _disable = false;
16 }
17 
18 TVector3 GFField::get(const TVector3& pos) const
19 {
20  double x = pos.X();
21  double y = pos.Y();
22  double z = pos.Z();
23 
24  double Bx, By, Bz;
25  get(x, y, z, Bx, By, Bz);
26 
27  return TVector3(Bx, By, Bz);
28 }
29 
30 void GFField::get(const double& x, const double& y, const double& z, double& Bx, double& By, double& Bz) const
31 {
32  if(_disable)
33  {
34  Bx = 0.;
35  By = 0.;
36  Bz = 0.;
37  return;
38  }
39 
40  const double Point[] = {x*CLHEP::cm, y*CLHEP::cm, (z + _offset)*CLHEP::cm, 0.};
41  double Bfield[6];
42  for(int i = 0; i < 6; ++i)
43  {
44  Bfield[i] = 0.;
45  }
46 
47  _field->GetFieldValue(Point, Bfield);
48  Bx = _scale*Bfield[0]/CLHEP::kilogauss;
49  By = _scale*Bfield[1]/CLHEP::kilogauss;
50  Bz = _scale*Bfield[2]/CLHEP::kilogauss;
51 }
52 
53 }
transient DST object for field storage and access
Definition: PHField.h:14
virtual void GetFieldValue(const double Point[4], double *Bfield) const =0
TVector3 get(const TVector3 &pos) const
Definition: GFField.cxx:18
GFField(const PHField *field)
Definition: GFField.cxx:9