]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant3/TPaveTree.h
Reimplement CurrentVolName() to avoid memory leaks
[u/mrichter/AliRoot.git] / TGeant3 / TPaveTree.h
CommitLineData
fe4da5cc 1#ifndef ROOT_TPaveTree
2#define ROOT_TPaveTree
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
fe4da5cc 7
8//////////////////////////////////////////////////////////////////////////
9// //
10// TPaveTree //
11// //
12// A TPaveLabel specialized for Geant GDTREE //
13// //
14//////////////////////////////////////////////////////////////////////////
15
16#include <TPaveLabel.h>
17
18class TPaveTree : public TPaveLabel
19{
20
21public:
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