Class Reference for E1039 Core & Analysis Software
PHFieldConfig_v1.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHFieldConfig_v1.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  const std::string& filename,
25  double magfield_rescale)
26  : field_config_(field_config)
27  , filename_(filename)
28  , magfield_rescale_(magfield_rescale)
29 {
30 }
31 
33 {
34 }
35 
37 PHObject*
39 {
40  return new PHFieldConfig_v1(*this);
41 }
42 
46 void PHFieldConfig_v1::identify(std::ostream& os) const
47 {
48  os << "PHFieldConfig_v1::identify -";
49  if (isValid())
50  {
51  os << " Field type of [" << get_field_config_description();
52  os << "] from file [" << get_filename();
53  os << "] with a scale factor of " << get_magfield_rescale();
54  os << " field_config: " << get_field_config();
55  }
56  else
57  os << "Empty";
58  os << endl;
59 }
62 {
63 }
64 
67 {
68  return filename_.length();
69 }
const std::string & get_filename() const
virtual PHObject * clone() const
Virtual copy constructor.
PHFieldConfig_v1()
default constructor for ROOT file IO
virtual ~PHFieldConfig_v1()
virtual void Reset()
Clear Event.
FieldConfigTypes get_field_config() const
double get_magfield_rescale() const
std::string filename_
virtual int isValid() const
isValid returns non zero if object contains vailid data
virtual void identify(std::ostream &os=std::cout) const
std::string get_field_config_description() const