Class Reference for E1039 Core & Analysis Software
PHFieldConfig_v3.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHFieldConfig_v3.h"
12 
13 #include <TGeoManager.h>
14 #include <TGeoVolume.h>
15 #include <TMemFile.h>
16 
17 #include <cassert>
18 #include <iostream>
19 #include <iomanip>
20 #include <sstream>
21 
22 using namespace std;
23 
25  const std::string& filename1,
26  const std::string& filename2,
27  const double scale1,
28  const double scale2,
29  const double targetmag_y) :
30  field_config_(kFieldSeaQuest),
31  filename1_(filename1),
32  filename2_(filename2),
33  scale1_(scale1),
34  scale2_(scale2),
35  _taregetmag_y(targetmag_y)
36 {
37  if(filename1_.find("INVALID") == string::npos) //suppress output when default ctor is called
38  {
39  cout << "PHFieldConfig_v3::PHFieldConfig_v3:" << endl;
40  cout << " from file1 [" << filename1 << "]" << endl;
41  cout << " and file2 [" << filename2 << "]" << endl;
42  cout << "scale1: " << setprecision(5) << scale1_ << ", scale2: " << setprecision(5) << scale2_ << ", targetmag_y: " << _taregetmag_y << endl;
43  }
44 }
45 
47 {
48 }
49 
51 PHObject*
53 {
54  return new PHFieldConfig_v3(*this);
55 }
56 
60 void PHFieldConfig_v3::identify(std::ostream& os) const
61 {
62  os << "PHFieldConfig_v3::identify -";
63  if (isValid())
64  {
65  os << " Field type of [" << "Sea Quest: " << get_field_config_description().c_str() << "]" << endl;
66  os << " from file1 [" << get_filename1() << "]" << endl;
67  os << " and file2 [" << get_filename2() << "]" << endl;
68  os << "scale1: " << scale1_ << ", scale2: " << scale2_ << ", targetmag_y: " << _taregetmag_y << endl;
69  os << "scale1: " << get_magfield_rescale1() << ", scale2: " << get_magfield_rescale2() << ", targetmag_y: " << get_taregetmag_y() << endl;
70  }
71  else
72  os << "Empty";
73  os << endl;
74 }
77 {
78 }
79 
82 {
83  return (filename1_.length()>0 && filename2_.length()>0 );
84 }
const std::string & get_filename1() const
field value in Tesla for target field model ONLY for PHFieldConfig_v3
virtual void Reset()
Clear Event.
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
virtual PHObject * clone() const
Virtual copy constructor.
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()
std::string filename2_
PHFieldConfig_v3()
default constructor for ROOT file IO
std::string get_field_config_description() const