#ifndef DWRITERTUBSHH #define DWRITERTUBSHH #include #include "DWBasis.hh" #include "DWUnits.hh" class DWTubs : public DWBasis { private: double _rmin; double _rmax; double _length; double _th1; double _th2; public: DWTubs(double rmin, double rmax, double length, double th1=0*DWdegree, double th2=360*DWdegree) : _rmin(rmin), _rmax(rmax), _length(length), _th1(th1), _th2(th2) {}; void Unveil(ostream & o) const; }; #endif