]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpRowPainter.h
ENDIF replaced by endif (compilation problems)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpRowPainter.h
CommitLineData
5f91c9e8 1// $Id$
2// Category: graphics
3//
4// Class AliMpRowPainter
5// ---------------------
6// Class for drawing a row into canvas
7//
8// Authors: David Guez, IPN Orsay
9
10#ifndef ALI_MP_ROW_PAINTER_H
11#define ALI_MP_ROW_PAINTER_H
12
13#include "AliMpVPainter.h"
14
15class AliMpRow;
16
17class AliMpRowPainter : public AliMpVPainter
18{
19 public:
20 AliMpRowPainter();
21 AliMpRowPainter(AliMpRow *row);
2998a151 22 virtual ~AliMpRowPainter();
23
24 virtual void DumpObject(); //-MENU-
5f91c9e8 25 virtual void Draw(Option_t *option);
26 virtual void Paint(Option_t *option);
27 virtual TVector2 GetPosition() const;
28 virtual TVector2 GetDimensions() const;
2998a151 29
5f91c9e8 30 private:
31 AliMpRow *fRow; // the row to paint
32 ClassDef(AliMpRowPainter,1) // Row painter
33};
34#endif //ALI_MP_ROW_PAINTER_H