Class Reference for E1039 Core & Analysis Software
PHField2D.h
Go to the documentation of this file.
1 
2 #ifndef __PHField2D_H__
3 #define __PHField2D_H__
4 
5 #include "PHField.h"
6 
7 #include <boost/tuple/tuple.hpp>
8 #include <boost/tuple/tuple_comparison.hpp>
9 
10 #include <map>
11 #include <string>
12 #include <vector>
13 
14 class PHField2D : public PHField
15 {
16  typedef boost::tuple<float, float> trio;
17 
18  public:
19  PHField2D(const std::string &filename, const int verb = 0, const float magfield_rescale = 1.0);
20  virtual ~PHField2D() {}
25  void GetFieldValue(const double Point[4], double *Bfield) const;
26 
27  void GetFieldCyl(const double CylPoint[4], double *Bfield) const;
28 
29  protected:
30  // < i, j, k > , this allows i and i+1 to be neighbors ( <i,j,k>=<z,r,phi> )
31  std::vector<std::vector<float> > BFieldZ_;
32  std::vector<std::vector<float> > BFieldR_;
33  std::vector<std::vector<float> > BFieldPHI_;
34 
35  // maps indices to values z_map[i] = z_value that corresponds to ith index
36  std::vector<float> z_map_; // < i >
37  std::vector<float> r_map_; // < j >
38  std::vector<float> phi_map_; // < k >
39 
40  float maxz_, minz_; // boundaries of magnetic field map cyl
41  double magfield_unit;
42 
43  private:
44  void print_map(std::map<trio, trio>::iterator &it) const;
45  // mutable allows to change internal data even in const methods
46  // I don't like this too much but these are cached values to speed up
47  // the field lookup by a lot
48  // I want them to be data members so we can run 2 fieldmaps in parallel
49  // and still have caching. Putting those as static variables into
50  // the implementation will prevent this
51  mutable unsigned int r_index0_cache;
52  mutable unsigned int r_index1_cache;
53  mutable unsigned int z_index0_cache;
54  mutable unsigned int z_index1_cache;
55 };
56 
57 #endif // __PHField2D_H
std::vector< std::vector< float > > BFieldR_
Definition: PHField2D.h:32
void GetFieldCyl(const double CylPoint[4], double *Bfield) const
Definition: PHField2D.cc:260
PHField2D(const std::string &filename, const int verb=0, const float magfield_rescale=1.0)
Definition: PHField2D.cc:15
std::vector< float > r_map_
Definition: PHField2D.h:37
std::vector< std::vector< float > > BFieldPHI_
Definition: PHField2D.h:33
std::vector< float > phi_map_
Definition: PHField2D.h:38
std::vector< float > z_map_
Definition: PHField2D.h:36
virtual ~PHField2D()
Definition: PHField2D.h:20
double magfield_unit
Definition: PHField2D.h:41
float maxz_
Definition: PHField2D.h:40
std::vector< std::vector< float > > BFieldZ_
Definition: PHField2D.h:31
float minz_
Definition: PHField2D.h:40
void GetFieldValue(const double Point[4], double *Bfield) const
Definition: PHField2D.cc:208
transient DST object for field storage and access
Definition: PHField.h:14