#ifndef ROOT_TCONS
#define ROOT_TCONS
#ifndef ROOT_TTUBS
#include "TTUBS.h"
#endif
class TCONS : public TTUBS {
protected:
   Float_t fRmin2;        
   Float_t fRmax2;        
   virtual void    SetPoints(Double_t *points) const;
public:
   TCONS();
   TCONS(const char *name, const char *title, const char *material, Float_t dz, Float_t rmin1, Float_t rmax1,
         Float_t rmin2, Float_t rmax2, Float_t phi1, Float_t phi2);
   TCONS(const char *name, const char *title, const char *material, Float_t rmax1, Float_t dz
                          , Float_t phi1, Float_t phi2, Float_t rmax2 = 0);
   virtual ~TCONS();
   virtual Float_t GetRmin2() const {return fRmin2;}
   virtual Float_t GetRmax2() const {return fRmax2;}
   ClassDef(TCONS,1)  
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.