EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4TBMagneticFieldSetup.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4TBMagneticFieldSetup.hh
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 #ifndef G4MAIN_G4TBELECTRICFIELDSETUP_H
37 #define G4MAIN_G4TBELECTRICFIELDSETUP_H
38 
39 #include <Geant4/G4ThreeVector.hh>
40 #include <Geant4/G4Types.hh>
41 
42 class G4FieldManager;
43 class G4ChordFinder;
44 class G4Mag_UsualEqRhs;
45 class G4MagIntegratorStepper;
46 class G4MagInt_Driver;
47 class G4MagneticField;
48 class G4TBFieldMessenger;
49 class PHField;
50 
52 {
53 public:
54 
55 
56  G4TBMagneticFieldSetup(PHField * phfield) ;
57 // G4TBMagneticFieldSetup(const float magfield) ;
58 // G4TBMagneticFieldSetup(const std::string &fieldmapfile, const int mapdim, const float magfield_rescale = 1.0) ;
59 
60  virtual ~G4TBMagneticFieldSetup() ;
61 
62  void Verbosity(const int verb) {verbosity = verb;}
63 
64  void SetStepperType( const G4int i) { fStepperType = i ; }
65 
66  void SetStepper();
67 
68  void SetMinStep(const G4double s) { fMinStep = s ; }
69 
70  void UpdateField();
71 
72  void SetFieldValue(const G4ThreeVector fieldVector);
73  void SetFieldValue(const G4double fieldValue);
74 
75  double get_magfield_at_000(const int i) const {return magfield_at_000[i];}
76 
77 protected:
78 
79  // Find the global Field Manager
80  G4FieldManager* GetGlobalFieldManager() ;
81 
82 private:
83  int verbosity;
84 
85  G4FieldManager* fFieldManager ;
86 
87  G4ChordFinder* fChordFinder ;
88 
89  G4Mag_UsualEqRhs* fEquation ;
90 
91  G4MagneticField* fEMfield;
92 
93  G4ThreeVector fElFieldValue ;
94 
95  G4MagIntegratorStepper* fStepper ;
96  G4MagInt_Driver* fIntgrDriver;
97 
98  G4int fStepperType ;
99 
100  G4double fMinStep ;
101 
103 
104  double magfield_at_000[3];
105 };
106 
107 #endif