gfields
gfield.h
Go to the documentation of this file.
1 #ifndef GFIELDS_H
2 #define GFIELDS_H 1
3 
4 // G4 headers
5 #include "G4MagneticField.hh"
6 #include "G4FieldManager.hh"
7 #include "G4MagIntegratorStepper.hh"
8 
9 // gemc
10 #include "gfactory.h"
11 #include "goptions.h"
12 #include "gfieldConventions.h"
13 
22 
23  std::string name;
24  std::string integration_stepper;
25  double minimum_step;
26  std::string type;
27 
28  map <std::string, string> field_parameters;
29 
35  void add_map_parameter(std::string key, std::string value) {
36  field_parameters[key] = value;
37  }
38 
43  string gfieldPluginName() {
44  return "gfield" + type + "Factory";
45  }
46 
47  // overload << to print the field definition
48  friend std::ostream &operator<<(std::ostream &stream, GFieldDefinition gfd) {
49  stream << " > Field name: " << gfd.name << std::endl;
50  stream << " - integration stepper " << gfd.integration_stepper << std::endl;
51  stream << " - minimum step " << gfd.minimum_step << " mm" << std::endl;
52  stream << " - type " << gfd.type << std::endl;
53 
54  // print the field parameters
55  // align the keys to the left
56  for (auto &field_parameter: gfd.field_parameters) {
57  stream << " - " << std::left << std::setw(21) << field_parameter.first << field_parameter.second << std::endl;
58  }
59 
60  return stream;
61  }
62 };
63 
67 class GField : public G4MagneticField {
68 
69 public:
73  GField() = default;
74 
78  virtual ~GField() = default;
79 
85  virtual void GetFieldValue(const double x[3], double *bfield) const = 0;
86 
91  G4FieldManager *create_FieldManager();
92 
98  gfield_definitions = gfd;
99  }
100 
105  void gFLogMessage(std::string message) {
106  gLogMessage(GFIELDLOGHEADER + gfield_definitions.name + " " + message);
107  }
108 
109  int get_field_parameter_int(std::string key) {
110  return stoi(gfield_definitions.field_parameters[key]);
111  }
112  double get_field_parameter_double(std::string key) {
113  return stod(gfield_definitions.field_parameters[key]);
114  }
115 
116 private:
117 
118 
119  std::vector <std::string> SUPPORTED_STEPPERS = {
120  "G4DormandPrince745", "G4ClassicalRK4", "G4SimpleRunge", "G4HelixExplicitEuler",
121  "G4HelixImplicitEuler", "G4CashKarpRKF45", "G4RKG3_Stepper", "G4SimpleHeum",
122  "G4NystromRK4", "G4ImplicitEuler", "G4ExplicitEuler"
123  };
124 
125 
126 protected:
128 
129 public:
130 
131  static GField *instantiate(const dlhandle handle) {
132 
133  if (handle == nullptr) return nullptr;
134 
135  // must match the extern C declaration in the derived factories
136  void *maker = dlsym(handle, "GFieldFactory");
137 
138  if (maker == nullptr) return nullptr;
139 
140  typedef GField *(*fptr)();
141 
142  // static_cast not allowed here
143  // see http://stackoverflow.com/questions/573294/when-to-use-reinterpret-cast
144  // need to run the DLL GMediaFactory function that returns the factory
145  fptr func = reinterpret_cast<fptr>(reinterpret_cast<void *>(maker));
146 
147  return func();
148  }
149 };
150 
151 
152 #endif
Abstract base class representing a magnetic field.
Definition: gfield.h:67
void gFLogMessage(std::string message)
Logs a message with the field context.
Definition: gfield.h:105
virtual void GetFieldValue(const double x[3], double *bfield) const =0
Pure virtual function to get the magnetic field value.
GFieldDefinition gfield_definitions
Definition: gfield.h:127
int get_field_parameter_int(std::string key)
Definition: gfield.h:109
G4FieldManager * create_FieldManager()
Creates the G4FieldManager for the field.
Definition: gfield.cc:21
GField()=default
Default constructor.
static GField * instantiate(const dlhandle handle)
Definition: gfield.h:131
virtual void load_field_definitions(GFieldDefinition gfd)
Sets the field definition for the field.
Definition: gfield.h:97
virtual ~GField()=default
Virtual destructor.
double get_field_parameter_double(std::string key)
Definition: gfield.h:112
#define GFIELDLOGHEADER
Utility struct to load GFields from options.
Definition: gfield.h:17
GFieldDefinition()
Default constructor.
Definition: gfield.h:21
double minimum_step
Minimum step size for integration.
Definition: gfield.h:25
std::string name
Key in the gmagneto maps.
Definition: gfield.h:23
map< std::string, string > field_parameters
Field parameters as key-value pairs.
Definition: gfield.h:28
friend std::ostream & operator<<(std::ostream &stream, GFieldDefinition gfd)
Definition: gfield.h:48
void add_map_parameter(std::string key, std::string value)
Adds a parameter to the field parameters map.
Definition: gfield.h:35
std::string integration_stepper
Type of integration stepper.
Definition: gfield.h:24
string gfieldPluginName()
Gets the plugin name for the field.
Definition: gfield.h:43
std::string type
Type of the field.
Definition: gfield.h:26