source: trunk/source/geometry/solids/test/SurfaceChecker/src/SCMagneticField.cc@ 1350

Last change on this file since 1350 was 1347, checked in by garnier, 15 years ago

geant4 tag 9.4

File size: 3.9 KB
RevLine 
[1316]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: SCMagneticField.cc,v 1.2 2006/06/29 18:54:53 gunter Exp $
[1347]28// GEANT4 tag $Name: geant4-09-04-ref-00 $
[1316]29//
30// User Field class implementation.
31//
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34
35#include "SCMagneticField.hh"
36#include "G4FieldManager.hh"
37
38//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40SCMagneticField::SCMagneticField()
41 : G4UniformMagField(G4ThreeVector())
42{
43 GetGlobalFieldManager()->SetDetectorField(this);
44 GetGlobalFieldManager()->CreateChordFinder(this);
45}
46
47//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48
49SCMagneticField::SCMagneticField(G4ThreeVector fieldVector)
50 : G4UniformMagField(fieldVector)
51{
52 GetGlobalFieldManager()->SetDetectorField(this);
53 GetGlobalFieldManager()->CreateChordFinder(this);
54}
55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57
58// Set the value of the Global Field to fieldValue along X
59//
60void SCMagneticField::SetFieldValue(G4double fieldValue)
61{
62 G4UniformMagField::SetFieldValue(G4ThreeVector(fieldValue,0,0));
63}
64
65//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66
67// Set the value of the Global Field
68//
69void SCMagneticField::SetFieldValue(G4ThreeVector fieldVector)
70{
71 // Find the Field Manager for the global field
72 G4FieldManager* fieldMgr= GetGlobalFieldManager();
73
74 if(fieldVector!=G4ThreeVector(0.,0.,0.))
75 {
76 G4UniformMagField::SetFieldValue(fieldVector);
77 fieldMgr->SetDetectorField(this);
78 } else {
79 // If the new field's value is Zero, then it is best to
80 // insure that it is not used for propagation.
81 G4MagneticField* magField = NULL;
82 fieldMgr->SetDetectorField(magField);
83 }
84}
85
86//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87
88SCMagneticField::~SCMagneticField()
89{
90 // GetGlobalFieldManager()->SetDetectorField(0);
91}
92
93//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
94
95#include "G4TransportationManager.hh"
96
97G4FieldManager* SCMagneticField::GetGlobalFieldManager()
98{
99 return G4TransportationManager::GetTransportationManager()->GetFieldManager();
100}
101
102//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.