69 delete fpPolyhedron; fpPolyhedron =
nullptr;
70 delete fScale; fScale =
nullptr;
78 :
G4VSolid (rhs), fPtrSolid(rhs.fPtrSolid),
79 fCubicVolume(rhs.fCubicVolume), fSurfaceArea(rhs.fSurfaceArea)
92 if (
this == &rhs) {
return *
this; }
100 fPtrSolid = rhs.fPtrSolid;
103 fCubicVolume = rhs.fCubicVolume;
104 fSurfaceArea = rhs.fSurfaceArea;
105 fRebuildPolyhedron =
false;
106 delete fpPolyhedron; fpPolyhedron =
nullptr;
130 fPtrSolid->BoundingLimits(bmin,bmax);
131 pMin.
set(bmin.
x()*scale.x(),bmin.
y()*scale.y(),bmin.
z()*scale.z());
132 pMax.
set(bmax.
x()*scale.x(),bmax.
y()*scale.y(),bmax.
z()*scale.z());
136 if (pMin.
x() >= pMax.
x() || pMin.
y() >= pMax.
y() || pMin.
z() >= pMax.
z())
138 std::ostringstream message;
139 message <<
"Bad bounding box (min >= max) for solid: "
141 <<
"\npMin = " << pMin
142 <<
"\npMax = " << pMax;
143 G4Exception(
"G4ScaledSolid::BoundingLimits()",
"GeomMgt0001",
162 fPtrSolid->BoundingLimits(bmin,bmax);
180 return fPtrSolid->Inside(fScale->Transform(p));
192 fScale->Transform(p, newPoint);
195 G4ThreeVector newNormal = fPtrSolid->SurfaceNormal(newPoint);
199 fScale->InverseTransformNormal(newNormal, normal);
200 return normal/normal.
mag();
213 fScale->Transform(p, newPoint);
217 fScale->Transform(v, newDirection);
218 newDirection = newDirection/newDirection.
mag();
221 G4double dist = fPtrSolid->DistanceToIn(newPoint,newDirection);
224 return fScale->InverseTransformDistance(dist, newDirection);
236 fScale->Transform(p, newPoint);
239 G4double dist = fPtrSolid->DistanceToIn(newPoint);
240 return fScale->InverseTransformDistance(dist);
256 fScale->Transform(p, newPoint);
260 fScale->Transform(v, newDirection);
261 newDirection = newDirection/newDirection.
mag();
265 G4double dist = fPtrSolid->DistanceToOut(newPoint,newDirection,
266 calcNorm,validNorm,&solNorm);
270 fScale->TransformNormal(solNorm, normal);
275 return fScale->InverseTransformDistance(dist, newDirection);
287 fScale->Transform(p, newPoint);
290 G4double dist = fPtrSolid->DistanceToOut(newPoint);
291 return fScale->InverseTransformDistance(dist);
306 "Method not applicable in this context!");
316 return fScale->InverseTransform(fPtrSolid->GetPointOnSurface());
324 return fPtrSolid->GetNumOfConstituents();
333 return fPtrSolid->IsFaceted();
342 return {
"G4ScaledSolid"};
360 return { fScale->GetScale().x(),
361 fScale->GetScale().y(),
362 fScale->GetScale().z() };
373 fRebuildPolyhedron =
true;
382 if(fCubicVolume < 0.)
384 fCubicVolume = fPtrSolid->GetCubicVolume() *
385 fScale->GetScale().x() *
386 fScale->GetScale().y() *
387 fScale->GetScale().z();
398 if(fSurfaceArea < 0.)
411 os <<
"-----------------------------------------------------------\n"
412 <<
" *** Dump for Scaled solid - " <<
GetName() <<
" ***\n"
413 <<
" ===================================================\n"
415 <<
" Parameters of constituent solid: \n"
416 <<
"===========================================================\n";
417 fPtrSolid->StreamInfo(os);
418 os <<
"===========================================================\n"
420 <<
" Scale transformation : \n"
421 <<
" " << fScale->GetScale().x() <<
", "
422 << fScale->GetScale().y() <<
", "
423 << fScale->GetScale().z() <<
"\n"
424 <<
"===========================================================\n";
446 G4Polyhedron* polyhedron = fPtrSolid->CreatePolyhedron();
447 if (polyhedron !=
nullptr)
456 "No G4Polyhedron for scaled solid");
467 if (fpPolyhedron ==
nullptr ||
468 fRebuildPolyhedron ||
469 fpPolyhedron->GetNumberOfRotationStepsAtTimeOfCreation() !=
470 fpPolyhedron->GetNumberOfRotationSteps())
473 fRebuildPolyhedron =
false;
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
CLHEP::Hep3Vector G4ThreeVector
void set(double x, double y, double z)
HepRotation inverse() const
G4bool CalculateExtent(const EAxis pAxis, const G4VoxelLimits &pVoxelLimits, const G4Transform3D &pTransform3D, G4double &pMin, G4double &pMax) const
G4Polyhedron * CreatePolyhedron() const override
G4VSolid * GetUnscaledSolid() const
G4double DistanceToIn(const G4ThreeVector &p, const G4ThreeVector &v) const override
G4ThreeVector GetPointOnSurface() const override
void ComputeDimensions(G4VPVParameterisation *p, const G4int n, const G4VPhysicalVolume *pRep) override
G4ScaledSolid & operator=(const G4ScaledSolid &rhs)
G4bool IsFaceted() const override
void BoundingLimits(G4ThreeVector &pMin, G4ThreeVector &pMax) const override
G4Scale3D GetScaleTransform() const
G4double GetCubicVolume() override
G4int GetNumOfConstituents() const override
G4ThreeVector SurfaceNormal(const G4ThreeVector &p) const override
void SetScaleTransform(const G4Scale3D &scale)
G4bool CalculateExtent(const EAxis pAxis, const G4VoxelLimits &pVoxelLimit, const G4AffineTransform &pTransform, G4double &pMin, G4double &pMax) const override
G4ScaledSolid(const G4String &pName, G4VSolid *pSolid, const G4Scale3D &pScale)
EInside Inside(const G4ThreeVector &p) const override
void DescribeYourselfTo(G4VGraphicsScene &scene) const override
G4Polyhedron * GetPolyhedron() const override
G4VSolid * Clone() const override
G4double GetSurfaceArea() override
std::ostream & StreamInfo(std::ostream &os) const override
~G4ScaledSolid() override
G4GeometryType GetEntityType() const override
G4double DistanceToOut(const G4ThreeVector &p, const G4ThreeVector &v, const G4bool calcNorm=false, G4bool *validNorm=nullptr, G4ThreeVector *n=nullptr) const override
virtual void AddSolid(const G4Box &)=0
G4VSolid(const G4String &name)
G4VSolid & operator=(const G4VSolid &rhs)
virtual G4double GetSurfaceArea()
HepPolyhedron & Transform(const G4Transform3D &t)