CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 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 intersection (const DDName &name, const DDSolid &a, const DDSolid &b, const DDTranslation &t, const 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 391 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 763 of file DDSolid.cc.

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

771 {
772  return DDSolid(name, new DDI::Cons(zhalf,
773  rInMinusZ, rOutMinusZ,
774  rInPlusZ, rOutPlusZ,
775  phiFrom, deltaPhi));
776 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
Definition: Cons.h:9
DDSolid DDSolidFactory::ellipsoid ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zSemiAxis,
double  zBottomCut = 0.,
double  zTopCut = 0. 
)
static

Definition at line 821 of file DDSolid.cc.

Referenced by DDLEllipsoid::processElement().

829 {
830  return DDSolid(name, new DDI::Ellipsoid( xSemiAxis,
831  ySemiAxis,
832  zSemiAxis,
833  zBottomCut,
834  zTopCut
835  ));
836 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::ellipticalTube ( const DDName name,
double  xSemiAxis,
double  ySemiAxis,
double  zHeight 
)
static

Definition at line 815 of file DDSolid.cc.

Referenced by DDLEllipticalTube::processElement().

817 {
818  return DDSolid(name, new DDI::EllipticalTube(xSemiAxis, ySemiAxis, zHeight));
819 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::intersection ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static

Definition at line 714 of file DDSolid.cc.

Referenced by DDLBooleanSolid::processElement(), and DDStreamer::solids_read().

718 {
719  return DDSolid(name, new DDI::Intersection(a,b,t,r));
720 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::orb ( const DDName name,
double  radius 
)
static

Definition at line 810 of file DDSolid.cc.

Referenced by DDLOrb::processElement().

811 {
812  return DDSolid(name, new DDI::Orb(radius));
813 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
Definition: Orb.h:10
DDSolid DDSolidFactory::parallelepiped ( const DDName name,
double  xHalf,
double  yHalf,
double  zHalf,
double  alpha,
double  theta,
double  phi 
)
static

Definition at line 838 of file DDSolid.cc.

Referenced by DDLParallelepiped::processElement().

841 {
842  return DDSolid(name, new DDI::Parallelepiped(xHalf, yHalf, zHalf,
843  alpha, theta, phi));
844 }
float alpha
Definition: AMPTWrapper.h:95
Geom::Theta< T > theta() const
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
Definition: DDAxes.h:10
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 656 of file DDSolid.cc.

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

660 {
661  return DDSolid(name, new DDI::Polycone(startPhi, deltaPhi, z, rmin, rmax));
662 }
float float float z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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 665 of file DDSolid.cc.

668 {
669  return DDSolid(name, new DDI::Polycone(startPhi, deltaPhi, z, r));
670 }
float float float z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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

Creates a polyhedra (refere to Geant3 or 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 673 of file DDSolid.cc.

Referenced by DDHCalBarrelAlgo::constructGeneralVolume(), DDHCalEndcapAlgo::constructGeneralVolume(), DDHCalBarrelAlgo::constructInsideSector(), DDHCalEndcapAlgo::constructInsideSector(), DDHCalBarrelAlgo::constructMidLayer(), DDHCalBarrelAlgo::constructSideLayer(), DDHCalTBCableAlgo::execute(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), and DDLPolyGenerator::processElement().

680 {
681  return DDSolid(name, new DDI::Polyhedra(sides, startPhi, deltaPhi, z, rmin,rmax));
682 }
float float float z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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 685 of file DDSolid.cc.

691 {
692  return DDSolid(name, new DDI::Polyhedra(sides, startPhi, deltaPhi, z, r));
693 }
float float float z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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 737 of file DDSolid.cc.

Referenced by DDLPseudoTrap::processElement().

746 {
747  return DDSolid(name, new DDI::PseudoTrap(pDx1, pDx2, pDy1, pDy2, pDz, radius, atMinusZ));
748 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::reflection ( const DDName name,
const DDSolid s 
)
static

Definition at line 852 of file DDSolid.cc.

Referenced by DDLReflectionSolid::processElement(), and DDStreamer::solids_read().

854 {
855  return DDSolid(name, new DDI::Reflection(s));
856 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::shapeless ( const DDName name)
static

Definition at line 846 of file DDSolid.cc.

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

847 {
848  return DDSolid(name, new DDI::Shapeless());
849 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::sphere ( const DDName name,
double  innerRadius,
double  outerRadius,
double  startPhi,
double  deltaPhi,
double  startTheta,
double  deltaTheta 
)
static

Definition at line 797 of file DDSolid.cc.

Referenced by DDLSphere::processElement().

804 {
805  return DDSolid(name, new DDI::Sphere(innerRadius, outerRadius,
806  startPhi, deltaPhi,
807  startTheta, deltaTheta));
808 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
DDSolid DDSolidFactory::subtraction ( const DDName name,
const DDSolid a,
const DDSolid b,
const DDTranslation t,
const DDRotation r 
)
static
DDSolid DDSolidFactory::torus ( const DDName name,
double  rMin,
double  rMax,
double  rTorus,
double  startPhi,
double  deltaPhi 
)
static

Definition at line 778 of file DDSolid.cc.

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

784 {
785  return DDSolid(name, new DDI::Torus(rMin, rMax, rTorus, startPhi, deltaPhi));
786 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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 750 of file DDSolid.cc.

Referenced by DDLTubs::processElement().

759 {
760  return DDSolid(name, new DDI::TruncTubs(zHalf,rIn,rOut,startPhi,deltaPhi,cutAtStart,cutAtDelta,cutInside));
761 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
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 696 of file DDSolid.cc.

Referenced by DDEcalPreshowerAlgo::doLadders(), DDLBooleanSolid::processElement(), and DDStreamer::solids_read().

700 {
701  return DDSolid(name, new DDI::Union(a,b,t,r));
702 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35