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

Creates a box with side length 2*xHalf, 2*yHalf, 2*zHalf. More...

#include <DDSolid.h>

Static Public Member Functions

static DDSolid box (const DDName &name, double xHalf, double yHalf, double zHalf)
 
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) //! 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) //! Creates a polycone (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

Creates a box with side length 2*xHalf, 2*yHalf, 2*zHalf.

Definition at line 422 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 766 of file DDSolid.cc.

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

774 {
775  return DDSolid(name, new DDI::Cons(zhalf,
776  rInMinusZ, rOutMinusZ,
777  rInPlusZ, rOutPlusZ,
778  phiFrom, deltaPhi));
779 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 824 of file DDSolid.cc.

Referenced by DDLEllipsoid::processElement().

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

Definition at line 818 of file DDSolid.cc.

Referenced by DDLEllipticalTube::processElement().

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

Definition at line 717 of file DDSolid.cc.

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

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

Definition at line 813 of file DDSolid.cc.

Referenced by DDLOrb::processElement().

814 {
815  return DDSolid(name, new DDI::Orb(radius));
816 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 841 of file DDSolid.cc.

Referenced by DDLParallelepiped::processElement().

844 {
845  return DDSolid(name, new DDI::Parallelepiped(xHalf, yHalf, zHalf,
846  alpha, theta, phi));
847 }
float alpha
Definition: AMPTWrapper.h:95
Geom::Theta< T > theta() const
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 659 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().

663 {
664  return DDSolid(name, new DDI::Polycone(startPhi, deltaPhi, z, rmin, rmax));
665 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
double double double z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 668 of file DDSolid.cc.

671 {
672  return DDSolid(name, new DDI::Polycone(startPhi, deltaPhi, z, r));
673 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
double double double z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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) //! Creates a polycone (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 676 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().

683 {
684  return DDSolid(name, new DDI::Polyhedra(sides, startPhi, deltaPhi, z, rmin,rmax));
685 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
double double double z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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) //! Creates a polycone (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 688 of file DDSolid.cc.

694 {
695  return DDSolid(name, new DDI::Polyhedra(sides, startPhi, deltaPhi, z, r));
696 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
double double double z
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
DDSolid DDSolidFactory::pseudoTrap ( const DDName name,
double  pDx1,
double  pDx2,
double  pDy1,
double  pDy2,
double  pDz,
double  radius,
bool  atMinusZ 
)
static
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 740 of file DDSolid.cc.

Referenced by DDLPseudoTrap::processElement().

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

Definition at line 855 of file DDSolid.cc.

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

857 {
858  return DDSolid(name, new DDI::Reflection(s));
859 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
DDSolid DDSolidFactory::shapeless ( const DDName name)
static

Definition at line 849 of file DDSolid.cc.

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

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

Definition at line 800 of file DDSolid.cc.

Referenced by DDLSphere::processElement().

807 {
808  return DDSolid(name, new DDI::Sphere(innerRadius, outerRadius,
809  startPhi, deltaPhi,
810  startTheta, deltaTheta));
811 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 781 of file DDSolid.cc.

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

787 {
788  return DDSolid(name, new DDI::Torus(rMin, rMax, rTorus, startPhi, deltaPhi));
789 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 753 of file DDSolid.cc.

Referenced by DDLTubs::processElement().

762 {
763  return DDSolid(name, new DDI::TruncTubs(zHalf,rIn,rOut,startPhi,deltaPhi,cutAtStart,cutAtDelta,cutInside));
764 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42
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 699 of file DDSolid.cc.

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

703 {
704  return DDSolid(name, new DDI::Union(a,b,t,r));
705 }
A DDSolid represents the shape of a part.
Definition: DDSolid.h:42