]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpIteratorPainter.h
New painter for a group of pads defined by an iterator
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpIteratorPainter.h
1 #ifndef ALIMPITERATORPAINTER_H
2 #define ALIMPITERATORPAINTER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice                               */
6
7 // $Id$
8
9 /// \ingroup graphics
10 /// \class AliMpIteratorPainter
11 /// \brief Painter for a group of pads defined by an iterator
12 /// 
13 /// Author Laurent Aphecetche
14
15 #ifndef ALI_MP_V_PAINTER_H
16 #  include "AliMpVPainter.h"
17 #endif
18
19 #ifndef ROOT_TVector2
20 #  include "TVector2.h"
21 #endif
22
23 class TObjArray;
24 class AliMpVPadIterator;
25
26 class AliMpIteratorPainter : public AliMpVPainter
27 {
28 public:
29   AliMpIteratorPainter(AliMpVPadIterator* it);
30   virtual ~AliMpIteratorPainter();
31   
32   void Draw(Option_t* option);
33   void Paint(Option_t* option);
34   
35   TVector2 GetDimensions() const { return fDimensions; }
36   TVector2 GetPosition() const { return fPosition; }
37
38 private:
39   AliMpIteratorPainter();
40   AliMpIteratorPainter(const AliMpIteratorPainter&);
41   AliMpIteratorPainter& operator=(const AliMpIteratorPainter&);
42   
43   TObjArray* fPads; //!< pads of the iterator
44   TVector2 fPosition; //!< position
45   TVector2 fDimensions; //!< dimension
46   
47   ClassDef(AliMpIteratorPainter,1) // Painter for a group of pads
48 };
49
50 #endif