]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant3/TPaveTree.h
New Clusterization by IHEP (yuri)
[u/mrichter/AliRoot.git] / TGeant3 / TPaveTree.h
CommitLineData
ef42d733 1#ifndef TPAVETREE_H
2#define TPAVETREE_H
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);
fe4da5cc 24 virtual ~TPaveTree();
fe4da5cc 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);
ef42d733 30
31private:
32 TPaveTree(const TPaveTree &PaveTree) {}
33
fe4da5cc 34 ClassDef(TPaveTree,1) //A TPaveLabel specialized for Geant GDTREE
35};
36
37#endif
38