]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpZonePainter.h
Coding conventions corrections only
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpZonePainter.h
1 // $Id$
2 // Category: graphics
3 //
4 // Class AliMpZonePainter
5 // ----------------------
6 // Class for drawing a zone into canvas
7 //
8 // Authors: David Guez, IPN Orsay
9
10 #ifndef ALI_MP_ZONE_PAINTER_H
11 #define ALI_MP_ZONE_PAINTER_H
12
13 #include "AliMpVPainter.h"
14
15 class AliMpZone;
16
17 class AliMpZonePainter : public AliMpVPainter
18 {
19  public:
20   AliMpZonePainter();
21   AliMpZonePainter(AliMpZone *zone);
22   virtual ~AliMpZonePainter();
23   
24   virtual void DumpObject(); //*MENU*
25   virtual void Draw(Option_t *option);
26   virtual void Paint(Option_t *option);
27   // get/set methods
28
29   virtual TVector2 GetPosition() const;
30   virtual TVector2 GetDimensions() const;
31   virtual Int_t DistancetoPrimitive(Int_t x, Int_t y);
32  private: 
33   AliMpZone *fZone;            // the zone to draw
34   ClassDef(AliMpZonePainter,1) // Zone painter
35 };
36 #endif //ALI_MP_ZONE_PAINTER_H