Geant4  10.02.p01
G4TransportationManager.icc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
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. *
10 // * *
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. *
17 // * *
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 // ********************************************************************
25 //
26 //
27 // $Id: G4TransportationManager.icc 78308 2013-12-11 10:56:58Z gcosmo $
28 // ------------------------------------------------------------
29 // GEANT 4 inlined function members implementation
30 // ------------------------------------------------------------
31 //
32 // Created : 10 March 1997, J. Apostolakis
33 // Reviewed: 26 April 2006, G. Cosmo
34 //
35 // ----------------------------------------------------------------------------
36 
37 // ----------------------------------------------------------------------------
38 // GetNavigatorForTracking()
39 //
40 // Utility method to return the active navigator for tracking, always
41 // the first in the collection of registered navigators.
42 //
43 inline
44 G4Navigator* G4TransportationManager::GetNavigatorForTracking() const
45 {
46  return fNavigators[0];
47 }
48 
49 // ----------------------------------------------------------------------------
50 // SetWorldForTracking()
51 //
52 // Set the tracking world volume.
53 // This method is to be invoked by G4RunManagerKernel.
54 //
55 inline
56 void G4TransportationManager::SetWorldForTracking(G4VPhysicalVolume* theWorld)
57 {
58  fWorlds[0] = theWorld;
59  fNavigators[0]->SetWorldVolume(theWorld);
60 }
61 
62 // ----------------------------------------------------------------------------
63 // GetPropagatorInField()
64 //
65 // Return the associated propagator in field.
66 //
67 inline
68 G4PropagatorInField* G4TransportationManager::GetPropagatorInField() const
69 {
70  return fPropagatorInField;
71 }
72 
73 // ----------------------------------------------------------------------------
74 // SetPropagatorInField()
75 //
76 // Set the associated propagator in field.
77 //
78 inline
79 void G4TransportationManager::
80 SetPropagatorInField( G4PropagatorInField* newFieldPropagator )
81 {
82  fPropagatorInField = newFieldPropagator;
83 }
84 
85 // ----------------------------------------------------------------------------
86 // GetFieldManager()
87 //
88 // Return the associated field manager.
89 //
90 inline
91 G4FieldManager* G4TransportationManager::GetFieldManager() const
92 {
93  return fFieldManager;
94 }
95 
96 // ----------------------------------------------------------------------------
97 // GetNoActiveNavigators()
98 //
99 // Return the number of active navigators.
100 //
101 inline
102 size_t G4TransportationManager::GetNoActiveNavigators() const
103 {
104  return fActiveNavigators.size();
105 }
106 
107 // ----------------------------------------------------------------------------
108 // GetActiveNavigatorsIterator()
109 //
110 // Return an iterator to the list of active navigators.
111 //
112 inline
113 std::vector<G4Navigator*>::iterator
114 G4TransportationManager::GetActiveNavigatorsIterator()
115 {
116  std::vector<G4Navigator*>::iterator iterator
117  = std::vector<G4Navigator*>::iterator(fActiveNavigators.begin());
118  return iterator;
119 }
120 
121 // ----------------------------------------------------------------------------
122 // GetNoWorlds()
123 //
124 // Return the number of registerd worlds.
125 //
126 inline
127 size_t G4TransportationManager::GetNoWorlds() const
128 {
129  return fWorlds.size();
130 }
131 
132 // ----------------------------------------------------------------------------
133 // GetWorldsIterator()
134 //
135 // Return an iterator to the list of registered worlds.
136 //
137 inline
138 std::vector<G4VPhysicalVolume*>::iterator
139 G4TransportationManager::GetWorldsIterator()
140 {
141  std::vector<G4VPhysicalVolume*>::iterator iterator
142  = std::vector<G4VPhysicalVolume*>::iterator(fWorlds.begin());
143  return iterator;
144 }
145 
146 // ----------------------------------------------------------------------------
147 // GetSafetyHelper()
148 //
149 // Return pointer to the created navigation safety helper instance.
150 //
151 inline
152 G4SafetyHelper* G4TransportationManager::GetSafetyHelper() const
153 {
154  return fSafetyHelper;
155 }