CMS 3D CMS Logo

List of all members | Public Member Functions
DDDividedTrdX Class Referencefinal

#include <DDDividedTrd.h>

Inheritance diagram for DDDividedTrdX:
DDDividedGeometryObject

Public Member Functions

void checkParametersValidity () override
 
 DDDividedTrdX (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
 
DDRotationMatrixchangeRotMatrix (double rotZ=0.) const
 
void checkNDivAndWidth (double maxPar)
 
void checkOffset (double maxPar)
 
- 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 DDDividedTrd.h.

Constructor & Destructor Documentation

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

Definition at line 21 of file DDDividedTrd.cc.

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

22  : DDDividedGeometryObject(div,cpv)
23 {
25  setType( "DivisionTrdX" );
26  DDTrap mtrd = (DDTrap)( div_.parent().solid() );
27 
28  if ( divisionType_ == DivWIDTH )
29  {
30  compNDiv_ = calculateNDiv( 2 * mtrd.x1(), div_.width(), div_.offset() );
31  }
32  else if( divisionType_ == DivNDIV )
33  {
34  compWidth_ = calculateWidth( 2*mtrd.x1(), div_.nReplicas(), div_.offset() );
35  }
36 }
double x1(void) const
Half-length along x of the side at y=-pDy1 of the face at -pDz.
Definition: DDSolid.cc:177
int nReplicas() const
Definition: DDDivision.cc:71
double offset() const
Definition: DDDivision.cc:81
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.
DDDividedGeometryObject(const DDDivision &div, DDCompactView *cpv)
Interface to a Trapezoid.
Definition: DDSolid.h:79
virtual void setType(const std::string &type)
void checkParametersValidity() override
double width() const
Definition: DDDivision.cc:76
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86

Member Function Documentation

void DDDividedTrdX::checkParametersValidity ( void  )
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 116 of file DDDividedTrd.cc.

References DDTrap::alpha1(), DDTrap::alpha2(), DDDividedGeometryObject::checkParametersValidity(), DDDividedGeometryObject::div_, Exception, DDDivision::parent(), DDTrap::phi(), alignCSCRings::s, DDLogicalPart::solid(), AlCaHLTBitMon_QueryRunRegistry::string, DDTrap::theta(), DDDividedGeometryObject::tolerance(), DDTrap::x1(), DDTrap::x2(), DDTrap::x3(), and DDTrap::x4().

Referenced by DDDividedTrdX().

117 {
119 
120  DDTrap mtrd = (DDTrap)(div_.parent().solid());
121 
122  double mpDx1 = mtrd.x1(); //->GetXHalfLength1();
123  double mpDx2 = mtrd.x2(); //->GetXHalfLength2();
124  double mpDx3 = mtrd.x3();
125  double mpDx4 = mtrd.x4();
126  double mpTheta = mtrd.theta();
127  double mpPhi = mtrd.phi();
128  double mpAlpha1 = mtrd.alpha1();
129  double mpAlpha2 = mtrd.alpha2();
130  // double mpDy1 = mtrd.y1();
131  // double mpDy2 = mtrd.y2();
132  // double x1Tol = mpDx1 - mpDx2;
133  // if (x1Tol < 0.0) x1Tol = x1Tol * -1.0;
134 
135  if ( fabs(mpDx1 - mpDx2) > tolerance() || fabs(mpDx3 - mpDx4) > tolerance()
136  || fabs(mpDx1 - mpDx4) > tolerance())
137  {
138  std::string s = "ERROR - DDDividedTrdX::checkParametersValidity()";
139  s+= "\n Making a division of a TRD along axis X,";
140  s+= "\n while the X half lengths are not equal,";
141  s+= "\n is not (yet) supported. It will result";
142  s+= "\n in non-equal division solids.";
143  throw cms::Exception("DDException") << s;
144  }
145  // if (fabs(mpDy1 - mpDy2) > tolerance())
146  // {
147  // std::string s = "ERROR - DDDividedTrdX::checkParametersValidity()";
148  // s+= "\n Making a division of a TRD along axis X,";
149  // s+= "\n while the Y half lengths are not equal,";
150  // s+= "\n is not (yet) supported. It will result";
151  // s+= "\n in non-equal division solids.";
152  // throw cms::Exception("DDException") << s;
153  // }
154  // mec: we only have traps, not trds in DDD, so I added this check
155  // to make sure it is only a trd (I think! :-))
156  if (mpAlpha1 != 0.*deg || mpAlpha2 != 0.*deg || mpTheta != 0.*deg || mpPhi != 0.*deg)
157  {
158  std::string s = "ERROR - DDDividedTrdX::checkParametersValidity()";
159  s+= "\n Making a division of a TRD along axis X,";
160  s+= "\n while the theta, phi and aplhpa2 are not zero,";
161  s+= "\n is not (yet) supported. It will result";
162  s+= "\n in non-equal division solids.";
163  throw cms::Exception("DDException") << s;
164  }
165 }
double x1(void) const
Half-length along x of the side at y=-pDy1 of the face at -pDz.
Definition: DDSolid.cc:177
double phi(void) const
Azimuthal angle of the line joining the centres of the faces at -/+pDz.
Definition: DDSolid.cc:171
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
virtual void checkParametersValidity(void)
static const double tolerance(void)
double x4(void) const
Half-length along x of the side at y=+pDy2 of the face at +pDz.
Definition: DDSolid.cc:192
Interface to a Trapezoid.
Definition: DDSolid.h:79
double alpha1(void) const
Angle with respect to the y axis from the centre of the side at y=-pDy1 to the centre at y=+pDy1 of t...
Definition: DDSolid.cc:183
double alpha2(void) const
Angle with respect to the y axis from the centre of the side at y=-pDy2 to the centre at y=+pDy2 of t...
Definition: DDSolid.cc:195
double x2(void) const
Half-length along x of the side at y=+pDy1 of the face at -pDz.
Definition: DDSolid.cc:180
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
double theta(void) const
Polar angle of the line joining the centres of the faces at -/+pDz.
Definition: DDSolid.cc:168
double x3(void) const
Half-length along x of the side at y=-pDy2 of the face at +pDz.
Definition: DDSolid.cc:189
double DDDividedTrdX::getMaxParameter ( void  ) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 39 of file DDDividedTrd.cc.

References DDDividedGeometryObject::div_, DDDivision::parent(), DDLogicalPart::solid(), and DDTrap::x1().

40 {
41  DDTrap mtrd = (DDTrap)(div_.parent().solid());
42  return 2 * mtrd.x1();
43 }
double x1(void) const
Half-length along x of the side at y=-pDy1 of the face at -pDz.
Definition: DDSolid.cc:177
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
Interface to a Trapezoid.
Definition: DDSolid.h:79
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
DDLogicalPart DDDividedTrdX::makeDDLogicalPart ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 80 of file DDDividedTrd.cc.

References DDDividedGeometryObject::compWidth_, DDBase< N, C >::ddname(), DDDividedGeometryObject::div_, DDTrap::halfZ(), DDLogicalPart::material(), DDName::name(), DDName::ns(), DDDivision::parent(), DDLogicalPart::solid(), DDSolidFactory::trap(), DDTrap::y1(), and DDTrap::y2().

81 {
82  DDTrap mtrd = (DDTrap)(div_.parent().solid());
83  DDMaterial usemat = div_.parent().material();
84 
85  double pDy1 = mtrd.y1(); //GetYHalfLength1();
86  double pDy2 = mtrd.y2(); //->GetYHalfLength2();
87  double pDz = mtrd.halfZ(); //->GetZHalfLength();
88  double pDx = compWidth_/2.;
89 
90  //trd.SetAllParameters ( pDx, pDx, pDy1, pDy2, pDz );
91 
92  DDName solname(div_.parent().ddname().name() + "_DIVCHILD"
93  , div_.parent().ddname().ns());
94  DDSolid dsol(solname);
95  DDLogicalPart ddlp(solname);
96  if (!dsol.isDefined().second)
97  {
98  dsol = DDSolidFactory::trap(solname
99  , pDz
100  , 0.*deg
101  , 0.*deg
102  , pDy1
103  , pDx
104  , pDx
105  , 0.*deg
106  , pDy2
107  , pDx
108  , pDx
109  , 0.*deg);
110  ddlp = DDLogicalPart(solname, usemat, dsol);
111  }
112  return ddlp;
113 }
double halfZ(void) const
half of the z-Axis
Definition: DDSolid.cc:165
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:41
const std::string & ns() const
Returns the namespace.
Definition: DDName.cc:104
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:38
Interface to a Trapezoid.
Definition: DDSolid.h:79
double y1(void) const
Half-length along y of the face at -pDz.
Definition: DDSolid.cc:174
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:92
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)
Definition: DDSolid.cc:917
double y2(void) const
Half-length along y of the face at +pDz.
Definition: DDSolid.cc:186
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
const std::string & name() const
Returns the name.
Definition: DDName.cc:90
const DDMaterial & material(void) const
Returns a reference object of the material this LogicalPart is made of.
const N & ddname() const
Definition: DDBase.h:80
DDRotation DDDividedTrdX::makeDDRotation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 74 of file DDDividedTrd.cc.

