source: trunk/examples/extended/field/field02/include/F02ElectricFieldSetup.hh

Last change on this file was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 3.3 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: F02ElectricFieldSetup.hh,v 1.2 2006/06/29 17:17:12 gunter Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
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 F02ElectricFieldSetup_H
38#define F02ElectricFieldSetup_H
39
40#include "G4ElectricField.hh"
41#include "G4UniformElectricField.hh"
42
43class G4FieldManager;
44class G4ChordFinder;
45class G4EquationOfMotion;
46class G4Mag_EqRhs;
47class G4EqMagElectricField;
48class G4MagIntegratorStepper;
49class G4MagInt_Driver; 
50class F02FieldMessenger;
51class F02ElectricFieldSetup 
52{
53public:
54
55  F02ElectricFieldSetup(G4ThreeVector) ;  //  The value of the field
56  F02ElectricFieldSetup() ;               //  A zero field
57
58 ~F02ElectricFieldSetup() ; 
59     
60  void SetStepperType( G4int i) { fStepperType = i ; }
61
62  void SetStepper();
63
64  void SetMinStep(G4double s) { fMinStep = s ; }
65
66  void UpdateField();
67
68  void SetFieldValue(G4ThreeVector fieldVector);
69  void SetFieldValue(G4double      fieldValue);
70  G4ThreeVector GetConstantFieldValue();
71
72protected:
73
74      // Find the global Field Manager
75  G4FieldManager*         GetGlobalFieldManager() ;
76
77private:
78  G4FieldManager*         fFieldManager ;
79
80  G4ChordFinder*          fChordFinder ;
81
82  G4EqMagElectricField*   fEquation ;
83
84  G4ElectricField*        fEMfield;
85 
86  G4ThreeVector           fElFieldValue ; 
87
88  G4MagIntegratorStepper* fStepper ;
89  G4MagInt_Driver*        fIntgrDriver;
90
91  G4int                   fStepperType ;
92
93  G4double                fMinStep ;
94 
95  F02FieldMessenger*      fFieldMessenger;
96
97};
98
99#endif
Note: See TracBrowser for help on using the repository browser.