]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant3/TPaveTree.h
Minor improvements on the code
[u/mrichter/AliRoot.git] / TGeant3 / TPaveTree.h
1 #ifndef TPAVETREE_H
2 #define TPAVETREE_H
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   virtual      ~TPaveTree();
25   virtual void  DrawSpec(); // *MENU*
26   virtual void  DrawTree(Int_t levmax=15, Int_t iselt=111); // *MENU*
27   virtual void  DrawTreeParent(Int_t levmax=3, Int_t iselt=111); // *MENU*
28   virtual void  ExecuteEvent(Int_t event, Int_t px, Int_t py);
29   virtual void  SavePrimitive(ofstream &out, Option_t *option);
30
31 private:  
32   TPaveTree(const TPaveTree &PaveTree) {}
33
34   ClassDef(TPaveTree,1)  //A TPaveLabel specialized for Geant GDTREE
35 };
36
37 #endif
38