#ifndef ROOT_TGeoTorusEditor
#define ROOT_TGeoTorusEditor
#ifndef ROOT_TGButton
#include "TGWidget.h"
#endif
#ifndef ROOT_TGeoGedFrame
#include "TGeoGedFrame.h"
#endif
class TGeoTorus;
class TGeoTabManager;
class TGTextEntry;
class TGNumberEntry;
class TGTab;
class TGComboBox;
class TGTextButton;
class TGCheckButton;
class TString;
class TGeoTorusEditor : public TGeoGedFrame {
protected:
   Double_t             fRi;                
   Double_t             fRmini;             
   Double_t             fRmaxi;             
   Double_t             fPhi1i;             
   Double_t             fDphii;             
   TString              fNamei;             
   TGeoTorus           *fShape;             
   Bool_t               fIsModified;        
   Bool_t               fIsShapeEditable;   
   TGTextEntry         *fShapeName;         
   TGNumberEntry       *fER;                
   TGNumberEntry       *fERmin;             
   TGNumberEntry       *fERmax;             
   TGNumberEntry       *fEPhi1;             
   TGNumberEntry       *fEDphi;             
   TGTextButton        *fApply;             
   TGTextButton        *fUndo;              
   TGCheckButton       *fDelayed;           
   virtual void ConnectSignals2Slots();   
   Bool_t       IsDelayed() const;   
public:
   TGeoTorusEditor(const TGWindow *p = 0,
                   Int_t width = 140, Int_t height = 30,
                   UInt_t options = kChildFrame,
                   Pixel_t back = GetDefaultFrameBackground());
   virtual ~TGeoTorusEditor();
   virtual void   SetModel(TObject *obj);
   void           DoR();
   void           DoRmin();
   void           DoRmax();
   void           DoPhi1();
   void           DoDphi();
   void           DoModified();
   void           DoName();
   void           DoApply();
   void           DoUndo();
   
   ClassDef(TGeoTorusEditor,0)   
};   
  
#endif                    
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.