source: trunk/examples/extended/field/field03/include/F03FieldSetup.hh @ 1309

Last change on this file since 1309 was 1230, checked in by garnier, 15 years ago

update to geant4.9.3

File size: 3.4 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: F03FieldSetup.hh,v 1.2 2006/06/29 17:18:51 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30//  A class for setting up the Magnetic Field of the setup, and
31//   creating the necessary classes to control accuracy of propagation.
32//  In this example
33//    - There is a global field for most of the setup;
34//    - A local  field overides it for some volume(s) and it assumed to be uniform.
35//
36
37#ifndef F03FieldSetup_H
38#define F03FieldSetup_H
39
40#include "G4MagneticField.hh"
41#include "G4UniformMagField.hh"
42
43class G4FieldManager;
44class G4ChordFinder;
45class G4Mag_UsualEqRhs;
46class G4MagIntegratorStepper;
47class F03FieldMessenger;
48
49class F03FieldSetup
50{
51
52public:
53
54  F03FieldSetup() ;               //  A zero field
55  F03FieldSetup(G4ThreeVector) ;  //  The value of the field
56 ~F03FieldSetup() ;
57     
58  void SetStepperType( G4int i) { fStepperType = i ; }
59
60  void SetStepper();
61
62  void SetMinStep(G4double s) { fMinStep = s ; }
63
64  void UpdateField();
65
66  void SetFieldValue(G4ThreeVector fieldVector) ;
67  void SetFieldValue(G4double      fieldValue) ;
68  G4ThreeVector GetConstantFieldValue();
69  G4FieldManager*  GetLocalFieldManager() { return fLocalFieldManager ;}
70
71protected:
72
73  G4FieldManager*         GetGlobalFieldManager() ;
74    // Returns the global Field Manager
75
76  G4FieldManager*         fFieldManager ;
77  G4FieldManager*         fLocalFieldManager ;
78
79  G4ChordFinder*          fChordFinder ;
80  G4ChordFinder*          fLocalChordFinder ;
81
82  G4Mag_UsualEqRhs*       fEquation ; 
83  G4Mag_UsualEqRhs*       fLocalEquation ; 
84
85  G4MagneticField*        fMagneticField ; 
86  G4MagneticField*        fLocalMagneticField ; 
87
88  G4MagIntegratorStepper* fStepper ;
89  G4MagIntegratorStepper* fLocalStepper ;
90  G4int                   fStepperType ;
91
92  G4double                fMinStep ;
93 
94  F03FieldMessenger*      fFieldMessenger;
95
96};
97
98#endif
Note: See TracBrowser for help on using the repository browser.