// @(#)root/g3d:$Id$
// Author: Rene Brun   08/12/98

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/
// @(#)root/g3d:$Id$
// Author: Nenad Buncic   18/09/95

#ifndef ROOT_THYPE
#define ROOT_THYPE


////////////////////////////////////////////////////////////////////////////
//                                                                        //
// THYPE                                                                  //
//                                                                        //
// HYPE is a DUMMY Root shape set equal to a TTUBE                        //
//                                                                        //
////////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TTUBE
#include "TTUBE.h"
#endif

class THYPE : public TTUBE {

protected:
   Float_t fPhi;        // stereo angle

public:
   THYPE();
   THYPE(const char *name, const char *title, const char *material, Float_t rmin, Float_t rmax, Float_t dz,
         Float_t phi);
   virtual ~THYPE();

   virtual Float_t GetPhi() const {return fPhi;}

   ClassDef(THYPE,1)  //HYPE shape
};

#endif
 THYPE.h:1
 THYPE.h:2
 THYPE.h:3
 THYPE.h:4
 THYPE.h:5
 THYPE.h:6
 THYPE.h:7
 THYPE.h:8
 THYPE.h:9
 THYPE.h:10
 THYPE.h:11
 THYPE.h:12
 THYPE.h:13
 THYPE.h:14
 THYPE.h:15
 THYPE.h:16
 THYPE.h:17
 THYPE.h:18
 THYPE.h:19
 THYPE.h:20
 THYPE.h:21
 THYPE.h:22
 THYPE.h:23
 THYPE.h:24
 THYPE.h:25
 THYPE.h:26
 THYPE.h:27
 THYPE.h:28
 THYPE.h:29
 THYPE.h:30
 THYPE.h:31
 THYPE.h:32
 THYPE.h:33
 THYPE.h:34
 THYPE.h:35
 THYPE.h:36
 THYPE.h:37
 THYPE.h:38
 THYPE.h:39
 THYPE.h:40
 THYPE.h:41
 THYPE.h:42
 THYPE.h:43
 THYPE.h:44
 THYPE.h:45
 THYPE.h:46