2 // ********************************************************************
3 // * License and Disclaimer *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
27 // $Id: G4TransportationManager.icc 78308 2013-12-11 10:56:58Z gcosmo $
28 // ------------------------------------------------------------
29 // GEANT 4 inlined function members implementation
30 // ------------------------------------------------------------
32 // Created : 10 March 1997, J. Apostolakis
33 // Reviewed: 26 April 2006, G. Cosmo
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
38 // GetNavigatorForTracking()
40 // Utility method to return the active navigator for tracking, always
41 // the first in the collection of registered navigators.
44 G4Navigator* G4TransportationManager::GetNavigatorForTracking() const
46 return fNavigators[0];
49 // ----------------------------------------------------------------------------
50 // SetWorldForTracking()
52 // Set the tracking world volume.
53 // This method is to be invoked by G4RunManagerKernel.
56 void G4TransportationManager::SetWorldForTracking(G4VPhysicalVolume* theWorld)
58 fWorlds[0] = theWorld;
59 fNavigators[0]->SetWorldVolume(theWorld);
62 // ----------------------------------------------------------------------------
63 // GetPropagatorInField()
65 // Return the associated propagator in field.
68 G4PropagatorInField* G4TransportationManager::GetPropagatorInField() const
70 return fPropagatorInField;
73 // ----------------------------------------------------------------------------
74 // SetPropagatorInField()
76 // Set the associated propagator in field.
79 void G4TransportationManager::
80 SetPropagatorInField( G4PropagatorInField* newFieldPropagator )
82 fPropagatorInField = newFieldPropagator;
85 // ----------------------------------------------------------------------------
88 // Return the associated field manager.
91 G4FieldManager* G4TransportationManager::GetFieldManager() const
96 // ----------------------------------------------------------------------------
97 // GetNoActiveNavigators()
99 // Return the number of active navigators.
102 size_t G4TransportationManager::GetNoActiveNavigators() const
104 return fActiveNavigators.size();
107 // ----------------------------------------------------------------------------
108 // GetActiveNavigatorsIterator()
110 // Return an iterator to the list of active navigators.
113 std::vector<G4Navigator*>::iterator
114 G4TransportationManager::GetActiveNavigatorsIterator()
116 std::vector<G4Navigator*>::iterator iterator
117 = std::vector<G4Navigator*>::iterator(fActiveNavigators.begin());
121 // ----------------------------------------------------------------------------
124 // Return the number of registerd worlds.
127 size_t G4TransportationManager::GetNoWorlds() const
129 return fWorlds.size();
132 // ----------------------------------------------------------------------------
133 // GetWorldsIterator()
135 // Return an iterator to the list of registered worlds.
138 std::vector<G4VPhysicalVolume*>::iterator
139 G4TransportationManager::GetWorldsIterator()
141 std::vector<G4VPhysicalVolume*>::iterator iterator
142 = std::vector<G4VPhysicalVolume*>::iterator(fWorlds.begin());
146 // ----------------------------------------------------------------------------
149 // Return pointer to the created navigation safety helper instance.
152 G4SafetyHelper* G4TransportationManager::GetSafetyHelper() const
154 return fSafetyHelper;