#ifndef ROOT_TFrame #define ROOT_TFrame //+SEQ,CopyRight,T=NOINCLUDE. ////////////////////////////////////////////////////////////////////////// // // // TFrame // // // // TFrame A TWbox for drawing histogram frames. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TWbox //*KEEP,TWbox. #include "TWbox.h" //*KEND. #endif class TFrame : public TWbox { public: TFrame(); TFrame(Coord_t x1, Coord_t y1,Coord_t x2 ,Coord_t y2); TFrame(const TFrame &frame); virtual ~TFrame(); void Copy(TObject &frame); virtual void Draw(Option_t *option=""); virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py); virtual void Paint(Option_t *option=""); virtual void Pop(); virtual void SavePrimitive(ofstream &out, Option_t *option); ClassDef(TFrame,1) //Pad graphics frame }; #endif