CMS 3D CMS Logo

List of all members | Public Member Functions
DDDividedBoxX Class Referencefinal

#include <DDDividedBox.h>

Inheritance diagram for DDDividedBoxX:
DDDividedGeometryObject

Public Member Functions

 DDDividedBoxX (const DDDivision &div, DDCompactView *cpv)
 
double getMaxParameter () const override
 
DDLogicalPart makeDDLogicalPart (int copyNo) const override
 
DDRotation makeDDRotation (int copyNo) const override
 
DDTranslation makeDDTranslation (int copyNo) const override
 
- Public Member Functions inherited from DDDividedGeometryObject
 DDDividedGeometryObject (const DDDivision &div, DDCompactView *cpv)
 
virtual void execute (void)
 
virtual const std::string & getType (void) const
 
virtual void setType (const std::string &type)
 
int volumeFirstCopyNo (void) const
 
virtual ~DDDividedGeometryObject (void)=default
 

Additional Inherited Members

- Static Public Member Functions inherited from DDDividedGeometryObject
static const double tolerance (void)
 
- Protected Member Functions inherited from DDDividedGeometryObject
int calculateNDiv (double motherDim, double width, double offset) const
 
double calculateWidth (double motherDim, int nDiv, double offset) const
 
std::unique_ptr< DDRotationMatrixchangeRotMatrix (double rotZ=0.) const
 
void checkNDivAndWidth (double maxPar)
 
void checkOffset (double maxPar)
 
virtual void checkParametersValidity (void)
 
- Protected Attributes inherited from DDDividedGeometryObject
int compNDiv_
 
double compWidth_
 
DDCompactViewcpv_
 
DDDivision div_
 
DivisionType divisionType_
 
std::string ftype_
 
int theVoluFirstCopyNo_
 

Detailed Description

Definition at line 12 of file DDDividedBox.h.

Constructor & Destructor Documentation

DDDividedBoxX::DDDividedBoxX ( const DDDivision div,
DDCompactView cpv 
)

Definition at line 18 of file DDDividedBox.cc.

References DDDividedGeometryObject::calculateNDiv(), DDDividedGeometryObject::calculateWidth(), DDDividedGeometryObject::checkParametersValidity(), DDDividedGeometryObject::compNDiv_, DDDividedGeometryObject::compWidth_, DDDividedGeometryObject::div_, DDDividedGeometryObject::divisionType_, DivNDIV, DivWIDTH, DDBox::halfX(), DDDivision::nReplicas(), DDDivision::offset(), DDDivision::parent(), DDDividedGeometryObject::setType(), DDLogicalPart::solid(), and DDDivision::width().

20 {
22  setType( "DivisionBoxX" );
23  DDBox mbox = (DDBox)(div_.parent().solid());
24 
25  if( divisionType_ == DivWIDTH ) {
26  compNDiv_ = calculateNDiv( 2*mbox.halfX(), div_.width(), div_.offset() );
27  } else if( divisionType_ == DivNDIV ) {
29  }
30 
31  // somehow here, I want to iterate over the nDivs or nReplicas
32  // and make the solid, make the logical part, then position it.
33  // since DDBox is special, I will not make the solid and logical
34  // part but once. We'll see how bad the others go.
35  // ihatethisihatethisihatethis
36  // for (int i = 0; i < compNDiv_; ++i)
37  // {
38  // DDpos(makeDDLogicalPart(i) // child logical part
39  // , div_.parent() // parent logical part
40  // , i // copy number
41  // , makeDDTranslation(i) // translation
42  // , makeDDRotation(i) // rotation. box is default (i.e. identity).
43  // );
44  // }
45 }
int nReplicas() const
Definition: DDDivision.cc:75
double offset() const
Definition: DDDivision.cc:87
int calculateNDiv(double motherDim, double width, double offset) const
double calculateWidth(double motherDim, int nDiv, double offset) const
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
virtual void checkParametersValidity(void)
DDDividedGeometryObject(const DDDivision &div, DDCompactView *cpv)
virtual void setType(const std::string &type)
double halfX(void) const
Definition: DDSolid.cc:266
Interface to a Box.
Definition: DDSolid.h:163
double width() const
Definition: DDDivision.cc:81
const DDLogicalPart & parent() const
Definition: DDDivision.cc:93

