CMS 3D CMS Logo

List of all members | Public Member Functions
DDI::Sphere Class Reference

#include <Sphere.h>

Inheritance diagram for DDI::Sphere:
DDI::Solid

Public Member Functions

 Sphere (double innerRadius, double outerRadius, double startPhi, double deltaPhi, double startZ, double deltaZ)
 
void stream (std::ostream &) const override
 
double volume () const override
 
- 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 9 of file Sphere.h.

Constructor & Destructor Documentation

DDI::Sphere::Sphere ( double  innerRadius,
double  outerRadius,
double  startPhi,
double  deltaPhi,
double  startZ,
double  deltaZ 
)

Definition at line 13 of file Sphere.cc.

References ddsphere, and DDI::Solid::p_.

20 {
21  p_.emplace_back(innerRadius);
22  p_.emplace_back(outerRadius);
23  p_.emplace_back(startPhi);
24  p_.emplace_back(deltaPhi);
25  p_.emplace_back(startTheta);
26  p_.emplace_back(deltaTheta);
27 }
Solid()
Definition: Solid.h:14
std::vector< double > p_
Definition: Solid.h:32

Member Function Documentation

void DDI::Sphere::stream ( std::ostream &  os) const
overridevirtual

Reimplemented from DDI::Solid.

Definition at line 30 of file Sphere.cc.

References DDI::Solid::p_.

31 {
32  os << " innerRadius=" << p_[0]/cm
33  << " outerRadius=" << p_[1]/cm
34  << " startPhi=" << p_[2]/deg
35  << " deltaPhi=" << p_[3]/deg
36  << " startTheta=" << p_[4]/deg
37  << " deltaTheta=" << p_[5]/deg;
38 }
std::vector< double > p_
Definition: Solid.h:32
double DDI::Sphere::volume ( void  ) const
overridevirtual

Reimplemented from DDI::Solid.

Definition at line 40 of file Sphere.cc.

References funct::cos(), DDI::Solid::p_, and Geom::pi().

41 {
42  double volume(0.);
43  if ( std::fabs(p_[3]) <= 2.*Geom::pi() && std::fabs(p_[5]) <= Geom::pi() ) {
44  volume = std::fabs((p_[1]*p_[1]*p_[1] - p_[0]*p_[0]*p_[0])/3. * (std::cos(p_[4]+p_[5]) - std::cos(p_[4]))*p_[3]);
45  } else if (std::fabs(p_[3]) <= 2.*Geom::pi() && std::fabs(p_[5]) > Geom::pi() ) {
46  volume = std::fabs((p_[1]*p_[1]*p_[1] - p_[0]*p_[0]*p_[0])/3. * (std::cos(p_[4]+p_[5]-180.*deg) - std::cos(p_[4]))*p_[3]);
47  } else if (std::fabs(p_[3]) > 2.*Geom::pi() && std::fabs(p_[5]) <= Geom::pi() ) {
48  volume = std::fabs((p_[1]*p_[1]*p_[1] - p_[0]*p_[0]*p_[0])/3. * (std::cos(p_[4]+p_[5]) - std::cos(p_[4]))*(p_[3]-p_[2]));
49  }
50  return volume;
51 }
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double volume() const override
Definition: Sphere.cc:40
std::vector< double > p_
Definition: Solid.h:32
constexpr double pi()
Definition: Pi.h:31