// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * 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. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: F02ElectroMagneticField.cc,v 1.4 2006/06/29 18:27:53 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-ref-00 $ // // // User Field class implementation. // #include "F02ElectroMagneticField.hh" #include "F02FieldMessenger.hh" #include "G4UniformElectricField.hh" #include "G4UniformMagField.hh" #include "G4MagneticField.hh" #include "G4FieldManager.hh" #include "G4TransportationManager.hh" #include "G4EquationOfMotion.hh" #include "G4EqMagElectricField.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: F02ElectroMagneticField::F02ElectroMagneticField() : fStepper(NULL),fChordFinder(NULL),G4UniformElectricField( G4ThreeVector(0.0,0.0*kilovolt/cm,1000.0*kilovolt/cm)) { fEMfield = new G4UniformElectricField( G4ThreeVector( 0.0*kilovolt/cm, 0.0*kilovolt/cm, 1000.0*kilovolt/cm ) ); fFieldMessenger = new F02FieldMessenger(this) ; fEquation = new G4EqMagElectricField(fEMfield); fMinStep = 1.0*mm ; // minimal step of 1 mm is default fStepperType = 4 ; // ClassicalRK4 is default stepper fFieldManager = G4TransportationManager::GetTransportationManager() ->GetFieldManager(); fFieldManager->SetFieldChangesEnergy(true); UpdateField(); // GetGlobalFieldManager()->CreateChordFinder(this); } ///////////////////////////////////////////////////////////////////////////////// F02ElectroMagneticField::F02ElectroMagneticField(G4ThreeVector pFV): G4UniformElectricField(pFV) { fEMfield = new G4UniformElectricField(pFV); GetGlobalFieldManager()->CreateChordFinder(this); } //////////////////////////////////////////////////////////////////////////////// F02ElectroMagneticField::~F02ElectroMagneticField() { // GetGlobalFieldManager()->SetDetectorField(0); if(fEMfield) delete fEMfield; if(fChordFinder) delete fChordFinder; if(fStepper) delete fStepper; } ///////////////////////////////////////////////////////////////////////////// // // Update field // void F02ElectroMagneticField::UpdateField() { SetStepper(); G4cout<<"The minimal step is equal to "<SetDetectorField(fEMfield ); if(fChordFinder) delete fChordFinder; fChordFinder = new G4ChordFinder( fEMfield, fMinStep,fStepper); fFieldManager->SetChordFinder( fChordFinder ); return; } ///////////////////////////////////////////////////////////////////////////// // // Set stepper according to the stepper type // void F02ElectroMagneticField::SetStepper() { G4int nvar = 8; if(fStepper) delete fStepper; switch ( fStepperType ) { case 0: fStepper = new G4ExplicitEuler( fEquation, nvar ); G4cout<<"G4ExplicitEuler is calledS"<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* fEMfield = NULL; fieldMgr->SetDetectorField(fEMfield); } } //////////////////////////////////////////////////////////////////////////////// // // Utility method G4FieldManager* F02ElectroMagneticField::GetGlobalFieldManager() { return G4TransportationManager::GetTransportationManager() ->GetFieldManager(); }