source: trunk/source/geometry/magneticfield/test/field02/include/F02ElectroMagneticField.hh@ 1330

Last change on this file since 1330 was 1199, checked in by garnier, 16 years ago

nvx fichiers dans CVS

File size: 3.5 KB
Line 
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: F02ElectroMagneticField.hh,v 1.2 2006/06/29 18:27:13 gunter Exp $
28// GEANT4 tag $Name: HEAD $
29//
30//
31// A class for control of the Magnetic Field of the detector.
32// The field is assumed to be uniform.
33//
34// $ Id: $
35
36// Should this be a:
37// i) messenger
38// ii) user class that creates the field ?
39// iii) simply a derived class of Uniform field ? <== I have chosen this now.
40// iv) a field manager that creates/updates field (Prefered?)
41//
42
43
44#ifndef F02ElectroMagneticField_H
45#define F02ElectroMagneticField_H
46
47#include "G4MagneticField.hh"
48// #include "G4ElectroMagneticField.hh"
49#include "G4UniformElectricField.hh"
50
51class G4FieldManager;
52class G4ChordFinder;
53class G4EquationOfMotion;
54class G4Mag_EqRhs;
55class G4EqMagElectricField;
56class G4MagIntegratorStepper;
57class F02FieldMessenger;
58
59class F02ElectroMagneticField : public G4UniformElectricField
60{
61public:
62 F02ElectroMagneticField(G4ThreeVector) ; // The value of the field
63 F02ElectroMagneticField() ; // A zero field
64
65 ~F02ElectroMagneticField() ;
66
67 void GetFieldValue( const G4double Point[3],
68 G4double Bfield[3] ) const {;} ;
69
70 void SetStepperType( G4int i) { fStepperType = i ; } ;
71
72 void SetStepper();
73
74 void SetMinStep(G4double s) { fMinStep = s ; } ;
75
76 void UpdateField();
77
78 void SetFieldValue(G4ThreeVector fieldVector) ;
79 void SetFieldValue(G4double fieldValue) ;
80 G4ThreeVector GetConstantFieldValue();
81
82protected:
83
84 // Find the global Field Manager
85
86 G4FieldManager* GetGlobalFieldManager() ; // static
87
88 G4FieldManager* fFieldManager ;
89
90 G4ChordFinder* fChordFinder ;
91
92 G4EqMagElectricField* fEquation ;
93
94 G4UniformElectricField* fEMfield ;
95
96 G4MagIntegratorStepper* fStepper ;
97
98 G4int fStepperType ;
99
100 G4double fMinStep ;
101
102 F02FieldMessenger* fFieldMessenger;
103
104};
105
106#endif
Note: See TracBrowser for help on using the repository browser.