CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions
DDPolyhedra Class Reference

#include <DDSolid.h>

Inheritance diagram for DDPolyhedra:
DDPolySolid DDSolid DDBase< DDName, DDI::Solid * >

Public Member Functions

 DDPolyhedra (const DDSolid &s)
 
double deltaPhi (void) const
 
std::vector< double > rMaxVec (void) const
 
std::vector< double > rMinVec (void) const
 
std::vector< double > rVec (void) const
 
int sides (void) const
 
double startPhi (void) const
 
std::vector< double > zVec (void) const
 
- Public Member Functions inherited from DDPolySolid
 DDPolySolid (const DDSolid &s)
 
- Public Member Functions inherited from DDSolid
 DDSolid (void)
 Uninitialilzed solid reference-object; for further details on reference-objects see documentation of DDLogicalPart. More...
 
 DDSolid (const DDName &name)
 Creates a reference-object to a solid named name. More...
 
const std::vector< double > & parameters (void) const
 Give the parameters of the solid. More...
 
DDSolidShape shape (void) const
 The type of the solid. More...
 
double volume (void) const
 Returns the volume of the given solid (does not work with boolean soids !) More...
 
- Public Member Functions inherited from DDBase< DDName, DDI::Solid * >
 DDBase ()
 
const DDNameddname () const
 
def_type isDefined () const
 
bool isValid () const
 true, if the wrapped pointer is valid More...
 
const DDNamename () const
 
 operator bool () const
 
bool operator< (const DDBase &b) const
 
bool operator== (const DDBase &b) const
 
bool operator> (const DDBase &b) const
 
const DDI::rep_traits< DDName,
DDI::Solid * >::reference 
rep () const
 
DDI::rep_traits< DDName,
DDI::Solid * >::reference 
rep ()
 
std::string toString () const
 
const DDI::rep_traits< DDName,
DDI::Solid * >::reference 
val () const
 
const DDI::rep_traits< DDName,
DDI::Solid * >::reference 
val ()
 
virtual ~DDBase ()
 

Private Member Functions

 DDPolyhedra (void)
 

Additional Inherited Members

- Public Types inherited from DDBase< DDName, DDI::Solid * >
typedef std::pair< const
DDName *, bool > 
def_type
 
typedef DDI::Solidpimpl_type
 
typedef DDI::rep_type< DDName,
pimpl_type > * 
prep_type
 
typedef DDI::Singleton
< DDI::Store< DDName,
DDI::Solid * > > 
StoreT
 
- Static Public Member Functions inherited from DDBase< DDName, DDI::Solid * >
static DDI::Store< DDName,
DDI::Solid * >::iterator 
begin ()
 
static void clear ()
 
static DDI::Store< DDName,
DDI::Solid * >::iterator 
end ()
 
static size_t size ()
 
- Protected Member Functions inherited from DDPolySolid
 DDPolySolid (void)
 
virtual std::vector< double > getVec (const size_t &which, const size_t &offset=0, const size_t &nVecs=1) const
 note defaults please. More...
 
- Protected Attributes inherited from DDBase< DDName, DDI::Solid * >
prep_type prep_
 

Detailed Description

Definition at line 236 of file DDSolid.h.

Constructor & Destructor Documentation

DDPolyhedra::DDPolyhedra ( const DDSolid s)

Definition at line 403 of file DDSolid.cc.

References ddpolyhedra_rrz, ddpolyhedra_rz, edm::hlt::Exception, DDName::name(), DDBase< N, C >::name(), DDName::ns(), DDSolid::shape(), and AlCaHLTBitMon_QueryRunRegistry::string.

404  : DDPolySolid(s)
405 {
406  if (s.shape() != ddpolyhedra_rz && s.shape() != ddpolyhedra_rrz) {
407  std::string ex = "Solid [" + s.name().ns() + ":" + s.name().name() + "] is not a DDPolyhedra.\n";
408  ex = ex + "Use a different solid interface!";
409  throw cms::Exception("DDException") << ex;
410  }
411 }
const N & name() const
Definition: DDBase.h:82
const std::string & ns() const
Returns the namespace.
Definition: DDName.cc:101
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144
DDPolySolid(void)
const std::string & name() const
Returns the name.
Definition: DDName.cc:87
DDPolyhedra::DDPolyhedra ( void  )
private

Member Function Documentation

