Class Reference for E1039 Core & Analysis Software
PHFieldRegionalConst.cc
Go to the documentation of this file.
1 
2 #include "PHFieldRegionalConst.h"
3 
4 //root framework
5 #include <TFile.h>
6 #include <TNtuple.h>
7 
8 #include <set>
9 #include <iostream>
10 
11 using namespace std;
12 using namespace CLHEP;// units
13 
14 PHFieldRegionalConst::PHFieldRegionalConst(const double field, const double magfield_rescale, const int verb) :
15  PHField(verb),
16  _mean_x(0*cm), _mean_y(0*cm), _mean_z(0*cm),
17  _maxy(4*cm), _miny(-4*cm),
18  _maxr(6.*cm), _minr(-0.1*cm),
19  _field_val(field*tesla)
20 {
21  identify();
22 }
23 
24 void PHFieldRegionalConst::GetFieldValue(const double point[4], double *Bfield ) const
25 {
26  double x = point[0];
27  double y = point[1];
28  double z = point[2];
29  double r = sqrt((x-_mean_x)*(x-_mean_x) + (z-_mean_z)*(z-_mean_z));
30 
31  Bfield[0] = 0;
32  Bfield[1] = 0;
33  Bfield[2] = 0;
34 
35  if( r > _minr and r < _maxr and
36  y - _mean_y > _miny and y - _mean_y < _maxy) {
37  Bfield[1] = _field_val;
38  }
39 
40  //identify();
41 
42  return;
43 }
44 
45 void PHFieldRegionalConst::identify(std::ostream& os) const{
46  os
47  << "PHFieldRegionalConst::identify: "
48  << "{" << _mean_x/cm << ", " << _mean_y/cm << ", " << _mean_z/cm << "}"
49  << "\t {" << _field_val/tesla << "}"
50  << endl;
51 }
PHFieldRegionalConst(const double field=5.0, const double magfield_rescale=1.0, const int verb=0)
void identify(std::ostream &os=std::cout) const
void GetFieldValue(const double Point[4], double *Bfield) const
transient DST object for field storage and access
Definition: PHField.h:14