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 > &r)
 Creates a polycone (refere to Geant4 documentation) More...
 
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 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 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 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 389 of file DDSolid.h.

Member Function Documentation

◆ box()

DDSolid DDSolidFactory::box ( const DDName name,
double  xHalf,
double  yHalf,
double  zHalf 
)
static

◆ cons()

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

Definition at line 636 of file DDSolid.cc.

643  {
644  return DDSolid(name,
645  std::make_unique<DDI::Cons>(zhalf, rInMinusZ, rOutMinusZ, rInPlusZ, rOutPlusZ, phiFrom, deltaPhi));
646 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, and Skims_PA_cff::name.

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

◆ cuttubs()

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 658 of file DDSolid.cc.

669  {
670  return DDSolid(name, std::make_unique<DDI::CutTubs>(zhalf, rIn, rOut, phiFrom, deltaPhi, lx, ly, lz, tx, ty, tz));
671 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, and Skims_PA_cff::name.

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

◆ ellipsoid()

static DDSolid DDSolidFactory::ellipsoid ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zSemiAxis,
double  zBottomCut = 0.,
double  zTopCut = 0. 
)
static

◆ ellipticalTube()

DDSolid DDSolidFactory::ellipticalTube ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zHeight 
)
static

Definition at line 684 of file DDSolid.cc.

684  {
685  return DDSolid(name, std::make_unique<DDI::EllipticalTube>(xSemiAxis, ySemiAxis, zHeight));
686 }

References Skims_PA_cff::name.

Referenced by DDLEllipticalTube::processElement().

◆ extrudedpolygon()

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 570 of file DDSolid.cc.

576  {
577  return DDSolid(name, std::make_unique<DDI::ExtrudedPolygon>(x, y, z, zx, zy, zscale));
578 }

References Skims_PA_cff::name, x, y, and z.

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

◆ intersection()

DDSolid DDSolidFactory::intersection ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 590 of file DDSolid.cc.

591  {
592  return DDSolid(name, std::make_unique<DDI::Intersection>(a, b, t, r));
593 }

References a, b, Skims_PA_cff::name, alignCSCRings::r, and OrderedSet::t.

Referenced by DDLBooleanSolid::processElement().

◆ multiUnionSolid()

static DDSolid DDSolidFactory::multiUnionSolid ( const DDName name,
const std::vector< DDSolid > &  a,
const std::vector< DDTranslation > &  t,
const std::vector< DDRotation > &  r 
)
static

◆ orb()

static DDSolid DDSolidFactory::orb ( const DDName name,
double  radius 
)
static

◆ parallelepiped()

static DDSolid DDSolidFactory::parallelepiped ( const DDName name,
double  xHalf,
double  yHalf,
double  zHalf,
double  alpha,
double  theta,
double  phi 
)
static

◆ polycone() [1/2]

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 546 of file DDSolid.cc.

