Logo ROOT   6.10/09
Reference Guide
TPCON.h
Go to the documentation of this file.
1 // @(#)root/g3d:$Id$
2 // Author: Nenad Buncic 29/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_TPCON
13 #define ROOT_TPCON
14 
15 
16 ////////////////////////////////////////////////////////////////////////////
17 // //
18 // TPCON //
19 // //
20 // PCON is a polycone. It has at least 9 parameters, the lower phi limit, //
21 // the range in phi, the number (at least two) of z planes where the //
22 // radius is changing for each z boundary and the z coordinate, the //
23 // minimum radius and the maximum radius. //
24 // //
25 ////////////////////////////////////////////////////////////////////////////
26 
27 #include "TShape.h"
28 
29 
30 const Int_t kDiv = 20; //default number of divisions
31 
32 
33 class TPCON : public TShape {
34 protected:
35  // Internal cache
36  mutable Double_t *fSiTab; //! Table of sin(fPhi1) .... sin(fPhil+fDphi1)
37  mutable Double_t *fCoTab; //! Table of cos(fPhi1) .... cos(fPhil+fDphi1)
38 
39  Float_t fPhi1; // lower phi limit
40  Float_t fDphi1; // range in phi
41  Int_t fNdiv; // number of divisions
42  Int_t fNz; // number of z segments
43  Float_t *fRmin; //[fNz] pointer to array of inside radiuses
44  Float_t *fRmax; //[fNz] pointer to array of outside radiuses
45  Float_t *fDz; //[fNz] pointer to array of half lengths in z
46 
47  TPCON(const TPCON&);
48  TPCON& operator=(const TPCON&);
49 
50  virtual void MakeTableOfCoSin() const; // Create the table of the fSiTab; fCoTab
51  virtual void FillTableOfCoSin(Double_t phi, Double_t angstep,Int_t n) const; // Fill the table of cosin
52  virtual void SetPoints(Double_t *points) const;
53  virtual Bool_t SetSegsAndPols(TBuffer3D & buffer) const;
54 
55 public:
56  TPCON();
57  TPCON(const char *name, const char *title, const char *material, Float_t phi1, Float_t dphi1, Int_t nz);
58  virtual ~TPCON();
59 
60  virtual void DefineSection(Int_t secNum, Float_t z, Float_t rmin, Float_t rmax);
61  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
62  virtual const TBuffer3D &GetBuffer3D(Int_t reqSections) const;
63  virtual Int_t GetNumberOfDivisions () const {if (fNdiv) return fNdiv; else return kDiv;}
64  virtual Float_t GetPhi1() const {return fPhi1;}
65  virtual Float_t GetDhi1() const {return fDphi1;}
66  virtual Int_t GetNz() const {return fNz;}
67  virtual Float_t *GetRmin() const {return fRmin;}
68  virtual Float_t *GetRmax() const {return fRmax;}
69  virtual Float_t *GetDz() const {return fDz;}
70  virtual Int_t GetNdiv() const {return fNdiv;}
71  virtual void SetNumberOfDivisions (Int_t p);
72  virtual void Sizeof3D() const;
73 
74  ClassDef(TPCON,2) //PCON shape
75 };
76 
77 #endif
virtual void SetPoints(Double_t *points) const
Create PCON points.
Definition: TPCON.cxx:224
virtual void MakeTableOfCoSin() const
Make table of cosine and sine.
Definition: TPCON.cxx:130
virtual ~TPCON()
PCON shape default destructor.
Definition: TPCON.cxx:154
Float_t fPhi1
Table of cos(fPhi1) .... cos(fPhil+fDphi1)
Definition: TPCON.h:39
float Float_t
Definition: RtypesCore.h:53
virtual void DefineSection(Int_t secNum, Float_t z, Float_t rmin, Float_t rmax)
Defines section secNum of the polycone.
Definition: TPCON.cxx:176
Float_t * fRmin
Definition: TPCON.h:43
virtual Int_t GetNdiv() const
Definition: TPCON.h:70
Float_t fDphi1
Definition: TPCON.h:40
TPCON()
PCON shape default constructor.
Definition: TPCON.cxx:49
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:297
virtual Float_t * GetRmax() const
Definition: TPCON.h:68
TPCON & operator=(const TPCON &)
assignment operator
Definition: TPCON.cxx:110
Int_t fNdiv
Definition: TPCON.h:41
const Int_t kDiv
Definition: TPCON.h:30
point * points
Definition: X3DBuffer.c:20
Int_t fNz
Definition: TPCON.h:42
This is the base class for all geometry shapes.
Definition: TShape.h:35
virtual Bool_t SetSegsAndPols(TBuffer3D &buffer) const
Set segments and polygons.
Definition: TPCON.cxx:337
virtual void Sizeof3D() const
Return total X3D needed by TNode::ls (when called with option "x")
Definition: TPCON.cxx:251
virtual Int_t GetNz() const
Definition: TPCON.h:66
Double_t * fCoTab
Table of sin(fPhi1) .... sin(fPhil+fDphi1)
Definition: TPCON.h:37
virtual const TBuffer3D & GetBuffer3D(Int_t reqSections) const
Get buffer 3d.
Definition: TPCON.cxx:297
Generic 3D primitive description class.
Definition: TBuffer3D.h:17
virtual Float_t GetPhi1() const
Definition: TPCON.h:64
A polycone.
Definition: TPCON.h:33
virtual void SetNumberOfDivisions(Int_t p)
Set number of divisions.
Definition: TPCON.cxx:214
Double_t * fSiTab
Definition: TPCON.h:36
double Double_t
Definition: RtypesCore.h:55
virtual Float_t GetDhi1() const
Definition: TPCON.h:65
virtual Float_t * GetDz() const
Definition: TPCON.h:69
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a PCON.
Definition: TPCON.cxx:191
virtual Int_t GetNumberOfDivisions() const
Definition: TPCON.h:63
you should not use this method at all Int_t Int_t z
Definition: TRolke.cxx:630
Float_t * fDz
Definition: TPCON.h:45
virtual Float_t * GetRmin() const
Definition: TPCON.h:67
virtual void FillTableOfCoSin(Double_t phi, Double_t angstep, Int_t n) const
Fill the table of cos and sin to prepare drawing.
Definition: TPCON.cxx:201
const Int_t n
Definition: legend1.C:16
Float_t * fRmax
Definition: TPCON.h:44