CMS 3D CMS Logo

/data/git/CMSSW_5_3_11_patch5/src/DetectorDescription/Core/src/Cons.h

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