62 ,
G4int requestedDepth
66 ,
const std::vector<G4PhysicalVolumeNodeID>& baseFullPVPath)
88 fType =
"G4PhysicalVolumeModel";
108 std::ostringstream oss;
123(
const std::vector<G4PhysicalVolumeNodeID>& path)
126 for (
const auto& node: path) {
127 PVNameCopyNoPath.push_back
129 (node.GetPhysicalVolume()->GetName(),node.GetCopyNo()));
131 return PVNameCopyNoPath;
135(
const std::vector<G4PhysicalVolumeNodeID>& path)
139 std::ostringstream oss;
195 (
"G4PhysicalVolumeModel::DescribeYourselfTo",
202 (
"G4PhysicalVolumeModel::DescribeYourselfTo",
215 ed <<
"More than one solid cutter/clipper:";
217 if (pSectionSolid) ed <<
"\nsectioner in force";
218 if (pCutawaySolid) ed <<
"\ncutaway in force";
229 startingTransformation,
252 std::ostringstream o;
257 return "WARNING: NO CURRENT VOLUME - global tag is " +
fGlobalTag;
268 G4int requestedDepth,
284 if (!(pVPV -> IsReplicated ())) {
286 pSol = pLV -> GetSolid ();
287 pMaterial = pLV -> GetMaterial ();
289 theAT, sceneHandler);
298 pVPV -> GetReplicationData (axis, nReplicas, width,
offset, consuming);
300 G4int nEnd = nReplicas;
307 for (
int n = nBegin; n < nEnd; n++) {
308 pSol = pP -> ComputeSolid (n, pVPV);
309 pP -> ComputeTransformation (n, pVPV);
310 pSol -> ComputeDimensions (pP, n, pVPV);
311 pVPV -> SetCopyNo (n);
317 pMaterial = pP -> ComputeMaterial (n, pVPV, &parentTouchable);
319 theAT, sceneHandler);
344 pSol = pLV -> GetSolid ();
345 pMaterial = pLV -> GetMaterial ();
346 G4ThreeVector originalTranslation = pVPV -> GetTranslation ();
348 G4double originalRMin = 0., originalRMax = 0.;
350 originalRMin = ((
G4Tubs*)pSol)->GetInnerRadius();
351 originalRMax = ((
G4Tubs*)pSol)->GetOuterRadius();
353 G4bool visualisable =
true;
354 for (
int n = nBegin; n < nEnd; n++) {
361 translation =
G4ThreeVector (-width*(nReplicas-1)*0.5+n*width,0,0);
364 translation =
G4ThreeVector (0,-width*(nReplicas-1)*0.5+n*width,0);
367 translation =
G4ThreeVector (0,0,-width*(nReplicas-1)*0.5+n*width);
374 if (
fpMP->IsWarning())
376 "G4PhysicalVolumeModel::VisitGeometryAndGetVisReps: WARNING:"
377 "\n built-in replicated volumes replicated in radius for "
379 "-type\n solids (your solid \""
381 "\") are not visualisable."
383 visualisable =
false;
390 pRotation = &rotation;
393 pVPV -> SetTranslation (translation);
394 pVPV -> SetRotation (pRotation);
395 pVPV -> SetCopyNo (n);
399 theAT, sceneHandler);
403 pVPV -> SetTranslation (originalTranslation);
404 pVPV -> SetRotation (pOriginalRotation);
406 ((
G4Tubs*)pSol)->SetInnerRadius(originalRMin);
407 ((
G4Tubs*)pSol)->SetOuterRadius(originalRMax);
415 G4int requestedDepth,
437 const G4ThreeVector& translation = pVPV -> GetTranslation ();
455 if (
fpMP->GetDefaultVisAttributes()) {
461 if (
fpMP->GetCBDAlgorithmNumber() == 1) {
463 if (
fpMP->GetCBDParameters().size() != 3) {
464 G4Exception(
"G4PhysicalVolumeModelTouchable::DescribeAndDescend",
467 "Algorithm-parameter mismatch for Colour By Density");
478 red = (d1-d)/(d1-d0); green = (d-d0)/(d1-d0); blue = 0.;
480 red = 0.; green = (d2-d)/(d2-d1); blue = (d-d1)/(d2-d1);
482 red = 0.; green = 0.; blue = 1.;
487 }
else if (
fpMP->GetCBDAlgorithmNumber() == 2) {
491 pVisAttribs = tempVisAtts;
497 const auto& vams =
fpMP->GetVisAttributesModifiers();
500 for (
const auto& vam: vams) {
501 const auto& vamPath = vam.GetPVNameCopyNoPath();
505 auto iVAMNameCopyNo = vamPath.begin();
507 for (; iVAMNameCopyNo != vamPath.end(); ++iVAMNameCopyNo, ++iPVNodeId) {
509 iVAMNameCopyNo->GetName() ==
510 iPVNodeId->GetPhysicalVolume()->GetName() &&
511 iVAMNameCopyNo->GetCopyNo() ==
512 iPVNodeId->GetPhysicalVolume()->GetCopyNo()
518 if (iVAMNameCopyNo == vamPath.end()) {
524 modifiedVisAtts = *pVisAttribs;
525 pVisAttribs = &modifiedVisAtts;
527 switch (vam.GetVisAttributesSignifier()) {
589 if (
fpMP->IsSpecialMeshRendering()) {
590 G4bool potentialG4Mesh =
false;
591 if (
fpMP->GetSpecialMeshVolumes().empty()) {
593 potentialG4Mesh =
true;
596 for (
const auto& pvNameCopyNo:
fpMP->GetSpecialMeshVolumes()) {
597 if (pVPV->
GetName() == pvNameCopyNo.GetName()) {
599 if (pvNameCopyNo.GetCopyNo() < 0) {
601 potentialG4Mesh =
true;
603 if (pVPV->
GetCopyNo() == pvNameCopyNo.GetCopyNo()) {
605 potentialG4Mesh =
true;
611 if (potentialG4Mesh) {
614 G4Mesh mesh(pVPV,theNewAT);
633 G4bool thisToBeDrawn =
true;
638 G4bool cullingInvisible =
fpMP->IsCullingInvisible();
641 G4bool cullingLowDensity =
fpMP->IsDensityCulling();
648 if (cullingInvisible) {
650 if (!markedVisible) thisToBeDrawn =
false;
653 if (cullingLowDensity) {
655 if (density < densityCut) thisToBeDrawn =
false;
659 if (
fAbort) thisToBeDrawn =
false;
662 nodeID.SetDrawn(thisToBeDrawn);
680 explodeFactor * oldTranslation.
dy(),
681 explodeFactor * oldTranslation.
dz());
682 theNewAT = centering * newTranslation * oldRotation * oldScale;
697 G4bool daughtersToBeDrawn =
true;
699 if (!nDaughters) daughtersToBeDrawn =
false;
701 else if (requestedDepth == 0) daughtersToBeDrawn =
false;
703 else if (
fAbort) daughtersToBeDrawn =
false;
713 G4bool cullingCovered =
fpMP->IsCullingCovered();
728 if (cullingInvisible) {
730 if (daughtersInvisible) daughtersToBeDrawn =
false;
733 if (cullingCovered) {
735 if (surfaceDrawing) {
739 if (opaque) daughtersToBeDrawn =
false;
746 if (daughtersToBeDrawn) {
747 for (
G4int iDaughter = 0; iDaughter < nDaughters; iDaughter++) {
753 (pDaughterVPV, requestedDepth - 1, theNewAT, sceneHandler);
779 const auto& pSolA = target;
782 if (pMin.
x() >= pMax.
x() || pMin.
y() >= pMax.
y() || pMin.
z() >= pMax.
z()) {
795 const auto& pSolA = target;
796 const auto& pSolB = intersector;
798 pSolB->BoundingLimits(minB,maxB);
799 pMin.
set(std::max(minA.
x(),minB.
x()),
800 std::max(minA.
y(),minB.
y()),
801 std::max(minA.
z(),minB.
z()));
802 pMax.
set(std::min(maxA.
x(),maxB.
x()),
803 std::min(maxA.
y(),maxB.
y()),
804 std::min(maxA.
z(),maxB.
z()));
805 if (pMin.
x() >= pMax.
x() || pMin.
y() >= pMax.
y() || pMin.
z() >= pMax.
z()) {
832 G4VSolid* pResultantSolid =
nullptr;
839 if (SubtractionBoundingLimits(pSol)) {
841 (
"subtracted_clipped_solid", pSol, pDisplacedSolid);
845 if (IntersectionBoundingLimits(pSol, pDisplacedSolid)) {
847 (
"intersected_clipped_solid", pSol, pDisplacedSolid);
852 }
else if (pSectionSolid) {
854 if (IntersectionBoundingLimits(pSol, pDisplacedSolid)) {
858 }
else if (pCutawaySolid) {
860 switch (
fpMP->GetCutawayMode()) {
862 if (SubtractionBoundingLimits(pSol)) {
867 if (IntersectionBoundingLimits(pSol, pDisplacedSolid)) {
874 if (pResultantSolid) {
880 delete pResultantSolid;
881 delete pDisplacedSolid;
893 auto iterator = find(pvStore->begin(),pvStore->end(),
fpTopPV);
894 if (iterator == pvStore->end()) {
897 ed <<
"Attempt to validate a volume that is no longer in the physical volume store.";
909 std::map<G4String,G4AttDef>* store
913 G4AttDef(
"PVPath",
"Physical Volume Path",
"Physics",
"",
"G4String");
914 (*store)[
"BasePVPath"] =
915 G4AttDef(
"BasePVPath",
"Base Physical Volume Path",
"Physics",
"",
"G4String");
917 G4AttDef(
"LVol",
"Logical Volume",
"Physics",
"",
"G4String");
919 G4AttDef(
"Solid",
"Solid Name",
"Physics",
"",
"G4String");
921 G4AttDef(
"EType",
"Entity Type",
"Physics",
"",
"G4String");
923 G4AttDef(
"DmpSol",
"Dump of Solid properties",
"Physics",
"",
"G4String");
924 (*store)[
"LocalTrans"] =
925 G4AttDef(
"LocalTrans",
"Local transformation of volume",
"Physics",
"",
"G4String");
926 (*store)[
"LocalExtent"] =
927 G4AttDef(
"LocalExtent",
"Local extent of volume",
"Physics",
"",
"G4String");
928 (*store)[
"GlobalTrans"] =
929 G4AttDef(
"GlobalTrans",
"Global transformation of volume",
"Physics",
"",
"G4String");
930 (*store)[
"GlobalExtent"] =
931 G4AttDef(
"GlobalExtent",
"Global extent of volume",
"Physics",
"",
"G4String");
932 (*store)[
"Material"] =
933 G4AttDef(
"Material",
"Material Name",
"Physics",
"",
"G4String");
934 (*store)[
"Density"] =
935 G4AttDef(
"Density",
"Material Density",
"Physics",
"G4BestUnit",
"G4double");
937 G4AttDef(
"State",
"Material State (enum undefined,solid,liquid,gas)",
"Physics",
"",
"G4String");
939 G4AttDef(
"Radlen",
"Material Radiation Length",
"Physics",
"G4BestUnit",
"G4double");
941 G4AttDef(
"Region",
"Cuts Region",
"Physics",
"",
"G4String");
942 (*store)[
"RootRegion"] =
943 G4AttDef(
"RootRegion",
"Root Region (0/1 = false/true)",
"Physics",
"",
"G4bool");
948static std::ostream& operator<< (std::ostream& o,
const G4Transform3D t)
960 o << setw(w) << t.
xx() << setw(w) << t.
xy() << setw(w) << t.
xz() << setw(w) << t.
dx() << endl;
961 o << setw(w) << t.
yx() << setw(w) << t.
yy() << setw(w) << t.
yz() << setw(w) << t.
dy() << endl;
962 o << setw(w) << t.
zx() << setw(w) << t.
zy() << setw(w) << t.
zz() << setw(w) << t.
dz() << endl;
965 o <<
"= translation:" << endl;
966 o << setw(w) << tl.
dx() << setw(w) << tl.
dy() << setw(w) << tl.
dz() << endl;
969 o <<
"* rotation:" << endl;
970 o << setw(w) << r.
xx() << setw(w) << r.
xy() << setw(w) << r.
xz() << endl;
971 o << setw(w) << r.
yx() << setw(w) << r.
yy() << setw(w) << r.
yz() << endl;
972 o << setw(w) << r.
zx() << setw(w) << r.
zy() << setw(w) << r.
zz() << endl;
975 o <<
"* scale:" << endl;
976 o << setw(w) << sc.
xx() << setw(w) << sc.
yy() << setw(w) << sc.
zz() << endl;
979 o <<
"Transformed axes:" << endl;
980 o <<
"x': " << r *
G4Vector3D(1., 0., 0.) << endl;
981 o <<
"y': " << r *
G4Vector3D(0., 1., 0.) << endl;
982 o <<
"z': " << r *
G4Vector3D(0., 0., 1.) << endl;
989 std::vector<G4AttValue>* values =
new std::vector<G4AttValue>;
993 (
"G4PhysicalVolumeModel::CreateCurrentAttValues",
996 "Current logical volume not defined.");
1001 values->push_back(
G4AttValue(
"PVPath", oss.str(),
""));
1004 values->push_back(
G4AttValue(
"BasePVPath", oss.str(),
""));
1013 oss.str(
""); oss <<
'\n' << *pSol;
1014 values->push_back(
G4AttValue(
"DmpSol", oss.str(),
""));
1018 oss.str(
""); oss <<
'\n' <<
G4Transform3D(localRotation,localTranslation);
1019 values->push_back(
G4AttValue(
"LocalTrans", oss.str(),
""));
1021 oss.str(
""); oss <<
'\n' << pSol->
GetExtent() << std::endl;
1022 values->push_back(
G4AttValue(
"LocalExtent", oss.str(),
""));
1025 values->push_back(
G4AttValue(
"GlobalTrans", oss.str(),
""));
1028 values->push_back(
G4AttValue(
"GlobalExtent", oss.str(),
""));
1031 values->push_back(
G4AttValue(
"Material", matName,
""));
1037 oss.str(
""); oss << matState;
1038 values->push_back(
G4AttValue(
"State", oss.str(),
""));
1045 values->push_back(
G4AttValue(
"Region", regionName,
""));
1048 values->push_back(
G4AttValue(
"RootRegion", oss.str(),
""));
1053G4bool G4PhysicalVolumeModel::G4PhysicalVolumeNodeID::operator<
1056 if (fpPV < right.fpPV)
return true;
1057 if (fpPV == right.fpPV) {
1058 if (fCopyNo < right.fCopyNo)
return true;
1059 if (fCopyNo == right.fCopyNo)
1060 return fNonCulledDepth < right.fNonCulledDepth;
1065G4bool G4PhysicalVolumeModel::G4PhysicalVolumeNodeID::operator!=
1068 if (fpPV != right.fpPV ||
1069 fCopyNo != right.fCopyNo ||
1070 fNonCulledDepth != right.fNonCulledDepth ||
1071 fTransform != right.fTransform ||
1072 fDrawn != right.fDrawn)
return true;
1076std::ostream&
operator<<
1082 <<
' ' << node.GetCopyNo()
1090 os <<
" (Null PV node)";
1095std::ostream&
operator<<
1096(std::ostream& os,
const std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>& path)
1101 for (
const auto& nodeID: path) {
1102 os <<
' ' << nodeID;
1109(
const std::vector<G4PhysicalVolumeNodeID>& fullPVPath):
1110 fFullPVPath(fullPVPath) {}
1114 size_t i = fFullPVPath.size() - depth - 1;
1115 if (i >= fFullPVPath.size()) {
1116 G4Exception(
"G4PhysicalVolumeModelTouchable::GetTranslation",
1119 "Index out of range. Asking for non-existent depth");
1122 tempTranslation = fFullPVPath[i].GetTransform().getTranslation();
1123 return tempTranslation;
1128 size_t i = fFullPVPath.size() - depth - 1;
1129 if (i >= fFullPVPath.size()) {
1130 G4Exception(
"G4PhysicalVolumeModelTouchable::GetRotation",
1133 "Index out of range. Asking for non-existent depth");
1136 tempRotation = fFullPVPath[i].GetTransform().getRotation();
1137 return &tempRotation;
1142 size_t i = fFullPVPath.size() - depth - 1;
1143 if (i >= fFullPVPath.size()) {
1144 G4Exception(
"G4PhysicalVolumeModelTouchable::GetVolume",
1147 "Index out of range. Asking for non-existent depth");
1149 return fFullPVPath[i].GetPhysicalVolume();
1154 size_t i = fFullPVPath.size() - depth - 1;
1155 if (i >= fFullPVPath.size()) {
1156 G4Exception(
"G4PhysicalVolumeModelTouchable::GetSolid",
1159 "Index out of range. Asking for non-existent depth");
1161 return fFullPVPath[i].GetPhysicalVolume()->GetLogicalVolume()->GetSolid();
1166 size_t i = fFullPVPath.size() - depth - 1;
1167 if (i >= fFullPVPath.size()) {
1168 G4Exception(
"G4PhysicalVolumeModelTouchable::GetReplicaNumber",
1171 "Index out of range. Asking for non-existent depth");
1173 return fFullPVPath[i].GetCopyNo();
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4ThreadLocal T * G4GeomSplitter< T >::offset
CLHEP::HepRotation G4RotationMatrix
CLHEP::Hep3Vector G4ThreeVector
HepGeom::Vector3D< G4double > G4Vector3D
void set(double x, double y, double z)
HepRotation & rotateZ(double delta)
const G4VisExtent & GetBoundingExtent() const
G4double GetAlpha() const
void BoundingLimits(G4ThreeVector &pMin, G4ThreeVector &pMax) const override
const G4VisAttributes * GetVisAttributes() const
std::size_t GetNoDaughters() const
G4double GetDensity() const
G4VPhysicalVolume * GetParameterisedVolume() const
MeshType GetMeshType() const
std::vector< PVNameCopyNo > PVNameCopyNoPath
@ VASForceNumberOfCloudPoints
@ VASForceLineSegmentsPerCircle
void SetSpecialMeshRendering(G4bool)
G4VSolid * GetSolid(G4int depth) const
G4VPhysicalVolume * GetVolume(G4int depth) const
G4int GetReplicaNumber(G4int depth) const
const G4RotationMatrix * GetRotation(G4int depth) const
G4PhysicalVolumeModelTouchable(const std::vector< G4PhysicalVolumeNodeID > &fullPVPath)
const G4ThreeVector & GetTranslation(G4int depth) const
void DescribeAndDescend(G4VPhysicalVolume *, G4int requestedDepth, G4LogicalVolume *, G4VSolid *, G4Material *, const G4Transform3D &, G4VGraphicsScene &)
std::vector< G4PhysicalVolumeNodeID > fFullPVPath
G4VPhysicalVolume * fpTopPV
void VisitGeometryAndGetVisReps(G4VPhysicalVolume *, G4int requestedDepth, const G4Transform3D &, G4VGraphicsScene &)
std::vector< G4AttValue > * CreateCurrentAttValues() const
G4PhysicalVolumeModel(G4VPhysicalVolume *=0, G4int requestedDepth=UNLIMITED, const G4Transform3D &modelTransformation=G4Transform3D(), const G4ModelingParameters *=0, G4bool useFullExtent=false, const std::vector< G4PhysicalVolumeNodeID > &baseFullPVPath=std::vector< G4PhysicalVolumeNodeID >())
G4VSolid * fpClippingSolid
G4Material * fpCurrentMaterial
virtual ~G4PhysicalVolumeModel()
G4String GetCurrentTag() const
std::vector< G4PhysicalVolumeNodeID > fDrawnPVPath
G4Transform3D fCurrentTransform
G4bool Validate(G4bool warn)
virtual void DescribeSolid(const G4Transform3D &theAT, G4VSolid *pSol, const G4VisAttributes *pVisAttribs, G4VGraphicsScene &sceneHandler)
ClippingMode fClippingMode
static G4String GetPVNamePathString(const std::vector< G4PhysicalVolumeNodeID > &)
G4String GetCurrentDescription() const
void DescribeYourselfTo(G4VGraphicsScene &)
std::vector< G4PhysicalVolumeNodeID > fBaseFullPVPath
G4VPhysicalVolume * fpCurrentPV
std::map< G4int, G4int > fNTouchables
const std::map< G4String, G4AttDef > * GetAttDefs() const
static G4ModelingParameters::PVNameCopyNoPath GetPVNameCopyNoPath(const std::vector< G4PhysicalVolumeNodeID > &)
G4LogicalVolume * fpCurrentLV
static G4PhysicalVolumeStore * GetInstance()
const G4String & GetName() const
virtual void AddCompound(const G4VTrajectory &)=0
virtual void PostAddSolid()=0
virtual void PreAddSolid(const G4Transform3D &objectTransformation, const G4VisAttributes &visAttribs)=0
G4String fGlobalDescription
const G4VisExtent & GetExtent() const
const G4ModelingParameters * fpMP
G4VModel(const G4ModelingParameters *=0)
virtual G4int GetCopyNo() const =0
const G4String & GetName() const
virtual G4VisExtent GetExtent() const
virtual void BoundingLimits(G4ThreeVector &pMin, G4ThreeVector &pMax) const
virtual G4GeometryType GetEntityType() const =0
G4int GetForcedNumberOfCloudPoints() const
G4double GetLineWidth() const
G4bool IsDaughtersInvisible() const
void SetColour(const G4Colour &)
void SetVisibility(G4bool=true)
void SetForceAuxEdgeVisible(G4bool=true)
void SetForceCloud(G4bool=true)
G4int GetForcedLineSegmentsPerCircle() const
void SetForceWireframe(G4bool=true)
void SetLineWidth(G4double)
LineStyle GetLineStyle() const
const G4Colour & GetColour() const
G4bool IsForceAuxEdgeVisible() const
G4bool IsForcedAuxEdgeVisible() const
ForcedDrawingStyle GetForcedDrawingStyle() const
void SetForceSolid(G4bool=true)
void SetLineStyle(LineStyle)
void SetForceLineSegmentsPerCircle(G4int nSegments)
void SetDaughtersInvisible(G4bool=true)
void SetForceNumberOfCloudPoints(G4int nPoints)
G4bool IsForceDrawingStyle() const
std::map< G4String, G4AttDef > * GetInstance(const G4String &storeKey, G4bool &isNew)