CMS 3D CMS Logo

List of all members | Public Member Functions
DDDividedTrdZ Class Referencefinal

#include <DDDividedTrd.h>

Inheritance diagram for DDDividedTrdZ:
DDDividedGeometryObject

Public Member Functions

void checkParametersValidity () override
 
 DDDividedTrdZ (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 38 of file DDDividedTrd.h.

Constructor & Destructor Documentation

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

Definition at line 297 of file DDDividedTrd.cc.

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

298  : DDDividedGeometryObject( div, cpv )
299 {
301  setType( "DivTrdZ" );
302  DDTrap mtrd = (DDTrap)(div_.parent().solid());
303 
304  if ( divisionType_ == DivWIDTH )
305  {
306  compNDiv_ = calculateNDiv( 2*mtrd.halfZ(), div_.width(), div_.offset() );
307  }
308  else if( divisionType_ == DivNDIV )
309  {
311  }
312 }
double halfZ(void) const
half of the z-Axis
Definition: DDSolid.cc:159
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)
void checkParametersValidity() override
Interface to a Trapezoid.
Definition: DDSolid.h:79
virtual void setType(const std::string &type)
double width() const
Definition: DDDivision.cc:76
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86

Member Function Documentation

void DDDividedTrdZ::checkParametersValidity ( void  )
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 398 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, and DDTrap::theta().

Referenced by DDDividedTrdZ().

399 {
401 
402  DDTrap mtrd = (DDTrap)(div_.parent().solid());
403 
404  double mpTheta = mtrd.theta();
405  double mpPhi = mtrd.phi();
406  double mpAlpha1 = mtrd.alpha1();
407  double mpAlpha2 = mtrd.alpha2();
408 
409  // mec: we only have traps, not trds in DDD, so I added this check
410  // to make sure it is only a trd (I think! :-))
411  if (mpAlpha1 != 0.*deg || mpAlpha2 != 0.*deg || mpTheta != 0.*deg || mpPhi != 0.*deg)
412  {
413  std::string s = "ERROR - DDDividedTrdZ::checkParametersValidity()";
414  s+= "\n Making a division of a TRD along axis X,";
415  s+= "\n while the theta, phi and aplhpa2 are not zero,";
416  s+= "\n is not (yet) supported. It will result";
417  s+= "\n in non-equal division solids.";
418  throw cms::Exception("DDException") << s;
419  }
420 }
double phi(void) const
Azimuthal angle of the line joining the centres of the faces at -/+pDz.
Definition: DDSolid.cc:165
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
virtual void checkParametersValidity(void)
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:177
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:189
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:162
double DDDividedTrdZ::getMaxParameter ( void  ) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 315 of file DDDividedTrd.cc.

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

316 {
317  DDTrap mtrd = (DDTrap)(div_.parent().solid());
318  return 2 * mtrd.halfZ();
319 }
double halfZ(void) const
half of the z-Axis
Definition: DDSolid.cc:159
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 DDDividedTrdZ::makeDDLogicalPart ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 355 of file DDDividedTrd.cc.

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

356 {
357  //---- The division along Z of a Trd will result a Trd
358  DDTrap mtrd = (DDTrap)(div_.parent().solid());
359  DDMaterial usemat = div_.parent().material();
360 
361  double pDx1 = mtrd.x1(); //->GetXHalfLength1();
362  //(mtrd->GetXHalfLength2() - mtrd->GetXHalfLength1() );
363  double DDx = (mtrd.x2() - mtrd.x1() );
364  double pDy1 = mtrd.y1(); // ->GetYHalfLength1();
365  //(mtrd->GetYHalfLength2() - mtrd->GetYHalfLength1() );
366  double DDy = (mtrd.y2() - mtrd.y1() );
367  double pDz = compWidth_/2.;
368  double zLength = 2*mtrd.halfZ(); //->GetZHalfLength();
369 
370  // trd.SetAllParameters ( pDx1+DDx*(div_.offset()+copyNo*compWidth_)/zLength,
371  // pDx1+DDx*(div_.offset()+(copyNo+1)*compWidth_)/zLength,
372  // pDy1+DDy*(div_.offset()+copyNo*compWidth_)/zLength,
373  // pDy1+DDy*(div_.offset()+(copyNo+1)*compWidth_)/zLength, pDz );
374 
375  DDName solname(div_.parent().ddname().name() + "_DIVCHILD"
376  + std::to_string(copyNo),
377  div_.parent().ddname().ns());
378  DDSolid dsol =
379  DDSolidFactory::trap(solname
380  , pDz
381  , 0.*deg
382  , 0.*deg
383  , pDy1+DDy*(div_.offset()+copyNo*compWidth_)/zLength
384  , pDx1+DDx*(div_.offset()+copyNo*compWidth_)/zLength
385  , pDx1+DDx*(div_.offset()+copyNo*compWidth_)/zLength
386  , 0.*deg
387  , pDy1+DDy*(div_.offset()+(copyNo+1)*compWidth_)/zLength
388  , pDx1+DDx*(div_.offset()+(copyNo+1)*compWidth_)/zLength
389  , pDx1+DDx*(div_.offset()+(copyNo+1)*compWidth_)/zLength
390  , 0*deg
391  );
392 
393  DDLogicalPart ddlp(solname, usemat, dsol);
394  return ddlp;
395 }
double halfZ(void) const
half of the z-Axis
Definition: DDSolid.cc:159
double x1(void) const
Half-length along x of the side at y=-pDy1 of the face at -pDz.
Definition: DDSolid.cc:171
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:41
double offset() const
Definition: DDDivision.cc:81
const std::string & ns() const
Returns the namespace.
Definition: DDName.cc:102
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:168
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:794
double x2(void) const
Half-length along x of the side at y=+pDy1 of the face at -pDz.
Definition: DDSolid.cc:174
double y2(void) const
Half-length along y of the face at +pDz.
Definition: DDSolid.cc:180
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
const std::string & name() const
Returns the name.
Definition: DDName.cc:88
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 DDDividedTrdZ::makeDDRotation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 349 of file DDDividedTrd.cc.

350 {
351  return DDRotation();
352 }
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:67
DDTranslation DDDividedTrdZ::makeDDTranslation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 322 of file DDDividedTrd.cc.

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

323 {
324  DDTrap mtrd = (DDTrap)(div_.parent().solid() );
325  double mdz = mtrd.halfZ();
326 
327  //----- translation
328  double posi = -mdz + div_.offset() + (copyNo+0.5)*compWidth_;
329 
330  if( div_.axis() == DDAxes::z )
331  {
332  return DDTranslation(0.0, 0.0, posi);
333  }
334  else
335  {
336  std::string s = "ERROR - DDDividedTrdZ::makeDDTranslation()";
337  s += "\n Axis is along ";
338  s += DDAxesNames::name(div_.axis());
339  s += " !\n" ;
340  s += "DDDividedTrdY::makeDDTranslation()";
341  s += " IllegalConstruct: Only axes along z are allowed !";
342  throw cms::Exception("DDException") << s;
343 
344  }
345  return DDTranslation();
346 }
double halfZ(void) const
half of the z-Axis
Definition: DDSolid.cc:159
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