// // ******************************************************************** // * 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: F03ElectroMagneticField.cc,v 1.2 2006/06/29 18:30:05 gunter Exp $ // GEANT4 tag $Name: HEAD $ // // // User Field class implementation. // #include "F03ElectroMagneticField.hh" #include "F03FieldMessenger.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: F03ElectroMagneticField::F03ElectroMagneticField() : fStepper(NULL),fChordFinder(NULL),fLocalChordFinder(NULL) { fMagneticField = new G4UniformMagField( G4ThreeVector(3.3*tesla, 0.0, // 0.5*tesla, 0.0 )); fLocalMagneticField = new G4UniformMagField( G4ThreeVector(3.3*tesla, 0.0, // 0.5*tesla, 0.0 )); // G4FieldManager* fieldMgr = G4TransportationManager::GetTransportationManager() // ->GetFieldManager(); // fieldMgr->SetDetectorField(fMagneticField); // fieldMgr->CreateChordFinder(fMagneticField); fFieldMessenger = new F03FieldMessenger(this) ; fEquation = new G4Mag_UsualEqRhs(fMagneticField); fLocalEquation = new G4Mag_UsualEqRhs(fLocalMagneticField); fMinStep = 1.0*mm ; // minimal step of 1 mm is default fStepperType = 4 ; // ClassicalRK4 is default stepper fFieldManager = G4TransportationManager::GetTransportationManager() ->GetFieldManager(); fLocalFieldManager = G4TransportationManager::GetTransportationManager() ->GetFieldManager(); UpdateField(); // GetGlobalFieldManager()->CreateChordFinder(this); } ///////////////////////////////////////////////////////////////////////////////// F03ElectroMagneticField::F03ElectroMagneticField(G4ThreeVector fieldVector) { fMagneticField = new G4UniformMagField(fieldVector); GetGlobalFieldManager()->CreateChordFinder(this); } //////////////////////////////////////////////////////////////////////////////// F03ElectroMagneticField::~F03ElectroMagneticField() { // GetGlobalFieldManager()->SetDetectorField(0); if(fMagneticField) delete fMagneticField; if(fChordFinder) delete fChordFinder; if(fStepper) delete fStepper; } ///////////////////////////////////////////////////////////////////////////// // // Update field // void F03ElectroMagneticField::UpdateField() { SetStepper(); G4cout<<"The minimal step is equal to "<SetDetectorField(fMagneticField ); fLocalFieldManager->SetDetectorField(fLocalMagneticField ); if(fChordFinder) delete fChordFinder; if(fLocalChordFinder) delete fLocalChordFinder; fChordFinder = new G4ChordFinder( fMagneticField, fMinStep,fStepper); fLocalChordFinder = new G4ChordFinder( fLocalMagneticField, fMinStep,fLocalStepper); fFieldManager->SetChordFinder( fChordFinder ); fLocalFieldManager->SetChordFinder( fLocalChordFinder ); return; } ///////////////////////////////////////////////////////////////////////////// // // Set stepper according to the stepper type // void F03ElectroMagneticField::SetStepper() { if(fStepper) delete fStepper; switch ( fStepperType ) { case 0: fStepper = new G4ExplicitEuler( fEquation ); fLocalStepper = new G4ExplicitEuler( fLocalEquation ); 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* fMagneticField = NULL; fieldMgr->SetDetectorField(fMagneticField); } } //////////////////////////////////////////////////////////////////////////////// // // Utility method G4FieldManager* F03ElectroMagneticField::GetGlobalFieldManager() { return G4TransportationManager::GetTransportationManager() ->GetFieldManager(); }