Logo ROOT   6.10/09
Reference Guide
TCONE.h
Go to the documentation of this file.
1 // @(#)root/g3d:$Id$
2 // Author: Nenad Buncic 18/09/95
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TCONE
13 #define ROOT_TCONE
14 
15 
16 ////////////////////////////////////////////////////////////////////////////
17 // //
18 // TCONE //
19 // //
20 // CONE is a conical tube. It has 5 parameters, the half length in z, //
21 // the inside and outside radius at the low z limit, and those at the //
22 // high z limit. //
23 // //
24 ////////////////////////////////////////////////////////////////////////////
25 
26 #include "TTUBE.h"
27 
28 class TCONE : public TTUBE {
29 
30 protected:
31  Float_t fRmin2; // inside radius at the high z limit
32  Float_t fRmax2; // outside radius at the high z limit
33 
34  virtual void SetPoints(Double_t *points) const;
35 public:
36  TCONE();
37  TCONE(const char *name, const char *title, const char *material, Float_t dz, Float_t rmin1, Float_t rmax1,
38  Float_t rmin2, Float_t rmax2);
39  TCONE(const char *name, const char *title, const char *material, Float_t dz, Float_t rmax1, Float_t rmax2 =0);
40  virtual ~TCONE();
41 
42  Float_t GetRmin2() const {return fRmin2;}
43  Float_t GetRmax2() const {return fRmax2;}
44 
45  ClassDef(TCONE,1) //CONE shape
46 };
47 
48 #endif
Float_t GetRmin2() const
Definition: TCONE.h:42
float Float_t
Definition: RtypesCore.h:53
TCONE()
CONE shape default constructor.
Definition: TCONE.cxx:38
virtual void SetPoints(Double_t *points) const
Create CONE points.
Definition: TCONE.cxx:76
Float_t GetRmax2() const
Definition: TCONE.h:43
#define ClassDef(name, id)
Definition: Rtypes.h:297
Float_t fRmin2
Definition: TCONE.h:31
point * points
Definition: X3DBuffer.c:20
virtual ~TCONE()
CONE shape default destructor.
Definition: TCONE.cxx:69
double Double_t
Definition: RtypesCore.h:55
A tube.
Definition: TTUBE.h:32
A conical tube.
Definition: TCONE.h:28
Float_t fRmax2
Definition: TCONE.h:32