Files
geant4/examples/extended/field/field01/src/F01ElectroMagneticField.cc
T
2016-06-08 16:57:27 +02:00

227 lines
7.0 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: F01ElectroMagneticField.cc,v 1.8 2001/10/15 17:20:37 gcosmo Exp $
// GEANT4 tag $Name: geant4-05-00 $
//
//
// User Field class implementation.
//
#include "F01ElectroMagneticField.hh"
#include "F01FieldMessenger.hh"
#include "G4UniformMagField.hh"
#include "G4MagneticField.hh"
#include "G4FieldManager.hh"
#include "G4TransportationManager.hh"
#include "G4Mag_UsualEqRhs.hh"
#include "G4MagIntegratorStepper.hh"
#include "G4ChordFinder.hh"
#include "G4ExplicitEuler.hh"
#include "G4ImplicitEuler.hh"
#include "G4SimpleRunge.hh"
#include "G4SimpleHeum.hh"
#include "G4ClassicalRK4.hh"
#include "G4HelixExplicitEuler.hh"
#include "G4HelixImplicitEuler.hh"
#include "G4HelixSimpleRunge.hh"
#include "G4CashKarpRKF45.hh"
#include "G4RKG3_Stepper.hh"
//////////////////////////////////////////////////////////////////////////
//
// Constructors:
F01ElectroMagneticField::F01ElectroMagneticField()
: fChordFinder(0), fStepper(0)
{
fMagneticField = new G4UniformMagField(
G4ThreeVector(3.3*tesla,
0.0, // 0.5*tesla,
0.0 ));
fFieldMessenger = new F01FieldMessenger(this) ;
fEquation = new G4Mag_UsualEqRhs(fMagneticField);
fMinStep = 1.0*mm ; // minimal step of 1 mm is default
fStepperType = 4 ; // ClassicalRK4 is default stepper
fFieldManager = G4TransportationManager::GetTransportationManager()
->GetFieldManager();
UpdateField();
}
/////////////////////////////////////////////////////////////////////////////////
F01ElectroMagneticField::F01ElectroMagneticField(G4ThreeVector fieldVector)
{
fMagneticField = new G4UniformMagField(fieldVector);
GetGlobalFieldManager()->CreateChordFinder(this);
}
////////////////////////////////////////////////////////////////////////////////
F01ElectroMagneticField::~F01ElectroMagneticField()
{
// GetGlobalFieldManager()->SetDetectorField(0);
if(fMagneticField) delete fMagneticField;
if(fChordFinder) delete fChordFinder;
if(fStepper) delete fStepper;
}
/////////////////////////////////////////////////////////////////////////////
//
// Update field
//
void F01ElectroMagneticField::UpdateField()
{
SetStepper();
G4cout<<"The minimal step is equal to "<<fMinStep/mm<<" mm"<<G4endl ;
fFieldManager->SetDetectorField(fMagneticField );
if(fChordFinder) delete fChordFinder;
fChordFinder = new G4ChordFinder( fMagneticField, fMinStep,fStepper);
fFieldManager->SetChordFinder( fChordFinder );
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// Set stepper according to the stepper type
//
void F01ElectroMagneticField::SetStepper()
{
if(fStepper) delete fStepper;
switch ( fStepperType )
{
case 0:
fStepper = new G4ExplicitEuler( fEquation );
G4cout<<"G4ExplicitEuler is calledS"<<G4endl;
break;
case 1:
fStepper = new G4ImplicitEuler( fEquation );
G4cout<<"G4ImplicitEuler is called"<<G4endl;
break;
case 2:
fStepper = new G4SimpleRunge( fEquation );
G4cout<<"G4SimpleRunge is called"<<G4endl;
break;
case 3:
fStepper = new G4SimpleHeum( fEquation );
G4cout<<"G4SimpleHeum is called"<<G4endl;
break;
case 4:
fStepper = new G4ClassicalRK4( fEquation );
G4cout<<"G4ClassicalRK4 (default) is called"<<G4endl;
break;
case 5:
fStepper = new G4HelixExplicitEuler( fEquation );
G4cout<<"G4HelixExplicitEuler is called"<<G4endl;
break;
case 6:
fStepper = new G4HelixImplicitEuler( fEquation );
G4cout<<"G4HelixImplicitEuler is called"<<G4endl;
break;
case 7:
fStepper = new G4HelixSimpleRunge( fEquation );
G4cout<<"G4HelixSimpleRunge is called"<<G4endl;
break;
case 8:
fStepper = new G4CashKarpRKF45( fEquation );
G4cout<<"G4CashKarpRKF45 is called"<<G4endl;
break;
case 9:
fStepper = new G4RKG3_Stepper( fEquation );
G4cout<<"G4RKG3_Stepper is called"<<G4endl;
break;
default: fStepper = 0;
}
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// Set the value of the Global Field to fieldValue along Z
//
void F01ElectroMagneticField::SetFieldValue(G4double fieldValue)
{
if(fMagneticField) delete fMagneticField;
fMagneticField = new G4UniformMagField(G4ThreeVector(0,0,fieldValue));
// UpdateField();
}
///////////////////////////////////////////////////////////////////////////////
//
// Set the value of the Global Field
//
void F01ElectroMagneticField::SetFieldValue(G4ThreeVector fieldVector)
{
// Find the Field Manager for the global field
G4FieldManager* fieldMgr= GetGlobalFieldManager();
if(fieldVector != G4ThreeVector(0.,0.,0.))
{
if(fMagneticField) delete fMagneticField;
fMagneticField = new G4UniformMagField(fieldVector);
// UpdateField();
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* fMagneticField = 0;
fieldMgr->SetDetectorField(fMagneticField);
}
}
////////////////////////////////////////////////////////////////////////////////
//
// Utility method
G4FieldManager* F01ElectroMagneticField::GetGlobalFieldManager()
{
return G4TransportationManager::GetTransportationManager()
->GetFieldManager();
}