Line data Source code
1 : #ifndef ALIMUONCONTOURPAINTER_H
2 : #define ALIMUONCONTOURPAINTER_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 AliMUONContourPainter
11 : /// \brief Class to draw AliMUONContour objects
12 : ///
13 : // Author Laurent Aphecetche, Subatech
14 :
15 : #ifndef ROOT_TObject
16 : # include "TObject.h"
17 : #endif
18 :
19 : class AliMUONContour;
20 :
21 0 : class AliMUONContourPainter : public TObject
22 : {
23 : public:
24 : AliMUONContourPainter();
25 : virtual ~AliMUONContourPainter();
26 :
27 : using TObject::Paint;
28 :
29 : static void Paint(const AliMUONContour& contour,
30 : Int_t lineColor=1, Int_t lineStyle=1,
31 : Int_t fillColor=-1, Int_t fillStyle=1001);
32 :
33 12 : ClassDef(AliMUONContourPainter,1) //
34 : };
35 :
36 : #endif
|