51 :
G4PVReplica(pName, nDivs, pAxis, pLogical, pMotherLogical)
53 if (pMotherLogical ==
nullptr)
55 std::ostringstream message;
56 message <<
"Invalid setup." <<
G4endl
57 <<
"NULL pointer specified as mother for volume: " << pName;
58 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
62 if (pLogical == pMotherLogical)
64 std::ostringstream message;
65 message <<
"Invalid setup." <<
G4endl
66 <<
"Cannot place a volume inside itself! Volume: " << pName;
67 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
72 SetParameterisation(pMotherLogical, pAxis, nDivs,
74 CheckAndSetParameters (pAxis, nDivs, width,
offset,
85 :
G4PVReplica(pName, nDivs, pAxis, pLogical, pMotherLogical)
87 if (pMotherLogical ==
nullptr)
89 std::ostringstream message;
90 message <<
"Invalid setup." <<
G4endl
91 <<
"NULL pointer specified as mother! Volume: " << pName;
92 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
96 if (pLogical == pMotherLogical)
98 std::ostringstream message;
99 message <<
"Invalid setup." <<
G4endl
100 <<
"Cannot place a volume inside itself! Volume: " << pName;
101 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
106 SetParameterisation(pMotherLogical, pAxis, nDivs, 0.,
offset,
DivNDIV);
107 CheckAndSetParameters (pAxis, nDivs, 0.,
offset,
DivNDIV, pMotherLogical);
117 :
G4PVReplica(pName, 0, pAxis, pLogical, pMotherLogical)
119 if (pMotherLogical ==
nullptr)
121 std::ostringstream message;
122 message <<
"Invalid setup." <<
G4endl
123 <<
"NULL pointer specified as mother! Volume: " + pName;
124 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
128 if (pLogical == pMotherLogical)
130 std::ostringstream message;
131 message <<
"Invalid setup." <<
G4endl
132 <<
"Cannot place a volume inside itself! Volume: "+ pName;
133 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
138 SetParameterisation(pMotherLogical, pAxis, 0, width,
offset,
DivWIDTH);
139 CheckAndSetParameters (pAxis, 0, width,
offset,
DivWIDTH, pMotherLogical);
153 if (pMotherPhysical ==
nullptr)
155 std::ostringstream message;
156 message <<
"Invalid setup." <<
G4endl
157 <<
"NULL pointer specified as mother for volume: " << pName;
158 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
163 if (pLogical == pMotherLogical)
165 std::ostringstream message;
166 message <<
"Invalid setup." <<
G4endl
167 <<
"Cannot place a volume inside itself! Volume: " << pName;
168 G4Exception(
"G4PVDivision::G4PVDivision()",
"GeomDiv0002",
173 SetParameterisation(pMotherLogical, pAxis, nDivs,
175 CheckAndSetParameters (pAxis, nDivs, width,
offset,
181G4PVDivision::CheckAndSetParameters(
const EAxis pAxis,
198 G4Exception(
"G4PVDivision::CheckAndSetParameters()",
"GeomDiv0002",
212 G4Exception(
"G4PVDivision::CheckAndSetParameters()",
"GeomDiv0002",
247 G4Exception(
"G4PVDivision::CheckAndSetParameters()",
"GeomDiv0002",
259 if( msolType != dsolType && ( msolType !=
"G4Trd" || dsolType !=
"G4Trap" ) )
261 std::ostringstream message;
262 message <<
"Incorrect solid type for division of volume "
264 <<
"It is: " << msolType
265 <<
", while it should be: " << dsolType <<
"!";
266 G4Exception(
"G4PVDivision::CheckAndSetParameters()",
351 if (mSolidType ==
"G4ReflectedSolid")
359 if( mSolidType ==
"G4Box" )
364 fparam =
new G4ParameterisationBoxX( axis, nDivs, width,
365 offset, mSolid, divType );
368 fparam =
new G4ParameterisationBoxY( axis, nDivs, width,
369 offset, mSolid, divType );
372 fparam =
new G4ParameterisationBoxZ( axis, nDivs, width,
373 offset, mSolid, divType );
376 ErrorInAxis( axis, mSolid );
380 else if( mSolidType ==
"G4Tubs" )
385 fparam =
new G4ParameterisationTubsRho( axis, nDivs, width,
386 offset, mSolid, divType );
389 fparam =
new G4ParameterisationTubsPhi( axis, nDivs, width,
390 offset, mSolid, divType );
393 fparam =
new G4ParameterisationTubsZ( axis, nDivs, width,
394 offset, mSolid, divType );
397 ErrorInAxis( axis, mSolid );
401 else if( mSolidType ==
"G4Cons" )
406 fparam =
new G4ParameterisationConsRho( axis, nDivs, width,
407 offset, mSolid, divType );
410 fparam =
new G4ParameterisationConsPhi( axis, nDivs, width,
411 offset, mSolid, divType );
414 fparam =
new G4ParameterisationConsZ( axis, nDivs, width,
415 offset, mSolid, divType );
418 ErrorInAxis( axis, mSolid );
422 else if( mSolidType ==
"G4Trd" )
427 fparam =
new G4ParameterisationTrdX( axis, nDivs, width,
428 offset, mSolid, divType );
431 fparam =
new G4ParameterisationTrdY( axis, nDivs, width,
432 offset, mSolid, divType );
435 fparam =
new G4ParameterisationTrdZ( axis, nDivs, width,
436 offset, mSolid, divType );
439 ErrorInAxis( axis, mSolid );
443 else if( mSolidType ==
"G4Para" )
448 fparam =
new G4ParameterisationParaX( axis, nDivs, width,
449 offset, mSolid, divType );
452 fparam =
new G4ParameterisationParaY( axis, nDivs, width,
453 offset, mSolid, divType );
456 fparam =
new G4ParameterisationParaZ( axis, nDivs, width,
457 offset, mSolid, divType );
460 ErrorInAxis( axis, mSolid );
467 else if( mSolidType ==
"G4Polycone" )
472 fparam =
new G4ParameterisationPolyconeRho( axis, nDivs, width,
473 offset, mSolid, divType );
476 fparam =
new G4ParameterisationPolyconePhi( axis, nDivs, width,
477 offset, mSolid, divType );
480 fparam =
new G4ParameterisationPolyconeZ( axis, nDivs, width,
481 offset, mSolid, divType );
484 ErrorInAxis( axis, mSolid );
488 else if( mSolidType ==
"G4Polyhedra" )
493 fparam =
new G4ParameterisationPolyhedraRho( axis, nDivs, width,
494 offset, mSolid, divType );
497 fparam =
new G4ParameterisationPolyhedraPhi( axis, nDivs, width,
498 offset, mSolid, divType );
501 fparam =
new G4ParameterisationPolyhedraZ( axis, nDivs, width,
502 offset, mSolid, divType );
505 ErrorInAxis( axis, mSolid );
511 std::ostringstream message;
512 message <<
"Solid type " << mSolidType <<
" not supported!" <<
G4endl
513 <<
"Divisions for " << mSolidType <<
" are not implemented.";
514 G4Exception(
"G4PVDivision::SetParameterisation()",
"GeomDiv0001",
522 G4String error =
"Trying to divide solid " + solid->
GetName()
539 error +=
"Radial3D.";
547 G4Exception(
"G4PVDivision::ErrorInAxis()",
"GeomDiv0002",
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
G4ThreadLocal T * G4GeomSplitter< T >::offset
CLHEP::HepRotation G4RotationMatrix
G4VSolid * GetSolid() const
void AddDaughter(G4VPhysicalVolume *p)
G4int GetRegularStructureId() const override
void GetReplicationData(EAxis &axis, G4int &nReplicas, G4double &width, G4double &offset, G4bool &consuming) const override
G4bool IsMany() const override
G4bool IsReplicated() const override
EVolume VolumeType() const override
G4bool IsRegularStructure() const override
G4VDivisionParameterisation * fparam
EAxis GetDivisionAxis() const
G4VPVParameterisation * GetParameterisation() const override
G4PVDivision(const G4String &pName, G4LogicalVolume *pLogical, G4LogicalVolume *pMother, const EAxis pAxis, const G4int nReplicas, const G4double width, const G4double offset)
G4int GetMultiplicity() const override
G4bool IsParameterised() const override
G4PVReplica(const G4String &pName, G4LogicalVolume *pLogical, G4LogicalVolume *pMother, const EAxis pAxis, const G4int nReplicas, const G4double width, const G4double offset=0.)
G4VPhysicalVolume(G4RotationMatrix *pRot, const G4ThreeVector &tlate, const G4String &pName, G4LogicalVolume *pLogical, G4VPhysicalVolume *pMother)
G4LogicalVolume * GetLogicalVolume() const
const G4String & GetName() const
void SetRotation(G4RotationMatrix *)
void SetMotherLogical(G4LogicalVolume *pMother)
virtual G4GeometryType GetEntityType() const =0