CMS 3D CMS Logo

List of all members | Static Public Member Functions
DDSolidFactory Struct Reference

#include <DDSolid.h>

Static Public Member Functions

static DDSolid box (const DDName &name, double xHalf, double yHalf, double zHalf)
 Creates a box with side length 2*xHalf, 2*yHalf, 2*zHalf. More...
 
static DDSolid cons (const DDName &name, double zhalf, double rInMinusZ, double rOutMinusZ, double rInPlusZ, double rOutPlusZ, double phiFrom, double deltaPhi)
 
static DDSolid cuttubs (const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi, double lx, double ly, double lz, double tx, double ty, double tz)
 
static DDSolid ellipsoid (const DDName &name, double xSemiAxis, double ySemiAxis, double zSemiAxis, double zBottomCut=0., double zTopCut=0.)
 
static DDSolid ellipticalTube (const DDName &name, double xSemiAxis, double ySemiAxis, double zHeight)
 
static DDSolid extrudedpolygon (const DDName &name, const std::vector< double > &x, const std::vector< double > &y, const std::vector< double > &z, const std::vector< double > &zx, const std::vector< double > &zy, const std::vector< double > &zscale)
 
static DDSolid intersection (const DDName &name, const DDSolid &a, const DDSolid &b, const DDTranslation &t, const DDRotation &r)
 
static DDSolid multiUnionSolid (const DDName &name, const std::vector< DDSolid > &a, const std::vector< DDTranslation > &t, const std::vector< DDRotation > &r)
 
static DDSolid orb (const DDName &name, double radius)
 
static DDSolid parallelepiped (const DDName &name, double xHalf, double yHalf, double zHalf, double alpha, double theta, double phi)
 
static DDSolid polycone (const DDName &name, double startPhi, double deltaPhi, const std::vector< double > &z, const std::vector< double > &rmin, const std::vector< double > &rmax)
 Creates a polycone (refere to Geant3 or Geant4 documentation) More...
 
static DDSolid polycone (const DDName &name, double startPhi, double deltaPhi, const std::vector< double > &z, const std::vector< double > &r)
 Creates a polycone (refere to Geant4 documentation) More...
 
static DDSolid polyhedra (const DDName &name, int sides, double startPhi, double deltaPhi, const std::vector< double > &z, const std::vector< double > &rmin, const std::vector< double > &rmax)
 Creates a polyhedra (refere to Geant3 or Geant4 documentation) More...
 
static DDSolid polyhedra (const DDName &name, int sides, double startPhi, double deltaPhi, const std::vector< double > &z, const std::vector< double > &r)
 Creates a polyhedra (refere to Geant4 documentation) More...
 
static DDSolid pseudoTrap (const DDName &name, double pDx1, double pDx2, double pDy1, double pDy2, double pDz, double radius, bool atMinusZ)
 
static DDSolid reflection (const DDName &name, const DDSolid &s)
 
static DDSolid shapeless (const DDName &name)
 
static DDSolid sphere (const DDName &name, double innerRadius, double outerRadius, double startPhi, double deltaPhi, double startTheta, double deltaTheta)
 
static DDSolid subtraction (const DDName &name, const DDSolid &a, const DDSolid &b, const DDTranslation &t, const DDRotation &r)
 
static DDSolid torus (const DDName &name, double rMin, double rMax, double rTorus, double startPhi, double deltaPhi)
 
static DDSolid trap (const DDName &name, double pDz, double pTheta, double pPhi, double pDy1, double pDx1, double pDx2, double pAlp1, double pDy2, double pDx3, double pDx4, double pAlp2)
 
static DDSolid truncTubs (const DDName &name, double zHalf, double rIn, double rOut, double startPhi, double deltaPhi, double cutAtStart, double cutAtDelta, bool cutInside)
 
static DDSolid tubs (const DDName &name, double zhalf, double rIn, double rOut, double startPhi, double deltaPhi)
 
static DDSolid unionSolid (const DDName &name, const DDSolid &a, const DDSolid &b, const DDTranslation &t, const DDRotation &r)
 

Detailed Description

Definition at line 441 of file DDSolid.h.

Member Function Documentation

DDSolid DDSolidFactory::box ( const DDName name,
double  xHalf,
double  yHalf,
double  zHalf 
)
static
DDSolid DDSolidFactory::cons ( const DDName name,
double  zhalf,
double  rInMinusZ,
double  rOutMinusZ,
double  rInPlusZ,
double  rOutPlusZ,
double  phiFrom,
double  deltaPhi 
)
static

