#ifndef ROOT_TPaveTree #define ROOT_TPaveTree ////////////////////////////////////////////////////////////////////////// // // // TPaveTree // // // // A TPaveLabel specialized for Geant GDTREE // // // ////////////////////////////////////////////////////////////////////////// #include class TPaveTree : public TPaveLabel { public: TPaveTree(); TPaveTree(Coord_t x1, Coord_t y1,Coord_t x2 ,Coord_t y2, const Text_t *label); TPaveTree(const TPaveTree &PaveTree); virtual ~TPaveTree(); void Copy(TObject &PaveTree); virtual void DrawSpec(); // *MENU* virtual void DrawTree(Int_t levmax=15, Int_t iselt=111); // *MENU* virtual void DrawTreeParent(Int_t levmax=3, Int_t iselt=111); // *MENU* virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py); virtual void SavePrimitive(ofstream &out, Option_t *option); ClassDef(TPaveTree,1) //A TPaveLabel specialized for Geant GDTREE }; #endif