Class Reference for E1039 Core & Analysis Software
PHG4MagneticField.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_G4MAIN_PHG4MAGNETICFIELD_H_
12 #define SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_G4MAIN_PHG4MAGNETICFIELD_H_
13 
14 #include <Geant4/G4MagneticField.hh>
15 
16 class PHField;
17 
21 class PHG4MagneticField : public G4MagneticField
22 {
23  public:
24  PHG4MagneticField(const PHField* field);
25  virtual ~PHG4MagneticField();
26 
27  const PHField* get_field() const
28  {
29  return field_;
30  }
31 
32  void set_field(const PHField* field)
33  {
34  field_ = field;
35  }
36 
37  void GetFieldValue( const double Point[4], double *Bfield ) const;
38 
39  protected:
40  const PHField* field_;
41 };
42 
43 #endif /* SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_G4MAIN_PHG4MAGNETICFIELD_H_ */
transient DST object for field storage and access
Definition: PHField.h:14
PHG4MagneticField interfaces with Geant4.
const PHField * field_
PHG4MagneticField(const PHField *field)
void set_field(const PHField *field)
void GetFieldValue(const double Point[4], double *Bfield) const
virtual ~PHG4MagneticField()
const PHField * get_field() const