Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TPieSlice.h
Go to the documentation of this file.
1 /*************************************************************************
2  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
3  * All rights reserved. *
4  * *
5  * For the licensing terms see $ROOTSYS/LICENSE. *
6  * For the list of contributors see $ROOTSYS/README/CREDITS. *
7  *************************************************************************/
8 
9 #ifndef ROOT_TPieSlice
10 #define ROOT_TPieSlice
11 #include "TObject.h"
12 #include <TString.h>
13 #include <TAttText.h>
14 #include <TAttFill.h>
15 #include <TAttLine.h>
16 #include <TPie.h>
17 
18 class TPieSlice : public TNamed, public TAttFill, public TAttLine {
19 
20 private:
21  Bool_t fIsActive; ///<! True if is the slice under the mouse pointer
22 
23 protected:
24  TPie *fPie; ///< The TPie object that contain this slice
25  Double_t fValue; ///< value value of this slice
26  Double_t fRadiusOffset; ///< offset from the center of the pie
27 
28 public:
29  TPieSlice();
30  TPieSlice(const char *, const char *, TPie*, Double_t val=0);
31  virtual ~TPieSlice() {;}
32 
33  virtual Int_t DistancetoPrimitive(Int_t,Int_t);
34  Double_t GetRadiusOffset();
35  Double_t GetValue();
36  void SavePrimitive(std::ostream &out, Option_t *opts="");
37  void SetIsActive(Bool_t is) { fIsActive = is; }
38  void SetRadiusOffset(Double_t); // *MENU*
39  void SetValue(Double_t); // *MENU*
40 
41  friend class TPie;
42 
43  ClassDef(TPieSlice,1) // Slice of a pie chart graphics class
44 };
45 
46 #endif