BOSS
7.1.3
BESIII Offline Software System
Loading...
Searching...
No Matches
ExtBesMagneticField.cxx
Go to the documentation of this file.
1
#include "
TrkExtAlg/ExtBesMagneticField.h
"
2
3
#include "GaudiKernel/AlgFactory.h"
4
#include "GaudiKernel/MsgStream.h"
5
#include "GaudiKernel/SvcFactory.h"
6
#include "GaudiKernel/ISvcLocator.h"
7
#include "GaudiKernel/SmartDataPtr.h"
8
#include "GaudiKernel/Bootstrap.h"
9
10
#include "G4FieldManager.hh"
11
#include "G4MagneticField.hh"
12
#include "globals.hh"
13
14
#include "CLHEP/Geometry/Vector3D.h"
15
#include "CLHEP/Geometry/Point3D.h"
16
#include "CLHEP/Units/PhysicalConstants.h"
17
18
#ifndef ENABLE_BACKWARDS_COMPATIBILITY
19
typedef
HepGeom::Point3D<double>
HepPoint3D
;
20
#endif
21
#ifndef ENABLE_BACKWARDS_COMPATIBILITY
22
typedef
HepGeom::Vector3D<double>
HepVector3D
;
23
#endif
24
25
26
using namespace
CLHEP;
27
28
ExtBesMagneticField::ExtBesMagneticField
()
29
{
30
GetFieldManager
()->SetDetectorField(
this
);
31
GetFieldManager
()->CreateChordFinder(
this
);
32
// GetFieldManager()->SetDeltaOneStep(0.5*mm);
33
// GetFieldManager()->SetDeltaIntersection(0.5*mm);
34
ISvcLocator* svcLocator = Gaudi::svcLocator();
35
StatusCode sc = svcLocator->service(
"MagneticFieldSvc"
,m_pIMF);
36
if
(sc!=StatusCode::SUCCESS) {
37
G4cout<<
"Unable to open Magnetic field service"
<<G4endl;
38
}
39
}
40
41
42
ExtBesMagneticField::~ExtBesMagneticField
(){}
43
44
45
void
ExtBesMagneticField::GetFieldValue
(
const
double
Point[3],
double
*
Bfield
)
const
46
{
47
double
x=Point[0];
48
double
y
=Point[1];
49
double
z=Point[2];
50
51
HepPoint3D
r(x,
y
,z);
52
HepVector3D
b
;
53
54
if
(m_pIMF->ifRealField() ==
true
)
55
m_pIMF->fieldVector(r,
b
);
56
else
57
m_pIMF->uniFieldVector(r,
b
);
58
59
Bfield
[0]=
b
.x();
60
Bfield
[1]=
b
.y();
61
Bfield
[2]=
b
.z();
62
}
63
64
#include "G4TransportationManager.hh"
65
66
G4FieldManager*
ExtBesMagneticField::GetFieldManager
()
67
{
68
return
G4TransportationManager::GetTransportationManager()->GetFieldManager();
69
}
70
HepVector3D
HepGeom::Vector3D< double > HepVector3D
Definition
Analysis/VertexFit/VertexFit-00-03-07/src/BField.cxx:13
ExtBesMagneticField.h
HepPoint3D
HepGeom::Point3D< double > HepPoint3D
Definition
Gam4pikp.cxx:37
Bfield
Definition
KalFitAlg/KalFitAlg-00-08-07/KalFitAlg/coil/Bfield.h:43
ExtBesMagneticField::ExtBesMagneticField
ExtBesMagneticField()
Definition
ExtBesMagneticField.cxx:28
ExtBesMagneticField::GetFieldValue
void GetFieldValue(const double Point[3], double *Bfield) const
Definition
ExtBesMagneticField.cxx:45
ExtBesMagneticField::GetFieldManager
G4FieldManager * GetFieldManager()
Definition
ExtBesMagneticField.cxx:66
ExtBesMagneticField::~ExtBesMagneticField
~ExtBesMagneticField()
Definition
ExtBesMagneticField.cxx:42
HepGeom::Point3D
Definition
IMagneticFieldSvc.h:15
HepGeom::Vector3D
Definition
IMagneticFieldSvc.h:14
y
double y[1000]
Definition
draw_charge_space_coarse_II.cxx:8
b
const double b
Definition
slope.cxx:9
7.1.3
Reconstruction
TrkExtAlg
TrkExtAlg-00-00-67
src
ExtBesMagneticField.cxx
Generated by
1.13.2