Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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