Geant4  10.03
G4ITTransportationManager.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: G4ITTransportationManager.icc 66356 2012-12-18 09:02:32Z 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 G4ITNavigator* G4ITTransportationManager::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 G4ITTransportationManager::SetWorldForTracking(G4VPhysicalVolume* theWorld)
57 {
58  fWorlds[0] = theWorld;
59  fNavigators[0]->SetWorldVolume(theWorld);
60 }
61 
62 // ----------------------------------------------------------------------------
63 // SetNavigatorForTracking()
64 //
65 // Set the active navigator for tracking, always
66 // the first in the collection of registered navigators.
67 //
68 //inline
69 //void G4ITTransportationManager::SetNavigatorForTracking(G4ITNavigator* newNavigator)
70 //{
71 // fNavigators[0] = newNavigator;
72 //}
73 
74 // ----------------------------------------------------------------------------
75 // GetNoActiveNavigators()
76 //
77 // Return the number of active navigators.
78 //
79 inline
80 size_t G4ITTransportationManager::GetNoActiveNavigators() const
81 {
82  return fActiveNavigators.size();
83 }
84 
85 // ----------------------------------------------------------------------------
86 // GetActiveNavigatorsIterator()
87 //
88 // Return an iterator to the list of active navigators.
89 //
90 inline
91 std::vector<G4ITNavigator*>::iterator
92 G4ITTransportationManager::GetActiveNavigatorsIterator()
93 {
94  std::vector<G4ITNavigator*>::iterator iterator
95  = std::vector<G4ITNavigator*>::iterator(fActiveNavigators.begin());
96  return iterator;
97 }
98 
99 // ----------------------------------------------------------------------------
100 // GetNoWorlds()
101 //
102 // Return the number of registerd worlds.
103 //
104 inline
105 size_t G4ITTransportationManager::GetNoWorlds() const
106 {
107  return fWorlds.size();
108 }
109 
110 // ----------------------------------------------------------------------------
111 // GetWorldsIterator()
112 //
113 // Return an iterator to the list of registered worlds.
114 //
115 inline
116 std::vector<G4VPhysicalVolume*>::iterator
117 G4ITTransportationManager::GetWorldsIterator()
118 {
119  std::vector<G4VPhysicalVolume*>::iterator iterator
120  = std::vector<G4VPhysicalVolume*>::iterator(fWorlds.begin());
121  return iterator;
122 }
123 
124 // ----------------------------------------------------------------------------
125 // GetSafetyHelper()
126 //
127 // Return pointer to the created navigation safety helper instance.
128 //
129 inline
130 G4ITSafetyHelper* G4ITTransportationManager::GetSafetyHelper() const
131 {
132  return fpSafetyHelper;
133 }