#include <G4NavigationHistory.hh>
Definition at line 52 of file G4NavigationHistory.hh.
◆ G4NavigationHistory() [1/2]
G4NavigationHistory::G4NavigationHistory |
( |
| ) |
|
◆ ~G4NavigationHistory()
G4NavigationHistory::~G4NavigationHistory |
( |
| ) |
|
Definition at line 62 of file G4NavigationHistory.cc.
63{
65}
void DeRegister(std::vector< G4NavigationLevel > *pLevels)
◆ G4NavigationHistory() [2/2]
Definition at line 47 of file G4NavigationHistory.cc.
48{
51 {
53 }
54
55 for (
auto ilev=
G4long(h.fStackDepth); ilev>=0; --ilev )
56 {
57 (*fNavHistory)[ilev] = (*h.fNavHistory)[ilev];
58 }
59 fStackDepth = h.fStackDepth;
60}
std::size_t GetMaxDepth() const
◆ BackLevel() [1/2]
void G4NavigationHistory::BackLevel |
( |
| ) |
|
|
inline |
◆ BackLevel() [2/2]
void G4NavigationHistory::BackLevel |
( |
G4int | n | ) |
|
|
inline |
◆ Clear()
void G4NavigationHistory::Clear |
( |
| ) |
|
|
inline |
◆ GetDepth()
std::size_t G4NavigationHistory::GetDepth |
( |
| ) |
const |
|
inline |
◆ GetMaxDepth()
std::size_t G4NavigationHistory::GetMaxDepth |
( |
| ) |
const |
|
inline |
◆ GetPtrTopTransform()
◆ GetReplicaNo()
G4int G4NavigationHistory::GetReplicaNo |
( |
G4int | n | ) |
const |
|
inline |
◆ GetTopReplicaNo()
G4int G4NavigationHistory::GetTopReplicaNo |
( |
| ) |
const |
|
inline |
◆ GetTopTransform()
Referenced by G4RegularNavigation::ComputeStep(), G4ReplicaNavigation::ComputeStep(), G4DrawVoxels::DrawVoxels(), G4PSCylinderSurfaceCurrent::IsSelectedSurface(), G4PSCylinderSurfaceFlux::IsSelectedSurface(), G4PSFlatSurfaceCurrent::IsSelectedSurface(), G4PSFlatSurfaceFlux::IsSelectedSurface(), G4PSSphereSurfaceCurrent::IsSelectedSurface(), G4PSSphereSurfaceFlux::IsSelectedSurface(), G4ParameterisedNavigation::LevelLocate(), G4RegularNavigation::LevelLocate(), G4PSCylinderSurfaceFlux::ProcessHits(), G4PSFlatSurfaceFlux::ProcessHits(), G4PSSphereSurfaceFlux::ProcessHits(), and G4PSVolumeFlux::ProcessHits().
◆ GetTopVolume()
Referenced by G4NormalNavigation::ComputeSafety(), G4ParameterisedNavigation::ComputeSafety(), G4ReplicaNavigation::ComputeSafety(), G4VoxelNavigation::ComputeSafety(), G4NormalNavigation::ComputeStep(), G4ParameterisedNavigation::ComputeStep(), G4RegularNavigation::ComputeStep(), G4ReplicaNavigation::ComputeStep(), G4VoxelNavigation::ComputeStep(), G4ParameterisedNavigation::LevelLocate(), and G4RegularNavigation::LevelLocate().
◆ GetTopVolumeType()
EVolume G4NavigationHistory::GetTopVolumeType |
( |
| ) |
const |
|
inline |
◆ GetTransform()
◆ GetVolume()
◆ GetVolumeType()
◆ NewLevel()
◆ operator delete()
void G4NavigationHistory::operator delete |
( |
void * | aHistory | ) |
|
|
inline |
◆ operator new()
void * G4NavigationHistory::operator new |
( |
std::size_t | | ) |
|
|
inline |
◆ operator=()
◆ Reset()
void G4NavigationHistory::Reset |
( |
| ) |
|
|
inline |
◆ SetFirstEntry()
◆ operator<<
Definition at line 67 of file G4NavigationHistory.cc.
69{
70 os <<
"History depth=" << nav.GetDepth() <<
G4endl;
71 for (
G4int i=0; i<=(
G4int)nav.GetDepth(); ++i )
72 {
73 os << "Level=["<<i<<"]: ";
74 if( nav.GetVolume(i) != nullptr )
75 {
76 os << "Phys Name=["<< nav.GetVolume(i)->GetName()
77 << "] Type=[";
78 switch(nav.GetVolumeType(i))
79 {
81 os << "N";
82 break;
84 os << "R" << nav.GetReplicaNo(i);
85 break;
87 os << "P" << nav.GetReplicaNo(i);
88 break;
90 os << "E" << nav.GetReplicaNo(i);
91 break;
92 }
93 os << "]";
94 }
95 else
96 {
97 os << "Phys = <Null>";
98 }
100 }
101 return os;
102}
The documentation for this class was generated from the following files: