Class Reference for E1039 Core & Analysis Software
PHFieldConfig_v2.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHFieldConfig_v2.h"
12 
13 #include <TGeoManager.h>
14 #include <TGeoVolume.h>
15 #include <TMemFile.h>
16 
17 #include <cassert>
18 #include <iostream>
19 #include <sstream>
20 
21 using namespace std;
22 
24  double field_mag_x,
25  double field_mag_y,
26  double field_mag_z)
27  : field_mag_x_(field_mag_x )
28  , field_mag_y_(field_mag_y )
29  , field_mag_z_(field_mag_z)
30 {
31 }
32 
34 {
35 }
36 
38 PHObject*
40 {
41  return new PHFieldConfig_v2(*this);
42 }
43 
47 void PHFieldConfig_v2::identify(std::ostream& os) const
48 {
49  os << "PHFieldConfig_v2::identify -";
50  if (isValid())
51  {
52  os << " Field type of [" << get_field_config_description();
53  os << "] with field vector of ";
54  os <<"["<<get_field_mag_x();
55  os <<", "<<get_field_mag_y();
56  os <<", "<<get_field_mag_z();
57  os <<"] tesla";
58  }
59  else
60  os << "Empty";
61  os << endl;
62 }
65 {
66 }
67 
70 {
71  return 3;
72 }
double get_field_mag_y() const
field value in Tesla for uniform field model ONLY for PHFieldConfig_v2
virtual PHObject * clone() const
Virtual copy constructor.
virtual ~PHFieldConfig_v2()
virtual int isValid() const
isValid returns non zero if object contains vailid data
virtual void Reset()
Clear Event.
double get_field_mag_x() const
field value in Tesla for uniform field model ONLY for PHFieldConfig_v2
PHFieldConfig_v2()
default constructor for ROOT file IO
double get_field_mag_z() const
field value in Tesla for uniform field model ONLY for PHFieldConfig_v2
virtual void identify(std::ostream &os=std::cout) const
std::string get_field_config_description() const