Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PhysicalVolumeModel.hh File Reference
#include "G4VModel.hh"
#include "G4ModelingParameters.hh"
#include "G4VTouchable.hh"
#include "G4Transform3D.hh"
#include "G4Plane3D.hh"
#include <iostream>
#include <vector>
#include <map>

Go to the source code of this file.

Classes

class  G4PhysicalVolumeModel
 
class  G4PhysicalVolumeModel::G4PhysicalVolumeNodeID
 
class  G4PhysicalVolumeModel::G4PhysicalVolumeModelTouchable
 
struct  G4PhysicalVolumeModel::TouchableProperties
 

Functions

std::ostream & operator<< (std::ostream &os, const G4PhysicalVolumeModel::G4PhysicalVolumeNodeID &)
 
std::ostream & operator<< (std::ostream &os, const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > &)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & os,
const G4PhysicalVolumeModel::G4PhysicalVolumeNodeID & node )

Definition at line 1076 of file G4PhysicalVolumeModel.cc.

1078{
1080 if (pPV) {
1081 os << pPV->GetName()
1082 << ' ' << node.GetCopyNo()
1083// << '[' << node.GetNonCulledDepth() << ']'
1084// << ':' << node.GetTransform()
1085 ;
1086// os << " (";
1087// if (!node.GetDrawn()) os << "not ";
1088// os << "drawn)";
1089 } else {
1090 os << " (Null PV node)";
1091 }
1092 return os;
1093}
const G4String & GetName() const

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > & path )

Definition at line 1095 of file G4PhysicalVolumeModel.cc.

1097{
1098 if (path.empty()) {
1099 os << " TOP";
1100 } else {
1101 for (const auto& nodeID: path) {
1102 os << ' ' << nodeID;
1103 }
1104 }
1105 return os;
1106}