75 {
76  return DDRotation();
77 }
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:67
DDTranslation DDDividedTrdX::makeDDTranslation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 46 of file DDDividedTrd.cc.

References DDDivision::axis(), DDDividedGeometryObject::compWidth_, DDDividedGeometryObject::div_, Exception, DDAxesNames::name(), DDDivision::offset(), DDDivision::parent(), alignCSCRings::s, DDLogicalPart::solid(), AlCaHLTBitMon_QueryRunRegistry::string, x, and DDTrap::x1().

47 {
48  DDTrap mtrd = (DDTrap)(div_.parent().solid());
49  double mdx = mtrd.x1();
50 
51 
52  //----- translation
53  double posi = -mdx + div_.offset() + (copyNo+0.5)*compWidth_;
54 
55  if( div_.axis() == DDAxes::x )
56  {
57  return DDTranslation(posi, 0.0, 0.0);
58  }
59  else
60  {
61  std::string s = "ERROR - DDDividedTrdX::makeDDTranslation()";
62  s += "\n Axis is along ";
63  s += DDAxesNames::name(div_.axis());
64  s += " !\n" ;
65  s += "DDDividedTrdX::makeDDTranslation()";
66  s += " IllegalConstruct: Only axes along x are allowed !";
67  throw cms::Exception("DDException") << s;
68  }
69 
70  return DDTranslation();
71 }
double x1(void) const
Half-length along x of the side at y=-pDy1 of the face at -pDz.
Definition: DDSolid.cc:177
double offset() const
Definition: DDDivision.cc:81
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
Interface to a Trapezoid.
Definition: DDSolid.h:79
DDAxes axis() const
Definition: DDDivision.cc:66
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
static const std::string name(const DDAxes &s)
Definition: DDAxes.cc:29