Go to the documentation of this file.00001 #ifndef DDI_Sphere_h
00002 #define DDI_Sphere_h
00003
00004 #include <iosfwd>
00005 #include "Solid.h"
00006
00007 namespace DDI {
00008
00009 class Sphere : public DDI::Solid
00010 {
00011 public:
00012 Sphere(double innerRadius,
00013 double outerRadius,
00014 double startPhi,
00015 double deltaPhi,
00016 double startZ,
00017 double deltaZ);
00018
00019 double volume() const ;
00020 void stream(std::ostream &) const;
00021 };
00022
00023 }
00024
00025 #endif