54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
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: G4TransportationManager.icc,v 1.4 2000/11/01 16:51:08 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 inlined function members implementation
|
|
// ------------------------------------------------------------
|
|
//
|
|
// Created: 10 March 1997, J. Apostolakis
|
|
//
|
|
|
|
inline
|
|
G4Navigator* G4TransportationManager::GetNavigatorForTracking() const
|
|
{
|
|
return fNavigatorForTracking;
|
|
}
|
|
|
|
inline
|
|
G4PropagatorInField* G4TransportationManager::GetPropagatorInField() const
|
|
{
|
|
return fPropagatorInField;
|
|
}
|
|
|
|
inline
|
|
G4FieldManager* G4TransportationManager::GetFieldManager() const
|
|
{
|
|
return fFieldManager;
|
|
}
|
|
|
|
inline
|
|
void G4TransportationManager::SetNavigatorForTracking(G4Navigator* newNavigator)
|
|
{
|
|
fNavigatorForTracking= newNavigator;
|
|
// fPropagatorInField->setNavigator(newNavigator);
|
|
}
|
|
|
|
inline
|
|
void G4TransportationManager::SetPropagatorInField(
|
|
G4PropagatorInField* newFieldPropagator )
|
|
{
|
|
fPropagatorInField= newFieldPropagator;
|
|
}
|
|
|
|
inline
|
|
void G4TransportationManager::SetFieldManager(G4FieldManager* newFieldManager)
|
|
{
|
|
fFieldManager= newFieldManager;
|
|
}
|