#ifndef ROOT_TFitPanelGraph #define ROOT_TFitPanelGraph //+SEQ,CopyRight,T=NOINCLUDE. ////////////////////////////////////////////////////////////////////////// // // // TFitPanelGraph // // // // Class used to control graphs fit panel // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TFitPanel //*KEEP,TFitPanel,T=C++. #include "TFitPanel.h" //*KEND. #endif class TSlider; class TH1; class TFitPanelGraph : public TFitPanel { public: TFitPanelGraph(); TFitPanelGraph(const Text_t *name, const Text_t *title, UInt_t ww=300, UInt_t wh=400); virtual ~TFitPanelGraph(); virtual void Apply(const Text_t *action=""); virtual void SavePrimitive(ofstream &out, Option_t *option); ClassDef(TFitPanelGraph,1) //Class used to control graphs fit panel }; #endif