Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:24

0001 #ifndef DDI_Sphere_h
0002 #define DDI_Sphere_h
0003 
0004 #include <iosfwd>
0005 #include "Solid.h"
0006 
0007 namespace DDI {
0008 
0009   class Sphere : public DDI::Solid {
0010   public:
0011     Sphere(double innerRadius, double outerRadius, double startPhi, double deltaPhi, double startZ, double deltaZ);
0012 
0013     double volume() const override;
0014     void stream(std::ostream &) const override;
0015   };
0016 
0017 }  // namespace DDI
0018 
0019 #endif