Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable Class Reference

#include <G4PhysicalVolumeModel.hh>

+ Inheritance diagram for G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable:

Public Member Functions

 G4PhysicalVolumeModelTouchable (const std::vector< G4PhysicalVolumeNodeID > &fullPVPath)
 
const G4ThreeVectorGetTranslation (G4int depth) const
 
const G4RotationMatrixGetRotation (G4int depth) const
 
G4VPhysicalVolumeGetVolume (G4int depth) const
 
G4VSolidGetSolid (G4int depth) const
 
G4int GetReplicaNumber (G4int depth) const
 
G4int GetHistoryDepth () const
 
- Public Member Functions inherited from G4TouchableHistory
 G4TouchableHistory ()
 
 G4TouchableHistory (const G4NavigationHistory &history)
 
virtual ~G4TouchableHistory ()
 
G4int GetCopyNumber (G4int depth=0) const
 
virtual G4int MoveUpHistory (G4int num_levels=1)
 
virtual void UpdateYourself (G4VPhysicalVolume *pPhysVol, const G4NavigationHistory *history=nullptr)
 
virtual const G4NavigationHistoryGetHistory () const
 
void * operator new (std::size_t)
 
void operator delete (void *aTH)
 

Detailed Description

Definition at line 128 of file G4PhysicalVolumeModel.hh.

Constructor & Destructor Documentation

◆ G4PhysicalVolumeModelTouchable()

G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::G4PhysicalVolumeModelTouchable ( const std::vector< G4PhysicalVolumeNodeID > & fullPVPath)

Definition at line 1108 of file G4PhysicalVolumeModel.cc.

1109 :
1110 fFullPVPath(fullPVPath) {}

Member Function Documentation

◆ GetHistoryDepth()

G4int G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetHistoryDepth ( ) const
inlinevirtual

Reimplemented from G4TouchableHistory.

Definition at line 137 of file G4PhysicalVolumeModel.hh.

137{return G4int(fFullPVPath.size());}
int G4int
Definition G4Types.hh:85

◆ GetReplicaNumber()

G4int G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetReplicaNumber ( G4int depth) const
virtual

Reimplemented from G4TouchableHistory.

Definition at line 1164 of file G4PhysicalVolumeModel.cc.

1165{
1166 size_t i = fFullPVPath.size() - depth - 1;
1167 if (i >= fFullPVPath.size()) {
1168 G4Exception("G4PhysicalVolumeModelTouchable::GetReplicaNumber",
1169 "modeling0009",
1171 "Index out of range. Asking for non-existent depth");
1172 }
1173 return fFullPVPath[i].GetCopyNo();
1174}
@ FatalErrorInArgument
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ GetRotation()

const G4RotationMatrix * G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetRotation ( G4int depth) const
virtual

Reimplemented from G4TouchableHistory.

Definition at line 1126 of file G4PhysicalVolumeModel.cc.

1127{
1128 size_t i = fFullPVPath.size() - depth - 1;
1129 if (i >= fFullPVPath.size()) {
1130 G4Exception("G4PhysicalVolumeModelTouchable::GetRotation",
1131 "modeling0006",
1133 "Index out of range. Asking for non-existent depth");
1134 }
1135 static G4RotationMatrix tempRotation;
1136 tempRotation = fFullPVPath[i].GetTransform().getRotation();
1137 return &tempRotation;
1138}
CLHEP::HepRotation G4RotationMatrix

◆ GetSolid()

G4VSolid * G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetSolid ( G4int depth) const
virtual

Reimplemented from G4TouchableHistory.

Definition at line 1152 of file G4PhysicalVolumeModel.cc.

1153{
1154 size_t i = fFullPVPath.size() - depth - 1;
1155 if (i >= fFullPVPath.size()) {
1156 G4Exception("G4PhysicalVolumeModelTouchable::GetSolid",
1157 "modeling0008",
1159 "Index out of range. Asking for non-existent depth");
1160 }
1161 return fFullPVPath[i].GetPhysicalVolume()->GetLogicalVolume()->GetSolid();
1162}

◆ GetTranslation()

const G4ThreeVector & G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetTranslation ( G4int depth) const
virtual

Reimplemented from G4TouchableHistory.

Definition at line 1112 of file G4PhysicalVolumeModel.cc.

1113{
1114 size_t i = fFullPVPath.size() - depth - 1;
1115 if (i >= fFullPVPath.size()) {
1116 G4Exception("G4PhysicalVolumeModelTouchable::GetTranslation",
1117 "modeling0005",
1119 "Index out of range. Asking for non-existent depth");
1120 }
1121 static G4ThreeVector tempTranslation;
1122 tempTranslation = fFullPVPath[i].GetTransform().getTranslation();
1123 return tempTranslation;
1124}
CLHEP::Hep3Vector G4ThreeVector

◆ GetVolume()

G4VPhysicalVolume * G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable::GetVolume ( G4int depth) const
virtual

Reimplemented from G4TouchableHistory.

Definition at line 1140 of file G4PhysicalVolumeModel.cc.

1141{
1142 size_t i = fFullPVPath.size() - depth - 1;
1143 if (i >= fFullPVPath.size()) {
1144 G4Exception("G4PhysicalVolumeModelTouchable::GetVolume",
1145 "modeling0007",
1147 "Index out of range. Asking for non-existent depth");
1148 }
1149 return fFullPVPath[i].GetPhysicalVolume();
1150}

The documentation for this class was generated from the following files: