CMS 3D CMS Logo

List of all members | Public Member Functions
DDDividedConsPhi Class Referencefinal

#include <DDDividedCons.h>

Inheritance diagram for DDDividedConsPhi:
DDDividedGeometryObject

Public Member Functions

 DDDividedConsPhi (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)
 
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 24 of file DDDividedCons.h.

Constructor & Destructor Documentation

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

Definition at line 105 of file DDDividedCons.cc.

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

107 {
109  setType( "DivisionConsPhi" );
110  DDCons msol = (DDCons)(div_.parent().solid());
111 
112  if( divisionType_ == DivWIDTH )
113  {
114  DDCons msol = (DDCons)(div_.parent().solid());
115  //If you divide a tube of 360 degrees the offset displaces the starting angle, but you still fill the 360 degrees
116  if( msol.deltaPhi() == 360.*deg )
117  {
118  compNDiv_ = calculateNDiv( msol.deltaPhi(), div_.width(), 0. );
119  }
120  else
121  {
123  }
124  }
125  else if( divisionType_ == DivNDIV )
126  {
127  DDCons msol = (DDCons)(div_.parent().solid());
128  if( msol.deltaPhi() == 360.*deg )
129  {
130  compWidth_ = calculateWidth( msol.deltaPhi(), div_.nReplicas(), 0. );
131  }
132  else
133  {
135  }
136  }
137 }
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.
virtual void checkParametersValidity(void)
DDDividedGeometryObject(const DDDivision &div, DDCompactView *cpv)
virtual void setType(const std::string &type)
double deltaPhi(void) const
Definition: DDSolid.cc:542
double width() const
Definition: DDDivision.cc:76
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86

Member Function Documentation

double DDDividedConsPhi::getMaxParameter ( void  ) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 140 of file DDDividedCons.cc.

References DDCons::deltaPhi(), DDDividedGeometryObject::div_, DDDivision::parent(), and DDLogicalPart::solid().

141 {
142  DDCons msol = (DDCons)(div_.parent().solid());
143  return msol.deltaPhi();
144 }
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
double deltaPhi(void) const
Definition: DDSolid.cc:542
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
DDLogicalPart DDDividedConsPhi::makeDDLogicalPart ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 169 of file DDDividedCons.cc.

References DDDividedGeometryObject::compWidth_, DDSolidFactory::cons(), ddcons, DDBase< N, C >::ddname(), DDDividedGeometryObject::div_, DDLogicalPart::material(), DDName::name(), DDName::ns(), DDDivision::offset(), DDDivision::parent(), DDCons::rInMinusZ(), and DDLogicalPart::solid().

170 {
171  DDName solname(div_.parent().ddname().name() + "_DIVCHILD"
172  , div_.parent().ddname().ns());
173  DDSolid ddcons(solname);
174  DDMaterial usemat(div_.parent().material());
175  DDCons msol = (DDCons)(div_.parent().solid());
176 
177  if (!ddcons.isDefined().second)
178  {
179  double pRMin1 = msol.rInMinusZ();
180  double pRMax1 = msol.rOutMinusZ();
181  double pRMin2 = msol.rInPlusZ();
182  double pRMax2 = msol.rOutPlusZ();
183  double pDz = msol.zhalf();
184 
185  //- already rotated double pSPhi = div_.offset() + copyNo*compWidth_;
186  double pSPhi = div_.offset() + msol.phiFrom();
187  double pDPhi = compWidth_;
188  ddcons = DDSolidFactory::cons(DDName(solname), pDz, pRMin1, pRMax1
189  , pRMin2, pRMax2, pSPhi, pDPhi);
190  }
191 
192  DDLogicalPart ddlp = DDLogicalPart(solname, usemat, ddcons);
193 
194  return ddlp;
195 }
DDMaterial is used to define and access material information.
Definition: DDMaterial.h:41
double offset() const
Definition: DDDivision.cc:81
static DDSolid cons(const DDName &name, double zhalf, double rInMinusZ, double rOutMinusZ, double rInPlusZ, double rOutPlusZ, double phiFrom, double deltaPhi)
Definition: DDSolid.cc:836
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
double rInMinusZ(void) const
Definition: DDSolid.cc:527
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:92
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 DDDividedConsPhi::makeDDRotation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 147 of file DDDividedCons.cc.

References DDDividedGeometryObject::changeRotMatrix(), DDDividedGeometryObject::compWidth_, DDBase< N, C >::ddname(), DDrot(), DDDividedGeometryObject::div_, DDName::name(), DDName::ns(), and DDDivision::parent().

148 {
149  DDRotation myddrot; // sets to identity.
150  double posi = ( copyNo - 1 ) * compWidth_;
151  DDRotationMatrix* rotMat = changeRotMatrix( posi );
152  // how to name the rotation??
153  // i hate this crap :-)
154  DDName ddrotname(div_.parent().ddname().name() + "_DIVCHILD_ROT" + std::to_string(copyNo),
155  div_.parent().ddname().ns());
156  myddrot = DDrot(ddrotname, rotMat);
157 
158  return myddrot;
159 }
const std::string & ns() const
Returns the namespace.
Definition: DDName.cc:102
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:15
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:67
DDRotation DDrot(const DDName &name, DDRotationMatrix *rot)
Definition of a uniquely identifiable rotation matrix named by DDName name.
Definition: DDRotation.cc:90
const DDLogicalPart & parent() const
Definition: DDDivision.cc:86
ROOT::Math::Rotation3D DDRotationMatrix
A DDRotationMatrix is currently implemented with a ROOT Rotation3D.
const std::string & name() const
Returns the name.
Definition: DDName.cc:88
const N & ddname() const
Definition: DDBase.h:80
DDRotationMatrix * changeRotMatrix(double rotZ=0.) const
DDTranslation DDDividedConsPhi::makeDDTranslation ( int  copyNo) const
overridevirtual

Reimplemented from DDDividedGeometryObject.

Definition at line 162 of file DDDividedCons.cc.

163 {
164  DDTranslation translation;
165  return translation;
166 }
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7