Class Reference for E1039 Core & Analysis Software
PHField3DCylindrical.h
Go to the documentation of this file.
1 //
2 // *************************************
3 // * *
4 // * PHField3DCylindrical.h *
5 // * *
6 // *************************************
7 //
8 // **************************************************************
9 //
10 // GEANT Field Map, for use in converting ROOT maps of
11 // PHENIX magnetic field. Written by Michael Stone, July 2011
12 //
13 // **************************************************************
14 //
15 // The structure of the indices has little to do with physics and
16 // has much more to do with the way the PHENIX field map is formatted
17 // in SimMap3D++.root i.e. The z value is incremented only after
18 // every phi and r point has been accounted for in that plane.
19 
20 #ifndef __PHField3DCylindrical_H__
21 #define __PHField3DCylindrical_H__
22 
23 #include "PHField.h"
24 
25 #include <boost/tuple/tuple.hpp>
26 #include <boost/tuple/tuple_comparison.hpp>
27 
28 #include <map>
29 #include <string>
30 #include <vector>
31 
33 {
34  typedef boost::tuple<float, float, float> trio;
35 
36  public:
37  PHField3DCylindrical(const std::string& filename, int verb = 0, const float magfield_rescale = 1.0);
38  virtual ~PHField3DCylindrical() {}
39  void GetFieldValue(const double Point[4], double* Bfield) const;
40  void GetFieldCyl(const double CylPoint[4], double* Bfield) const;
41 
42  protected:
43  // < i, j, k > , this allows i and i+1 to be neighbors ( <i,j,k>=<z,r,phi> )
44  std::vector<std::vector<std::vector<float> > > BFieldZ_;
45  std::vector<std::vector<std::vector<float> > > BFieldR_;
46  std::vector<std::vector<std::vector<float> > > BFieldPHI_;
47 
48  // maps indices to values z_map[i] = z_value that corresponds to ith index
49  std::vector<float> z_map_; // < i >
50  std::vector<float> r_map_; // < j >
51  std::vector<float> phi_map_; // < k >
52 
53  float maxz_, minz_; // boundaries of magnetic field map cyl
54 
55  private:
56  bool bin_search(const std::vector<float>& vec, unsigned start, unsigned end, const float& key, unsigned& index) const;
57  void print_map(std::map<trio, trio>::iterator& it) const;
58 };
59 
60 #endif // __PHField3DCylindrical_H__
std::vector< float > z_map_
std::vector< std::vector< std::vector< float > > > BFieldPHI_
std::vector< std::vector< std::vector< float > > > BFieldZ_
std::vector< float > r_map_
std::vector< std::vector< std::vector< float > > > BFieldR_
void GetFieldValue(const double Point[4], double *Bfield) const
void GetFieldCyl(const double CylPoint[4], double *Bfield) const
std::vector< float > phi_map_
PHField3DCylindrical(const std::string &filename, int verb=0, const float magfield_rescale=1.0)
transient DST object for field storage and access
Definition: PHField.h:14