]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant3/TPaveTree.h
Dummy definition of Gftmat, Gbrelm and Gprelm added.
[u/mrichter/AliRoot.git] / TGeant3 / TPaveTree.h
1 #ifndef ROOT_TPaveTree
2 #define ROOT_TPaveTree
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //////////////////////////////////////////////////////////////////////////
9 //                                                                      //
10 // TPaveTree                                                            //
11 //                                                                      //
12 // A TPaveLabel specialized for Geant GDTREE                            //
13 //                                                                      //
14 //////////////////////////////////////////////////////////////////////////
15
16 #include <TPaveLabel.h>
17
18 class TPaveTree : public TPaveLabel
19 {
20
21 public:
22   TPaveTree();
23   TPaveTree(Coord_t x1, Coord_t y1,Coord_t x2 ,Coord_t y2, const Text_t *label);
24   TPaveTree(const TPaveTree &PaveTree);
25   virtual      ~TPaveTree();
26   void  Copy(TObject &PaveTree);
27   virtual void  DrawSpec(); // *MENU*
28   virtual void  DrawTree(Int_t levmax=15, Int_t iselt=111); // *MENU*
29   virtual void  DrawTreeParent(Int_t levmax=3, Int_t iselt=111); // *MENU*
30   virtual void  ExecuteEvent(Int_t event, Int_t px, Int_t py);
31   virtual void  SavePrimitive(ofstream &out, Option_t *option);
32   
33   ClassDef(TPaveTree,1)  //A TPaveLabel specialized for Geant GDTREE
34 };
35
36 #endif
37