547  {
548  return DDSolid(name, std::make_unique<DDI::Polycone>(startPhi, deltaPhi, z, r));
549 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, Skims_PA_cff::name, alignCSCRings::r, and z.

◆ polycone() [2/2]

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 537 of file DDSolid.cc.

542  {
543  return DDSolid(name, std::make_unique<DDI::Polycone>(startPhi, deltaPhi, z, rmin, rmax));
544 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, Skims_PA_cff::name, and z.

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

◆ polyhedra() [1/2]

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 561 of file DDSolid.cc.

566  {
567  return DDSolid(name, std::make_unique<DDI::Polyhedra>(sides, startPhi, deltaPhi, z, r));
568 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, Skims_PA_cff::name, alignCSCRings::r, and z.

◆ polyhedra() [2/2]

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

◆ pseudoTrap()

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 611 of file DDSolid.cc.

619  {
620  return DDSolid(name, std::make_unique<DDI::PseudoTrap>(pDx1, pDx2, pDy1, pDy2, pDz, radius, atMinusZ));
621 }

References Skims_PA_cff::name, and CosmicsPD_Skims::radius.

Referenced by DDLPseudoTrap::processElement().

◆ reflection()

static DDSolid DDSolidFactory::reflection ( const DDName name,
const DDSolid s 
)
static

◆ shapeless()

DDSolid DDSolidFactory::shapeless ( const DDName name)
static

Definition at line 688 of file DDSolid.cc.

688 { return DDSolid(name, std::make_unique<DDI::Shapeless>()); }

References Skims_PA_cff::name.

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

◆ sphere()

DDSolid DDSolidFactory::sphere ( const DDName name,
double  innerRadius,
double  outerRadius,
double  startPhi,
double  deltaPhi,
double  startTheta,
double  deltaTheta 
)
static

Definition at line 673 of file DDSolid.cc.

679  {
680  return DDSolid(name,
681  std::make_unique<DDI::Sphere>(innerRadius, outerRadius, startPhi, deltaPhi, startTheta, deltaTheta));
682 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, interestingEgammaIsoDetIdsSequence_cff::innerRadius, Skims_PA_cff::name, and interestingEgammaIsoDetIdsSequence_cff::outerRadius.

Referenced by DDLSphere::processElement().

◆ subtraction()

DDSolid DDSolidFactory::subtraction ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

◆ torus()

DDSolid DDSolidFactory::torus ( const DDName name,
double  rMin,
double  rMax,
double  rTorus,
double  startPhi,
double  deltaPhi 
)
static

Definition at line 648 of file DDSolid.cc.

649  {
650  return DDSolid(name, std::make_unique<DDI::Torus>(rMin, rMax, rTorus, startPhi, deltaPhi));
651 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, Skims_PA_cff::name, photonAnalyzer_cfi::rMax, and photonAnalyzer_cfi::rMin.

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

◆ trap()

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

◆ truncTubs()

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 623 of file DDSolid.cc.

631  {
632  return DDSolid(
633  name, std::make_unique<DDI::TruncTubs>(zHalf, rIn, rOut, startPhi, deltaPhi, cutAtStart, cutAtDelta, cutInside));
634 }

References SiPixelRawToDigiRegional_cfi::deltaPhi, and Skims_PA_cff::name.

Referenced by DDLTubs::processElement().

◆ tubs()

DDSolid DDSolidFactory::tubs ( const DDName name,
double  zhalf,
double  rIn,
double  rOut,
double  startPhi,
double  deltaPhi 
)
static

◆ unionSolid()

DDSolid DDSolidFactory::unionSolid ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 580 of file DDSolid.cc.

581  {
582  return DDSolid(name, std::make_unique<DDI::Union>(a, b, t, r));
583 }

References a, b, Skims_PA_cff::name, alignCSCRings::r, and OrderedSet::t.

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

DDAxes::y
photonAnalyzer_cfi.rMax
rMax
Definition: photonAnalyzer_cfi.py:91
interestingEgammaIsoDetIdsSequence_cff.outerRadius
outerRadius
Definition: interestingEgammaIsoDetIdsSequence_cff.py:14
DDAxes::x
SiPixelRawToDigiRegional_cfi.deltaPhi
deltaPhi
Definition: SiPixelRawToDigiRegional_cfi.py:9
DDAxes::z
OrderedSet.t
t
Definition: OrderedSet.py:90
b
double b
Definition: hdecay.h:118
a
double a
Definition: hdecay.h:119
interestingEgammaIsoDetIdsSequence_cff.innerRadius
innerRadius
Definition: interestingEgammaIsoDetIdsSequence_cff.py:15
alignCSCRings.r
r
Definition: alignCSCRings.py:93
CosmicsPD_Skims.radius
radius
Definition: CosmicsPD_Skims.py:135
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
DDSolid
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
photonAnalyzer_cfi.rMin
rMin
Definition: photonAnalyzer_cfi.py:90