Class Reference for E1039 Core & Analysis Software
PHFieldConfig_v3.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef PHFieldConfig_v3_H_
12 #define PHFieldConfig_v3_H_
13 
14 #include "PHFieldConfig.h"
15 
16 
20 {
21  public:
23  const std::string& filename1,
24  const std::string& filename2,
25  const double scale1 = 1.0,
26  const double scale2 = 1.0,
27  const double targetmag_y = 5.0);
28 
30  PHFieldConfig_v3() {PHFieldConfig_v3("INVALID FILE1", "INVALID FILE2");}
31 
32  virtual ~PHFieldConfig_v3();
33 
35  virtual PHObject*
36  clone() const;
37 
41  virtual void
42  identify(std::ostream& os = std::cout) const;
43 
45  virtual void
46  Reset();
47 
49  virtual int
50  isValid() const;
51 
53  {
54  return field_config_;
55  }
57  {
58  field_config_ = fieldConfig;
59  }
60 
61  const std::string& get_filename1() const
62  {
63  return filename1_;
64  }
65 
66  void set_filename1(const std::string& filename)
67  {
68  filename1_ = filename;
69  }
70 
71  const std::string& get_filename2() const
72  {
73  return filename2_;
74  }
75 
76  void set_filename2(const std::string& filename)
77  {
78  filename2_ = filename;
79  }
80 
81  double get_magfield_rescale1() const {
82  return scale1_;
83  }
84 
85  double get_magfield_rescale2() const {
86  return scale2_;
87  }
88 
89  double get_taregetmag_y() const {
90  return _taregetmag_y;
91  }
92 
93  void set_taregetmag_y(double taregetmagY) {
94  _taregetmag_y = taregetmagY;
95  }
96 
97  protected:
99  std::string filename1_;
100  std::string filename2_;
101  double scale1_;
102  double scale2_;
104 
105  ClassDef(PHFieldConfig_v3, 3)
106 };
107 
108 #endif /* PHFieldConfig_v3_H_ */
PHFieldConfig_v3 implements field configuration information for input a field map file.
const std::string & get_filename1() const
field value in Tesla for target field model ONLY for PHFieldConfig_v3
virtual void Reset()
Clear Event.
void set_filename1(const std::string &filename)
virtual int isValid() const
isValid returns non zero if object contains vailid data
const std::string & get_filename2() const
std::string filename1_
virtual void identify(std::ostream &os=std::cout) const
FieldConfigTypes get_field_config() const
virtual PHObject * clone() const
Virtual copy constructor.
void set_field_config(FieldConfigTypes fieldConfig)
double get_magfield_rescale2() const
field value in Tesla for uniform field model ONLY for PHFieldConfig_v3
double get_magfield_rescale1() const
field value in Tesla for uniform field model ONLY for PHFieldConfig_v3
double get_taregetmag_y() const
field value in Tesla for target field model ONLY for PHFieldConfig_v3
virtual ~PHFieldConfig_v3()
void set_taregetmag_y(double taregetmagY)
field value in Tesla for target field model ONLY for PHFieldConfig_v3
std::string filename2_
PHFieldConfig_v3()
default constructor for ROOT file IO
void set_filename2(const std::string &filename)
FieldConfigTypes field_config_
PHFieldConfig store field configuration information.
Definition: PHFieldConfig.h:20