Class Reference for E1039 Core & Analysis Software
Field.cc
Go to the documentation of this file.
1 /* This program sets up the magnetic field variables
2 Version 05/12/2008
3 Larry Isenhower modified by Aldo Raeliarijaona
4 */
5 #include "Field.hh"
6 
7 #include "GlobalConsts.h"
8 
10 {
11  mySettings = settings;
12  if (settings->asciiFieldMap)
13  {
14  char *gmcroot, *originalpath, *buf=new char[300];
15  long size;
16  bool errorFlag = true;
17 
18  cout << "Preparing to read magnetic field map file...\n";
19 
20  // get path name for directory in which to look for the field map file
21  gmcroot = (char *)getenv("GMCROOT");
22 
23  size = 1000;
24  originalpath = getcwd(buf, size);
25 
26  errorFlag = false;
27 
28  cout << "Reading field maps..." << endl;
29  // zOffset, nx, ny, nz, fmag, settings
30  Mag1Field= new TabulatedField3D(0.0, 131, 121, 73, true, settings);
31  Mag2Field= new TabulatedField3D(-1064.26*cm, 49, 37, 81, false, settings);
32 
33  // This exception prevents an error by keeping physiWorld from trying
34  // to acces a world volume if no file input was read
35  if(errorFlag)
36  cout << "No magnetic field input file found! \nPlease check your field map file location and your GMCROOT environment variable." << endl;
37 
38  // Move back to original working directory
39  chdir(originalpath);
40  }
41  else // if reading in field map from MySQL
42  {
43  G4cout << "Preparing to read magnetic field map files...\n";
44  G4cout << "Reading field maps...\n";
45  Mag1Field= new TabulatedField3D(0.0, 131, 121, 73, true, settings);
46  Mag2Field= new TabulatedField3D(-1064.26*cm, 49, 37, 81, false, settings);
47  }
48  G4cout << "Finished loading magnetic field map files!\n";
49 
50  // These should probably be softcoded at some point, but doesn't matter as long as field maps don't get resized.
51 
52  zValues[0] = -204.0*cm; // front of fmag field map
53  zValues[1] = 403.74*cm; // front of kmag field map
54  zValues[2] = 712.0*cm; // end of fmag field map
55  zValues[3] = 1572.26*cm; // end of kmag field map
56 }
57 
59 {
60 }
61 
62 void Field::GetFieldValue(const double Point[3], double *Bfield) const
63 {
64  Bfield[0] = 0.;
65  Bfield[1] = 0.;
66  Bfield[2] = 0.;
67 
68  double xTemp = 0;
69  double yTemp = 0;
70  double zTemp = 0;
71 
72  if (Point[2]>zValues[0] && Point[2]<zValues[1])
73  {
74  Mag1Field->GetFieldValue( Point, Bfield );
75  }
76 
77  if ((Point[2]>zValues[2])&&(Point[2]<zValues[3]))
78  {
79  Mag2Field->GetFieldValue( Point, Bfield );
80  }
81 
82  if ((Point[2]>zValues[1])&&(Point[2]<zValues[2]))
83  {
84  Mag2Field->GetFieldValue( Point, Bfield );
85  xTemp = Bfield[0];
86  yTemp = Bfield[1];
87  zTemp = Bfield[2];
88  Mag1Field->GetFieldValue( Point, Bfield );
89  Bfield[0] = Bfield[0] + xTemp;
90  Bfield[1] = Bfield[1] + yTemp;
91  Bfield[2] = Bfield[2] + zTemp;
92  }
93 }
~Field()
Definition: Field.cc:58
Field(Settings *)
Definition: Field.cc:9
void GetFieldValue(const double Point[3], double *Bfield) const
Definition: Field.cc:62
bool asciiFieldMap
Definition: Settings.hh:28