6 #include <boost/tuple/tuple.hpp>
7 #include <boost/tuple/tuple_comparison.hpp>
14 using namespace CLHEP;
16 #define UNIT_LENGTH cm
17 #define UNIT_FIELD tesla
22 typedef boost::tuple<double, double, double> trio;
45 for (
int i = 0; i < 2; i++)
47 for (
int j = 0; j < 2; j++)
49 for (
int k = 0; k < 2; k++)
51 for (
int l = 0; l < 3; l++)
53 xyz[i][j][k][l] = NAN;
59 cout <<
"\n================ Begin Construct Mag Field =====================" << endl;
60 cout <<
"\n-----------------------------------------------------------"
61 <<
"\n Magnetic field Module - Verbosity:"
62 <<
"\n-----------------------------------------------------------\n";
64 bool root_input =
false;
67 TFile *rootinput = TFile::Open(
filename.c_str());
70 cout <<
"\n could not open " <<
filename <<
" exiting now" << endl;
74 "Reading the field grid from "
79 TNtuple *field_map = (TNtuple *) gDirectory->Get(
"ntuple");
80 Float_t ROOT_X, ROOT_Y, ROOT_Z;
81 Float_t ROOT_BX, ROOT_BY, ROOT_BZ;
82 field_map->SetBranchAddress(
"x", &ROOT_X);
83 field_map->SetBranchAddress(
"y", &ROOT_Y);
84 field_map->SetBranchAddress(
"z", &ROOT_Z);
85 field_map->SetBranchAddress(
"Bx", &ROOT_BX);
86 field_map->SetBranchAddress(
"By", &ROOT_BY);
87 field_map->SetBranchAddress(
"Bz", &ROOT_BZ);
89 for (
int i = 0; i < field_map->GetEntries(); i++)
91 field_map->GetEntry(i);
99 if (rootinput) rootinput->Close();
104 cout <<
"Field map input file error." << endl;
107 file.getline(buffer,256);
109 float ROOT_X, ROOT_Y, ROOT_Z;
110 float ROOT_BX, ROOT_BY, ROOT_BZ;
111 while (file >> ROOT_X >> ROOT_Y >> ROOT_Z >> ROOT_BX >> ROOT_BY >> ROOT_BZ) {
151 std::cout <<
" its demensions and ranges of the field: " <<
fieldmap.size() << std::endl;
152 std::cout <<
" X: " <<
xvals.size() <<
" bins, " <<
xmin/cm <<
" cm -- " <<
xmax/cm <<
" cm." << std::endl;
153 std::cout <<
" Y: " <<
xvals.size() <<
" bins, " <<
ymin/cm <<
" cm -- " <<
ymax/cm <<
" cm." << std::endl;
154 std::cout <<
" Z: " <<
xvals.size() <<
" bins, " <<
zmin/cm <<
" cm -- " <<
zmax/cm <<
" cm." << std::endl;
157 auto key = boost::make_tuple(0, 0, 0);
162 << (magval->second).get<0>() <<
", "
163 << (magval->second).get<1>() <<
", "
164 << (magval->second).get<2>() <<
", "
170 cout <<
"\n================= End Construct Mag Field ======================\n"
189 static double xsav = -1000000.;
190 static double ysav = -1000000.;
191 static double zsav = -1000000.;
200 if (!isfinite(x) || !isfinite(y) || !isfinite(z))
202 static int ifirst = 0;
205 cout <<
"PHField3DCartesian::GetFieldValue: "
206 <<
"Invalid coordinates: "
210 <<
" bailing out returning zero bfield"
212 cout <<
"previous point: "
225 if (point[0] <
xmin || point[0] >
xmax ||
226 point[1] <
ymin || point[1] >
ymax ||
232 set<double>::const_iterator it =
xvals.lower_bound(x);
233 if (it ==
xvals.begin())
235 cout <<
"x too small - outside range: " << x << endl;
243 it =
yvals.lower_bound(y);
244 if (it ==
yvals.begin())
246 cout <<
"y too small - outside range: " << y << endl;
254 it =
zvals.lower_bound(z);
255 if (it ==
zvals.begin())
257 cout <<
"z too small - outside range: " << z << endl;
274 map<boost::tuple<double, double, double>, boost::tuple<double, double, double> >::const_iterator magval;
276 for (
int i = 0; i < 2; i++)
278 for (
int j = 0; j < 2; j++)
280 for (
int k = 0; k < 2; k++)
282 key = boost::make_tuple(xkey[i], ykey[j], zkey[k]);
286 cout <<
"could not locate key, x: " << xkey[i] /
UNIT_LENGTH
291 xyz[i][j][k][0] = (magval->first).get<0>();
292 xyz[i][j][k][1] = (magval->first).get<1>();
293 xyz[i][j][k][2] = (magval->first).get<2>();
294 bf[i][j][k][0] = (magval->second).get<0>();
295 bf[i][j][k][1] = (magval->second).get<1>();
296 bf[i][j][k][2] = (magval->second).get<2>();
298 cout <<
"read x/y/z: "
299 <<
xyz[i][j][k][0]/cm <<
"/"
300 <<
xyz[i][j][k][1]/cm <<
"/"
301 <<
xyz[i][j][k][2]/cm <<
" cm"
303 <<
bf[i][j][k][0]/tesla <<
"/"
304 <<
bf[i][j][k][1]/tesla <<
"/"
305 <<
bf[i][j][k][2]/tesla <<
" tesla"
326 double xinblock = point[0] - xkey[0];
327 double yinblock = point[1] - ykey[0];
328 double zinblock = point[2] - zkey[0];
331 for (
int i = 0; i < 3; i++)
337 bf[1][0][1][i] * xinblock * (
ystepsize - yinblock) * zinblock +
338 bf[0][1][1][i] * (
xstepsize - xinblock) * yinblock * zinblock +
339 bf[1][1][0][i] * xinblock * yinblock * (
zstepsize - zinblock) +
340 bf[1][1][1][i] * xinblock * yinblock * zinblock;
std::map< boost::tuple< double, double, double >, boost::tuple< double, double, double > > fieldmap
virtual ~PHField3DCartesian()
PHField3DCartesian(const std::string &fname, const float magfield_rescale=1.0)
void GetFieldValue(const double Point[4], double *Bfield) const