#ifndef ROOT_TGraphPolar
#define ROOT_TGraphPolar
#ifndef ROOT_TGraphErrors
#include "TGraphErrors.h"
#endif
#ifndef ROOT_Riosfwd
#include "Riosfwd.h"
#endif
#ifndef ROOT_TAttText
#include "TAttText.h"
#endif
#ifndef ROOT_TAttLine
#include "TAttLine.h"
#endif
#include "TGraphPolargram.h"
class TGraphPolar: public TGraphErrors {
private:
   Bool_t fOptionAxis;          
protected:
   TGraphPolargram* fPolargram; 
   Double_t* fXpol;             
   Double_t* fYpol;             
public:
   TGraphPolar();
   TGraphPolar(Int_t n, const Double_t* x=0, const Double_t* y=0,
                        const Double_t* ex=0, const Double_t* ey=0);
   virtual ~TGraphPolar();
   TGraphPolargram *GetPolargram() {return fPolargram;};
   void             Draw(Option_t* options = "");
   Bool_t           GetOptionAxis() {return fOptionAxis;};
   void             SetMaxRadial(Double_t maximum = 1); 
   void             SetMinRadial(Double_t minimum = 0); 
   void             SetMaximum(Double_t maximum = 1) {SetMaxRadial(maximum);}
   void             SetMinimum(Double_t minimum = 0) {SetMinRadial(minimum);}
   void             SetMaxPolar(Double_t maximum = 6.28318530717958623); 
   void             SetMinPolar(Double_t minimum = 0); 
   void             SetOptionAxis(Bool_t opt) {fOptionAxis = opt;};
   void             SetPolargram(TGraphPolargram *p) {fPolargram = p;};
   Double_t        *GetXpol();
   Double_t        *GetYpol();
   ClassDef(TGraphPolar,1); 
};
#endif
Last change: Tue Jul  8 16:57:15 2008
Last generated: 2008-07-08 16:57
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.