#ifndef ROOT_TPieSlice
#define ROOT_TPieSlice
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include <TString.h>
#endif
#ifndef ROOT_TAttText
#include <TAttText.h>
#endif
#ifndef ROOT_TAttFill
#include <TAttFill.h>
#endif
#ifndef ROOT_TAttLine
#include <TAttLine.h>
#endif
#ifndef ROOT_TPie
#include <TPie.h>
#endif
class TPieSlice : public TNamed, public TAttFill, public TAttLine {
private:
Bool_t fIsActive;
protected:
TPie *fPie;
Double_t fValue;
Double_t fRadiusOffset;
public:
TPieSlice();
TPieSlice(const char *, const char *, TPie*, Double_t val=0);
virtual ~TPieSlice() {;}
virtual Int_t DistancetoPrimitive(Int_t,Int_t);
Double_t GetRadiusOffset();
Double_t GetValue();
void SavePrimitive(ostream &out, Option_t *opts="");
void SetIsActive(Bool_t is) { fIsActive = is; }
void SetRadiusOffset(Double_t);
void SetValue(Double_t);
friend class TPie;
ClassDef(TPieSlice,1)
};
#endif
Last change: Wed Jun 25 08:50:41 2008
Last generated: 2008-06-25 08:50
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.