//*-- Author : Nenad Buncic 18/09/95 #ifndef ROOT_THYPE #define ROOT_THYPE //+SEQ,CopyRight,T=NOINCLUDE. //////////////////////////////////////////////////////////////////////////// // // // THYPE // // // // HYPE is a DUMMY Root shape set equal to a TTUBE // // // //////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TTUBE //*KEEP,TTUBE. #include "TTUBE.h" //*KEND. #endif class THYPE : public TTUBE { protected: Float_t fPhi; // stereo angle public: THYPE(); THYPE(Text_t *name, Text_t *title, Text_t *material, Float_t rmin, Float_t rmax, Float_t dz, Float_t phi); virtual ~THYPE(); virtual Float_t GetPhi() {return fPhi;} ClassDef(THYPE,1) //HYPE shape }; #endif