46 lines
963 B
Plaintext
46 lines
963 B
Plaintext
// 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: G4FieldManager.icc,v 1.1 2000/04/27 16:27:50 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-02-00 $
|
|
//
|
|
//
|
|
// G4FieldManager inline implementation
|
|
//
|
|
|
|
inline
|
|
G4bool G4FieldManager::SetDetectorField(G4Field *detectorField)
|
|
{
|
|
fDetectorField= detectorField;
|
|
return 0;
|
|
}
|
|
|
|
inline
|
|
G4Field* G4FieldManager::GetDetectorField()
|
|
{
|
|
// If pointer is null, should this raise an exception ??
|
|
return fDetectorField;
|
|
}
|
|
|
|
inline
|
|
G4bool G4FieldManager::DoesFieldExist()
|
|
{
|
|
return (fDetectorField != 0);
|
|
}
|
|
|
|
inline
|
|
void G4FieldManager::SetChordFinder(G4ChordFinder *aChordFinder)
|
|
{
|
|
fChordFinder= aChordFinder;
|
|
}
|
|
|
|
inline
|
|
G4ChordFinder* G4FieldManager::GetChordFinder()
|
|
{
|
|
return fChordFinder;
|
|
}
|