Class Reference for E1039 Core & Analysis Software
PHFieldSeaQuest.cc
Go to the documentation of this file.
1 #include "PHFieldSeaQuest.h"
2 #include <phool/recoConsts.h>
3 #include <TFile.h>
4 #include <TNtuple.h>
5 
6 #include <boost/tuple/tuple.hpp>
7 #include <boost/tuple/tuple_comparison.hpp>
8 
9 #include <iostream>
10 #include <cassert>
11 #include <fstream>
12 
13 using namespace std;
14 using namespace CLHEP; // units
15 
17  const std::string &fmag_name,
18  const std::string &kmag_name,
19  const double fmag_scale,
20  const double kmag_scale,
21  const double targermag_y):
22  fmag(fmag_name, fmag_scale),
23  kmag(kmag_name, kmag_scale),
24  targetmag(targermag_y)
25 
26 {
27  kmagZOffset = recoConsts::instance()->get_DoubleFlag("Z_KMAG_BEND")*cm;
28 
29  zValues[0] = fmag.GetZMin(); // front of fmag field map
30  zValues[1] = kmag.GetZMin() + kmagZOffset; // front of kmag field map
31  zValues[2] = fmag.GetZMax(); // end of fmag field map
32  zValues[3] = kmag.GetZMax() + kmagZOffset; // end of kmag field map
33 
34  targetmag.set_mean_x(0*cm);
35  targetmag.set_mean_y(0*cm);
36  targetmag.set_mean_z(-300*cm);
37 }
38 
40 {
41  // cout << "PHFieldSeaQuest: cache hits: " << cache_hits
42  // << " cache misses: " << cache_misses
43  // << endl;
44 }
45 
46 void PHFieldSeaQuest::GetFieldValue(const double point[4], double *Bfield) const
47 {
48  double kmag_point[4] = {point[0], point[1], point[2]-kmagZOffset, point[3]};
49 
50  if(point[2] < zValues[0])
51  {
52  targetmag.GetFieldValue(point, Bfield);
53  }
54  else if(point[2] > zValues[0] && point[2] < zValues[1])
55  {
56  fmag.GetFieldValue(point, Bfield);
57  }
58  else if(point[2] > zValues[2] && point[2] < zValues[3])
59  {
60  kmag.GetFieldValue(kmag_point, Bfield);
61  }
62  else if(point[2] > zValues[1] && point[2] < zValues[2])
63  {
64  fmag.GetFieldValue(point, Bfield);
65  double xTemp = Bfield[0];
66  double yTemp = Bfield[1];
67  double zTemp = Bfield[2];
68 
69  kmag.GetFieldValue(kmag_point, Bfield);
70  Bfield[0] = Bfield[0] + xTemp;
71  Bfield[1] = Bfield[1] + yTemp;
72  Bfield[2] = Bfield[2] + zTemp;
73  }
74  else
75  {
76  Bfield[0] = 0.;
77  Bfield[1] = 0.;
78  Bfield[2] = 0.;
79  }
80 
81  /*
82  std::cout << "GetFieldValue: "
83  << "x: " << point[0]/cm
84  << ", y: " << point[1]/cm
85  << ", z: " << point[2]/cm
86  << ", Bx: " << Bfield[0]/tesla
87  << ", By: " << Bfield[1]/tesla
88  << ", Bz: " << Bfield[2]/tesla << std::endl;
89  */
90 }
91 
92 void PHFieldSeaQuest::identify(std::ostream& os) const {
93  os << "PHFieldSeaQuest::identify: " << "-------" << endl;
94  double point[4] = {0, 0, 0, 0};
95  double bfield[3] = {0, 0, 0};
96 
97  for(point[2] = -500*cm; point[2] < 1500*cm; point[2] += 1*cm) {
98  this->GetFieldValue(point, bfield);
99  os << point[2]/cm << ", " << bfield[1]/tesla << endl;
100  }
101 }
void set_mean_y(double meanY)
void set_mean_z(double meanZ)
void set_mean_x(double meanX)
void GetFieldValue(const double Point[4], double *Bfield) const
void GetFieldValue(const double Point[4], double *Bfield) const
virtual ~PHFieldSeaQuest()
void identify(std::ostream &os=std::cout) const
SQField3DCartesian fmag
PHFieldRegionalConst targetmag
SQField3DCartesian kmag
PHFieldSeaQuest(const std::string &fmag_name, const std::string &kmag_name, const double fmag_scale=1.0, const double kmag_scale=1.0, const double targermag_y=5.0)
virtual double get_DoubleFlag(const std::string &name) const
Definition: PHFlag.cc:49
double GetZMin() const
return the min and max in z
void GetFieldValue(const double Point[4], double *Bfield) const
double GetZMax() const
static recoConsts * instance()
Definition: recoConsts.cc:7