Definition at line 838 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDHCalFibreBundle::execute(), DDDividedConsRho::makeDDLogicalPart(), DDDividedConsPhi::makeDDLogicalPart(), DDDividedConsZ::makeDDLogicalPart(), DDDividedPolyconeZ::makeDDLogicalPart(), and DDLCone::processElement().

846 {
847  return DDSolid( name, std::make_unique< DDI::Cons >( zhalf,
848  rInMinusZ, rOutMinusZ,
849  rInPlusZ, rOutPlusZ,
850  phiFrom, deltaPhi ));
851 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::cuttubs ( const DDName name,
double  zhalf,
double  rIn,
double  rOut,
double  startPhi,
double  deltaPhi,
double  lx,
double  ly,
double  lz,
double  tx,
double  ty,
double  tz 
)
static

Definition at line 874 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDCutTubsFromPoints::execute(), and DDLTubs::processElement().

880 {
881  return DDSolid( name, std::make_unique< DDI::CutTubs >( zhalf, rIn, rOut,
882  phiFrom, deltaPhi,
883  lx, ly, lz,
884  tx, ty, tz ));
885 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
static DDSolid DDSolidFactory::ellipsoid ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zSemiAxis,
double  zBottomCut = 0.,
double  zTopCut = 0. 
)
static
DDSolid DDSolidFactory::ellipticalTube ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zHeight 
)
static

Definition at line 902 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLEllipticalTube::processElement().

