12 , fieldstr(magfield_rescale)
29 std::cout <<
"\n================ Begin Construct Mag Field =====================" << std::endl;
30 std::cout <<
"\n-----------------------------------------------------------"
31 <<
"\n Magnetic field Module - Verbosity:"
32 <<
"\n-----------------------------------------------------------\n";
36 if(
filename.find(
".root") != std::string::npos)
38 TFile* inputFile = TFile::Open(
filename.c_str());
41 std::cout <<
"SQField3DCartesian: cannot find the input ROOT field map, abort " <<
filename << std::endl;
44 std::cout <<
"SQField3DCartesian: loading field map from ROOT file " <<
filename << std::endl;
46 float x, y, z, Bx, By, Bz;
47 TTree* inputTree = (TTree*)inputFile->Get(
"fieldmap");
48 inputTree->SetBranchAddress(
"x", &x);
49 inputTree->SetBranchAddress(
"y", &y);
50 inputTree->SetBranchAddress(
"z", &z);
51 inputTree->SetBranchAddress(
"Bx", &Bx);
52 inputTree->SetBranchAddress(
"By", &By);
53 inputTree->SetBranchAddress(
"Bz", &Bz);
55 unsigned int nRecords = inputTree->GetEntries();
57 for(
unsigned int i = 0; i < nRecords; ++i)
59 inputTree->GetEntry(i);
62 p.
x = x*cm; p.
y = y*cm; p.
z = z*cm;
78 std::cout <<
"SQField3DCartesian: cannot find the input ASCII field map, abort " <<
filename << std::endl;
81 std::cout <<
"SQField3DCartesian: loading field map from ASCII file " <<
filename << std::endl;
85 while(getline(fin, line))
87 float x, y, z, Bx, By, Bz;
88 std::stringstream ss(line);
89 ss >> x >> y >> z >> Bx >> By >> Bz;
92 p.
x = x*cm; p.
y = y*cm; p.
z = z*cm;
126 std::cout <<
" its demensions and ranges of the field: " <<
fpoints.size() << std::endl;
127 std::cout <<
" X: " <<
xsteps <<
" bins, " <<
xmin/cm <<
" cm -- " <<
xmax/cm <<
" cm, step size = " <<
xstepsize/cm <<
" cm." << std::endl;
128 std::cout <<
" Y: " <<
ysteps <<
" bins, " <<
ymin/cm <<
" cm -- " <<
ymax/cm <<
" cm, step size = " <<
ystepsize/cm <<
" cm." << std::endl;
129 std::cout <<
" Z: " <<
zsteps <<
" bins, " <<
zmin/cm <<
" cm -- " <<
zmax/cm <<
" cm, step size = " <<
zstepsize/cm <<
" cm." << std::endl;
131 std::cout <<
"\n================= End Construct Mag Field ======================\n" << std::endl;
146 for(
int i = 0; i < 3; ++i) Bfield[i] = 0.;
158 if(ubx < 0 || uby < 0 || ubz < 0 ||
195 TVector3 w1 = i1*(1. - yp) + i2*yp;
196 TVector3 w2 = j1*(1. - yp) + j2*yp;
198 TVector3 res = w1*(1. - xp) + w2*xp;
std::vector< FieldPoint > fpoints
void GetFieldValue(const double Point[4], double *Bfield) const
int GetGlobalIndex(int xIdx, int yIdx, int zIdx) const
return the index of the global index based on the local index
virtual ~SQField3DCartesian()
SQField3DCartesian(const std::string &fname, const float magfield_rescale=1.0)