#ifndef DWRITERCONSHH #define DWRITERCONSHH #include #include "DWBasis.hh" #include "DWUnits.hh" class DWCons : public DWBasis { private: double _r1min; double _r1max; double _r2min; double _r2max; double _length; double _th1; double _th2; public: DWCons(double r1min, double r1max, double r2min, double r2max, double length, double th1=0*DWdegree, double th2=360*DWdegree) : _r1min(r1min), _r1max(r1max), _r2min(r2min), _r2max(r2max), _length(length), _th1(th1), _th2(th2) {}; void Unveil(ostream & o) const; }; #endif