Member Function Documentation

double DDDividedBoxX::getMaxParameter ( void  ) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 48 of file DDDividedBox.cc.

References DDDividedGeometryObject::div_, DDBox::halfX(), DDDivision::parent(), and DDLogicalPart::solid().

49 {
50  DDBox msol = (DDBox)(div_.parent().solid());
51  return 2*msol.halfX();
52 }
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
double halfX(void) const
Definition: DDSolid.cc:266
Interface to a Box.
Definition: DDSolid.h:163
const DDLogicalPart & parent() const
Definition: DDDivision.cc:93
DDLogicalPart DDDividedBoxX::makeDDLogicalPart ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 75 of file DDDividedBox.cc.

References DDSolidFactory::box(), DDDividedGeometryObject::compWidth_, ddbox, DDBase< N, C >::ddname(), DDDividedGeometryObject::div_, DDLogicalPart::material(), DDName::name(), DDName::ns(), DDDivision::parent(), and DDLogicalPart::solid().

76 {
77  // in other cases, this solid will have 1, 2, 3, etc. after it.
78  DDName solname(div_.parent().ddname().name() + "_DIVCHILD", div_.parent().ddname().ns());
79  DDSolid ddbox(solname);
80  DDMaterial usemat(div_.parent().material());
81  DDBox msol = (DDBox) (div_.parent().solid());
82  DDLogicalPart ddlp(solname);
83  if (!ddbox.isDefined().second) //This solid has NOT been defined.
84  {
85  double pDx = msol.halfX();
86  double pDy = compWidth_/2.;
87  double pDz = msol.halfZ();
88 
89  ddbox = DDSolidFactory::box(solname, pDx, pDy, pDz);
90  ddlp = DDLogicalPart(solname, usemat, ddbox);
91  }
92  return ddlp;
93 }
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:43
const std::string & ns() const
Returns the namespace.
Definition: DDName.cc:67
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
A DDSolid represents the shape of a part.
Definition: DDSolid.h:39
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
static DDSolid box(const DDName &name, double xHalf, double yHalf, double zHalf)
Creates a box with side length 2*xHalf, 2*yHalf, 2*zHalf.
Definition: DDSolid.cc:704
Interface to a Box.
Definition: DDSolid.h:163
const DDLogicalPart & parent() const
Definition: DDDivision.cc:93
const std::string & name() const
Returns the name.
Definition: DDName.cc:53
const DDMaterial & material(void) const
Returns a reference object of the material this LogicalPart is made of.
const N & ddname() const
Definition: DDBase.h:76
DDRotation DDDividedBoxX::makeDDRotation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 55 of file DDDividedBox.cc.

56 {
57  return DDRotation();
58 }
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:68
DDTranslation DDDividedBoxX::makeDDTranslation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 61 of file DDDividedBox.cc.

References DDDividedGeometryObject::compWidth_, DDDividedGeometryObject::div_, DDBox::halfX(), DDDivision::offset(), DDDivision::parent(), and DDLogicalPart::solid().

62 {
63  DDBox msol = (DDBox)(div_.parent().solid());
64  double mdx = msol.halfX();
65 
66  //----- translation
67  DDTranslation translation;
68  double posi = -mdx + div_.offset() + (copyNo+0.5) * compWidth_;
69  translation.SetX( posi );
70 
71  return translation;
72 }
double offset() const
Definition: DDDivision.cc:87
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
double halfX(void) const
Definition: DDSolid.cc:266
Interface to a Box.
Definition: DDSolid.h:163
const DDLogicalPart & parent() const
Definition: DDDivision.cc:93