904 {
905  return DDSolid( name, std::make_unique< DDI::EllipticalTube >( xSemiAxis, ySemiAxis, zHeight ));
906 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::extrudedpolygon ( const DDName name,
const std::vector< double > &  x,
const std::vector< double > &  y,
const std::vector< double > &  z,
const std::vector< double > &  zx,
const std::vector< double > &  zy,
const std::vector< double > &  zscale 
)
static

Definition at line 753 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDHGCalCell::execute(), DDHGCalWafer8::execute(), and DDLPgonGenerator::processElement().

760 {
761  return DDSolid( name, std::make_unique< DDI::ExtrudedPolygon >( x, y, z, zx, zy, zscale ));
762 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::intersection ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 783 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLBooleanSolid::processElement().

787 {
788  return DDSolid( name, std::make_unique< DDI::Intersection >( a, b, t, r ));
789 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
static DDSolid DDSolidFactory::multiUnionSolid ( const DDName name,
const std::vector< DDSolid > &  a,
const std::vector< DDTranslation > &  t,
const std::vector< DDRotation > &  r 
)
static
static DDSolid DDSolidFactory::orb ( const DDName name,
double  radius 
)
static
static DDSolid DDSolidFactory::parallelepiped ( const DDName name,
double  xHalf,
double  yHalf,
double  zHalf,
double  alpha,
double  theta,
double  phi 
)
static
DDSolid DDSolidFactory::polycone ( const DDName name,
double  startPhi,
double  deltaPhi,
const std::vector< double > &  z,
const std::vector< double > &  rmin,
const std::vector< double > &  rmax 
)
static

Creates a polycone (refere to Geant3 or Geant4 documentation)

The center of the polycone (for positioning) is the center of coordinates of the polycone definition (x=y=z=0)

Definition at line 713 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDTOBRadCableAlgo::execute(), DDTIBRadCableAlgo_MTCC::execute(), DDTIDAxialCableAlgo::execute(), DDTECAxialCableAlgo::execute(), DDEcalBarrelNewAlgo::execute(), DDEcalBarrelAlgo::execute(), DDDividedPolyconeRho::makeDDLogicalPart(), DDDividedPolyconePhi::makeDDLogicalPart(), and DDLPolyGenerator::processElement().

717 {
718  return DDSolid( name, std::make_unique< DDI::Polycone >( startPhi, deltaPhi, z, rmin, rmax ));
719 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::polycone ( const DDName name,
double  startPhi,
double  deltaPhi,
const std::vector< double > &  z,
const std::vector< double > &  r 
)
static

Creates a polycone (refere to Geant4 documentation)

The center of the polycone (for positioning) is the center of coordinates of the polycone definition (x=y=z=0)

Definition at line 722 of file DDSolid.cc.

References DDSolid::DDSolid().

725 {
726  return DDSolid(name, std::make_unique< DDI::Polycone >( startPhi, deltaPhi, z, r ));
727 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::polyhedra ( const DDName name,
int  sides,
double  startPhi,
double  deltaPhi,
const std::vector< double > &  z,
const std::vector< double > &  rmin,
const std::vector< double > &  rmax 
)
static
DDSolid DDSolidFactory::polyhedra ( const DDName name,
int  sides,
double  startPhi,
double  deltaPhi,
const std::vector< double > &  z,
const std::vector< double > &  r 
)
static

Creates a polyhedra (refere to Geant4 documentation)

The center of the polyhedra (for positioning) is the center of coordinates of the polyhedra definition (x=y=z=0)

Definition at line 742 of file DDSolid.cc.

References DDSolid::DDSolid().

748 {
749  return DDSolid( name, std::make_unique< DDI::Polyhedra >( sides, startPhi, deltaPhi, z, r ));
750 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::pseudoTrap ( const DDName name,
double  pDx1,
double  pDx2,
double  pDy1,
double  pDy2,
double  pDz,
double  radius,
bool  atMinusZ 
)
static

if true, the cut-out or rounding is applied at -dz, else at +dz

Parameters
pDx1Half-length along x at the surface positioned at -dz
pDx2Half-length along x at the surface positioned at +dz
pDy1Half-length along y at the surface positioned at -dz
pDy2Half-length along y at the surface positioned at +dz
pDzHalf of the height of the pseudo trapezoid along z
radiusradius of the cut-out (negative sign) or rounding (pos. sign)
atMinusZif true, the cut-out or rounding is applied at -dz, else at +dz

Definition at line 806 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLPseudoTrap::processElement().

815 {
816  return DDSolid( name, std::make_unique< DDI::PseudoTrap >( pDx1, pDx2, pDy1, pDy2, pDz,
817  radius, atMinusZ ));
818 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
static DDSolid DDSolidFactory::reflection ( const DDName name,
const DDSolid s 
)
static
DDSolid DDSolidFactory::shapeless ( const DDName name)
static

Definition at line 909 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLShapelessSolid::processElement(), and regressionTest_setup().

910 {
911  return DDSolid( name, std::make_unique< DDI::Shapeless >());
912 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::sphere ( const DDName name,
double  innerRadius,
double  outerRadius,
double  startPhi,
double  deltaPhi,
double  startTheta,
double  deltaTheta 
)
static

Definition at line 888 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLSphere::processElement().

895 {
896  return DDSolid( name, std::make_unique< DDI::Sphere >( innerRadius, outerRadius,
897  startPhi, deltaPhi,
898  startTheta, deltaTheta ));
899 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::subtraction ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 774 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDEcalPreshowerAlgo::doLayers(), DDEcalEndcapAlgo::EECreateSC(), DDTIDModuleAlgo::execute(), DDEcalBarrelNewAlgo::execute(), DDEcalBarrelAlgo::execute(), and DDLBooleanSolid::processElement().

778 {
779  return DDSolid( name, std::make_unique< DDI::Subtraction >( a, b, t, r ));
780 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::torus ( const DDName name,
double  rMin,
double  rMax,
double  rTorus,
double  startPhi,
double  deltaPhi 
)
static

Definition at line 854 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDTOBRadCableAlgo::execute(), and DDLTorus::processElement().

860 {
861  return DDSolid( name, std::make_unique< DDI::Torus >( rMin, rMax, rTorus, startPhi, deltaPhi ));
862 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::trap ( const DDName name,
double  pDz,
double  pTheta,
double  pPhi,
double  pDy1,
double  pDx1,
double  pDx2,
double  pAlp1,
double  pDy2,
double  pDx3,
double  pDx4,
double  pAlp2 
)
static
DDSolid DDSolidFactory::truncTubs ( const DDName name,
double  zHalf,
double  rIn,
double  rOut,
double  startPhi,
double  deltaPhi,
double  cutAtStart,
double  cutAtDelta,
bool  cutInside 
)
static
Parameters
zHalfhalf-length of the z-axis
rIninner radius of the tube-section
rOutouter radius of the tube-section
startPhistarting angle of the tube-section
deltaPhispanning angle of the tube-section
cutAtStarttructation
cutAtDeltatruncation at deltaPhi side

Definition at line 821 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDLTubs::processElement().

830 {
831  return DDSolid( name, std::make_unique< DDI::TruncTubs >( zHalf, rIn, rOut,
832  startPhi, deltaPhi,
833  cutAtStart, cutAtDelta,
834  cutInside ));
835 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
DDSolid DDSolidFactory::tubs ( const DDName name,
double  zhalf,
double  rIn,
double  rOut,
double  startPhi,
double  deltaPhi 
)
static
DDSolid DDSolidFactory::unionSolid ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 765 of file DDSolid.cc.

References DDSolid::DDSolid().

Referenced by DDEcalPreshowerAlgo::doLadders(), DDEcalPreshowerAlgo::doLayers(), DDCutTubsFromPoints::execute(), and DDLBooleanSolid::processElement().

769 {
770  return DDSolid( name, std::make_unique< DDI::Union >( a, b, t, r ));
771 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39