CMS 3D CMS Logo

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

#include <EllipticalTube.h>

Inheritance diagram for DDI::EllipticalTube:
DDI::Solid

Public Member Functions

 EllipticalTube (double xSemiAxis, double ySemiAxis, double zHeight)
 
void stream (std::ostream &os) const
 
double volume () const
 Not as flexible and possibly less accurate than G4 volume. More...
 
 ~EllipticalTube ()
 
- Public Member Functions inherited from DDI::Solid
const std::vector< double > & parameters () const
 
void setParameters (std::vector< double > const &p)
 
DDSolidShape shape () const
 
 Solid ()
 
 Solid (DDSolidShape shape)
 
virtual ~Solid ()
 

Additional Inherited Members

- Protected Attributes inherited from DDI::Solid
std::vector< double > p_
 
DDSolidShape shape_
 

Detailed Description

Definition at line 10 of file EllipticalTube.h.

Constructor & Destructor Documentation

DDI::EllipticalTube::EllipticalTube ( double  xSemiAxis,
double  ySemiAxis,
double  zHeight 
)
inline

Definition at line 13 of file EllipticalTube.h.

References DDI::Solid::p_.

15  {
16  p_.push_back(xSemiAxis);
17  p_.push_back(ySemiAxis);
18  p_.push_back(zHeight);
19  }
Solid()
Definition: Solid.h:14
std::vector< double > p_
Definition: Solid.h:32
DDI::EllipticalTube::~EllipticalTube ( )
inline

Definition at line 20 of file EllipticalTube.h.

20 { }

Member Function Documentation

void DDI::EllipticalTube::stream ( std::ostream &  os) const
virtual

Reimplemented from DDI::Solid.

Definition at line 5 of file EllipticalTube.cc.

References DDI::Solid::p_.

6 {
7  os << " xSemiAxis[cm]=" << p_[0]/cm
8  << " ySemiAxis[cm]=" << p_[1]/cm
9  << " zHeight[cm]=" << p_[2]/cm;
10 
11 }
std::vector< double > p_
Definition: Solid.h:32
double DDI::EllipticalTube::volume ( void  ) const
virtual

Not as flexible and possibly less accurate than G4 volume.

Reimplemented from DDI::Solid.

Definition at line 13 of file EllipticalTube.cc.

References Geom::pi().

13  {
14  double volume(0.);
15  // who cares major or minor axis? pi * a * b == pi * xhalf * yhalf
16  // area of a slice.
17  // we KNOW they are all cm... CMS uses cm
18  double area(Geom::pi()*p_[0]*p_[1]);
19  //volume is z * area. I'm pretty sure :)
20  volume = area * p_[2] * 2;
21  return volume;
22 
23 }
double volume() const
Not as flexible and possibly less accurate than G4 volume.
double pi()
Definition: Pi.h:31
std::vector< double > p_
Definition: Solid.h:32