Loading...
Searching...
No Matches
ExP01MagneticField.cc
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/// \file persistency/P01/src/ExP01MagneticField.cc
27/// \brief Implementation of the ExP01MagneticField class
28//
29//
30//
31// User Field class implementation.
32//
33//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35
36#include "ExP01MagneticField.hh"
37#include "G4FieldManager.hh"
38
39//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
40
42 : G4UniformMagField(G4ThreeVector())
43{
44 GetGlobalFieldManager()->SetDetectorField(this);
45 GetGlobalFieldManager()->CreateChordFinder(this);
46}
47
48//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49
51 : G4UniformMagField(fieldVector)
52{
53 GetGlobalFieldManager()->SetDetectorField(this);
54 GetGlobalFieldManager()->CreateChordFinder(this);
55}
56
57//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58
59// Set the value of the Global Field to fieldValue along X
60//
61void ExP01MagneticField::SetFieldValue(G4double fieldValue)
62{
63 G4UniformMagField::SetFieldValue(G4ThreeVector(fieldValue,0,0));
64}
65
66//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67
68// Set the value of the Global Field
69//
70void ExP01MagneticField::SetFieldValue(G4ThreeVector fieldVector)
71{
72 // Find the Field Manager for the global field
74
75 if(fieldVector!=G4ThreeVector(0.,0.,0.))
76 {
77 G4UniformMagField::SetFieldValue(fieldVector);
78 fieldMgr->SetDetectorField(this);
79 } else {
80 // If the new field's value is Zero, then it is best to
81 // insure that it is not used for propagation.
82 G4MagneticField* magField = NULL;
83 fieldMgr->SetDetectorField(magField);
84 }
85}
86
87//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88
90{
91 // GetGlobalFieldManager()->SetDetectorField(0);
92}
93
94//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
95
96#include "G4TransportationManager.hh"
97
99{
100 return G4TransportationManager::GetTransportationManager()->GetFieldManager();
101}
102
103//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Definition of the ExP01MagneticField class.
void SetFieldValue(G4double fieldValue)
G4FieldManager * GetGlobalFieldManager()

Applications | User Support | Publications | Collaboration