]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpRowPainter.h
Renaming Delete() in DeleteSegmentations()
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpRowPainter.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: AliMpRowPainter.h,v 1.6 2005/08/26 15:43:36 ivana Exp $
6
7 /// \ingroup graphics
8 /// \class AliMpRowPainter
9 /// \brief Class for drawing a row into canvas
10 ///
11 /// Authors: David Guez, IPN Orsay
12
13 #ifndef ALI_MP_ROW_PAINTER_H
14 #define ALI_MP_ROW_PAINTER_H
15
16 #include "AliMpVPainter.h"
17
18 class AliMpRow;
19
20 class AliMpRowPainter : public AliMpVPainter
21 {
22  public:
23   AliMpRowPainter();
24   AliMpRowPainter(AliMpRow *row);
25   virtual ~AliMpRowPainter();
26   
27   virtual void DumpObject(); //-MENU-
28   virtual void Draw(Option_t *option);
29   virtual void Paint(Option_t *option);
30   virtual TVector2 GetPosition() const;
31   virtual TVector2 GetDimensions() const;
32
33  protected:
34   AliMpRowPainter(const AliMpRowPainter& right);
35   AliMpRowPainter&  operator = (const AliMpRowPainter& right);
36
37  private: 
38   AliMpRow *fRow;             // the row to paint
39   ClassDef(AliMpRowPainter,1) // Row painter
40 };
41 #endif //ALI_MP_ROW_PAINTER_H