Class Reference for E1039 Core & Analysis Software
G4TBMagneticFieldSetup.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4TBMagneticFieldSetup.hh,v 1.10 2014/11/14 21:47:38 mccumber Exp $
28 // GEANT4 tag $Name: $
29 //
30 // A class for control of the Electric Field of the detector.
31 // The field for this case is uniform.
32 //
33 // It is simply a 'setup' class that creates the field and necessary other parts
34 //
35 
36 
37 #ifndef G4TBElectricFieldSetup_H
38 #define G4TBElectricFieldSetup_H
39 
40 #include <Geant4/G4MagneticField.hh>
41 #include <Geant4/G4UniformMagField.hh>
42 
43 #include <string>
44 
45 class G4FieldManager;
46 class G4ChordFinder;
47 class G4EquationOfMotion;
48 class G4Mag_EqRhs;
49 class G4Mag_UsualEqRhs;
50 class G4MagIntegratorStepper;
51 class G4MagInt_Driver;
52 class G4TBFieldMessenger;
53 class PHField;
54 
56 {
57 public:
58 
59 
60  G4TBMagneticFieldSetup(PHField * phfield) ;
61 // G4TBMagneticFieldSetup(const float magfield) ;
62 // G4TBMagneticFieldSetup(const std::string &fieldmapfile, const int mapdim, const float magfield_rescale = 1.0) ;
63 
64  virtual ~G4TBMagneticFieldSetup() ;
65 
66  void Verbosity(const int verb) {verbosity = verb;}
67 
68  void SetStepperType( const G4int i) { fStepperType = i ; }
69 
70  void SetStepper();
71 
72  void SetMinStep(const G4double s) { fMinStep = s ; }
73 
74  void UpdateField();
75 
76  void SetFieldValue(const G4ThreeVector fieldVector);
77  void SetFieldValue(const G4double fieldValue);
78 
79  double get_magfield_at_000(const int i) const {return magfield_at_000[i];}
80 
81  G4FieldManager* GetDummyFieldManager() { return fDummyFieldManager; }
82 
83 protected:
84 
85  // Find the global Field Manager
86  G4FieldManager* GetGlobalFieldManager() ;
87 
88 private:
89  int verbosity;
90 
91  G4FieldManager* fFieldManager ;
92 
93  G4ChordFinder* fChordFinder ;
94 
95  G4Mag_UsualEqRhs* fEquation ;
96 
97  G4MagneticField* fEMfield;
98 
99  G4ThreeVector fElFieldValue ;
100 
101  G4MagIntegratorStepper* fStepper ;
102  G4MagInt_Driver* fIntgrDriver;
103 
104  G4int fStepperType ;
105 
106  G4double fMinStep ;
107 
108  G4TBFieldMessenger* fFieldMessenger;
109 
110  G4FieldManager* fDummyFieldManager;
111 
112  double magfield_at_000[3];
113 };
114 
115 #endif
void SetStepperType(const G4int i)
G4FieldManager * GetGlobalFieldManager()
G4FieldManager * GetDummyFieldManager()
void SetFieldValue(const G4ThreeVector fieldVector)
G4TBMagneticFieldSetup(PHField *phfield)
void SetMinStep(const G4double s)
void Verbosity(const int verb)
double get_magfield_at_000(const int i) const
transient DST object for field storage and access
Definition: PHField.h:14