100 lines
3.8 KiB
C++
100 lines
3.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: ExN02MagneticField.cc,v 1.7 2002/01/09 17:24:10 ranjard Exp $
|
|
// GEANT4 tag $Name: geant4-07-01 $
|
|
//
|
|
// User Field class implementation.
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#include "ExN02MagneticField.hh"
|
|
#include "G4FieldManager.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
ExN02MagneticField::ExN02MagneticField()
|
|
: G4UniformMagField(G4ThreeVector())
|
|
{
|
|
GetGlobalFieldManager()->SetDetectorField(this);
|
|
GetGlobalFieldManager()->CreateChordFinder(this);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
ExN02MagneticField::ExN02MagneticField(G4ThreeVector fieldVector)
|
|
: G4UniformMagField(fieldVector)
|
|
{
|
|
GetGlobalFieldManager()->SetDetectorField(this);
|
|
GetGlobalFieldManager()->CreateChordFinder(this);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
// Set the value of the Global Field to fieldValue along X
|
|
//
|
|
void ExN02MagneticField::SetFieldValue(G4double fieldValue)
|
|
{
|
|
G4UniformMagField::SetFieldValue(G4ThreeVector(fieldValue,0,0));
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
// Set the value of the Global Field
|
|
//
|
|
void ExN02MagneticField::SetFieldValue(G4ThreeVector fieldVector)
|
|
{
|
|
// Find the Field Manager for the global field
|
|
G4FieldManager* fieldMgr= GetGlobalFieldManager();
|
|
|
|
if(fieldVector!=G4ThreeVector(0.,0.,0.))
|
|
{
|
|
G4UniformMagField::SetFieldValue(fieldVector);
|
|
fieldMgr->SetDetectorField(this);
|
|
} else {
|
|
// If the new field's value is Zero, then it is best to
|
|
// insure that it is not used for propagation.
|
|
G4MagneticField* magField = NULL;
|
|
fieldMgr->SetDetectorField(magField);
|
|
}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
ExN02MagneticField::~ExN02MagneticField()
|
|
{
|
|
// GetGlobalFieldManager()->SetDetectorField(0);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#include "G4TransportationManager.hh"
|
|
|
|
G4FieldManager* ExN02MagneticField::GetGlobalFieldManager()
|
|
{
|
|
return G4TransportationManager::GetTransportationManager()->GetFieldManager();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|