]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpSectorPainter.h
Syntax change propagation (Laurent)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSectorPainter.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5 // $MpId: AliMpSectorPainter.h,v 1.8 2006/05/24 13:58:13 ivana Exp $
6
7 /// \ingroup graphics
8 /// \class AliMpSectorPainter
9 /// \brief Class for drawing a sector into canvas
10 ///
11 /// \author David Guez, IPN Orsay
12
13 #ifndef ALI_MP_SECTOR_PAINTER_H
14 #define ALI_MP_SECTOR_PAINTER_H
15
16 #include "AliMpVPainter.h"
17
18 class AliMpSector;
19
20 class AliMpSectorPainter : public AliMpVPainter
21 {
22  public:
23   AliMpSectorPainter();
24   AliMpSectorPainter(AliMpSector *sector);
25   virtual ~AliMpSectorPainter();
26   
27   virtual void Draw(Option_t* option);
28   virtual void Paint(Option_t* /*option*/);
29   virtual void DumpObject(); // -MENU-
30   virtual TVector2 GetPosition() const;
31   virtual TVector2 GetDimensions() const;
32
33  private:
34   AliMpSectorPainter(const AliMpSectorPainter& right);
35   AliMpSectorPainter&  operator = (const AliMpSectorPainter& right);
36
37   AliMpSector *fSector; ///< the sector to draw
38
39   ClassDef(AliMpSectorPainter,1) // Sector painter
40 };
41 #endif //ALI_MP_SECTOR_PAINTER_H