00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ROOT_TCrown
00013 #define ROOT_TCrown
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef ROOT_TEllipse
00026 #include "TEllipse.h"
00027 #endif
00028
00029
00030 class TCrown : public TEllipse {
00031
00032 public:
00033 TCrown();
00034 TCrown(Double_t x1, Double_t y1,Double_t radin, Double_t radout,
00035 Double_t phimin=0,Double_t phimax=360);
00036 TCrown(const TCrown &crown);
00037 virtual ~TCrown();
00038 void Copy(TObject &crown) const;
00039 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
00040 virtual void DrawCrown(Double_t x1, Double_t y1, Double_t radin, Double_t radout,
00041 Double_t phimin=0, Double_t phimax=360, Option_t *option="");
00042 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
00043 virtual void Paint(Option_t *option="");
00044 virtual void SavePrimitive(ostream &out, Option_t *option = "");
00045
00046 ClassDef(TCrown,1)
00047 };
00048
00049 #endif