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