double DDPolyhedra::deltaPhi ( void  ) const
std::vector< double > DDPolyhedra::rMaxVec ( void  ) const

Definition at line 440 of file DDSolid.cc.

References ddpolyhedra_rrz, DDPolySolid::getVec(), and DDSolid::shape().

Referenced by DDDividedPolyhedraRho::DDDividedPolyhedraRho(), DDDividedPolyhedraRho::getMaxParameter(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), and DDCoreToDDXMLOutput::solid().

440  {
441  std::vector<double> tvec;
442  if (shape() == ddpolyhedra_rrz)
443  tvec = getVec(2, 3, 3);
444  return tvec;
445 }
virtual std::vector< double > getVec(const size_t &which, const size_t &offset=0, const size_t &nVecs=1) const
note defaults please.
Definition: DDSolid.cc:333
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144
std::vector< double > DDPolyhedra::rMinVec ( void  ) const

Definition at line 433 of file DDSolid.cc.

References ddpolyhedra_rrz, DDPolySolid::getVec(), and DDSolid::shape().

Referenced by DDDividedPolyhedraRho::DDDividedPolyhedraRho(), DDDividedPolyhedraRho::getMaxParameter(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), and DDCoreToDDXMLOutput::solid().

433  {
434  std::vector<double> tvec;
435  if (shape() == ddpolyhedra_rrz)
436  tvec = getVec(1, 3, 3);
437  return tvec;
438 }
virtual std::vector< double > getVec(const size_t &which, const size_t &offset=0, const size_t &nVecs=1) const
note defaults please.
Definition: DDSolid.cc:333
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144
std::vector< double > DDPolyhedra::rVec ( void  ) const

Definition at line 419 of file DDSolid.cc.

References ddpolyhedra_rz, DDPolySolid::getVec(), and DDSolid::shape().

Referenced by DDCoreToDDXMLOutput::solid().

419  {
420  std::vector<double> tvec;
421  if (shape() == ddpolyhedra_rz)
422  tvec = getVec(1, 3, 2);
423  return tvec;
424 }
virtual std::vector< double > getVec(const size_t &which, const size_t &offset=0, const size_t &nVecs=1) const
note defaults please.
Definition: DDSolid.cc:333
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144
int DDPolyhedra::sides ( void  ) const

Definition at line 413 of file DDSolid.cc.

References DDSolid::parameters(), and DDBase< DDName, DDI::Solid * >::rep().

Referenced by SolidsForOnline::beginRun(), DDDividedPolyhedraPhi::checkParametersValidity(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), and DDCoreToDDXMLOutput::solid().

413 { return int(rep().parameters()[0]); }
const std::vector< double > & parameters(void) const
Give the parameters of the solid.
Definition: DDSolid.cc:150
const DDI::rep_traits< DDName, DDI::Solid * >::reference rep() const
Definition: DDBase.h:89
double DDPolyhedra::startPhi ( void  ) const

Definition at line 415 of file DDSolid.cc.

References DDBase< DDName, DDI::Solid * >::rep().

Referenced by SolidsForOnline::beginRun(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), and DDCoreToDDXMLOutput::solid().

415 { return rep().parameters()[1]; }
const DDI::rep_traits< DDName, DDI::Solid * >::reference rep() const
Definition: DDBase.h:89
std::vector< double > DDPolyhedra::zVec ( void  ) const

Definition at line 426 of file DDSolid.cc.

References ddpolyhedra_rz, DDPolySolid::getVec(), and DDSolid::shape().

Referenced by DDDividedPolyhedraZ::checkParametersValidity(), DDDividedPolyhedraZ::DDDividedPolyhedraZ(), DDDividedPolyhedraZ::getMaxParameter(), DDDividedPolyhedraRho::makeDDLogicalPart(), DDDividedPolyhedraPhi::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDLogicalPart(), DDDividedPolyhedraZ::makeDDTranslation(), and DDCoreToDDXMLOutput::solid().

426  {
427  if (shape() == ddpolyhedra_rz)
428  return getVec(0, 3, 2);
429  else // (shape() == ddpolycone_rrz)
430  return getVec(0, 3, 3);
431 }
virtual std::vector< double > getVec(const size_t &which, const size_t &offset=0, const size_t &nVecs=1) const
note defaults please.
Definition: DDSolid.cc:333
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:144