]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONDEPainter.h
Copy of event header for delta-AOD on demand.
[u/mrichter/AliRoot.git] / MUON / AliMUONDEPainter.h
1 #ifndef ALIMUONDEPAINTER_H
2 #define ALIMUONDEPAINTER_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 AliMUONDEPainter
11 /// \brief A painter for one detection element
12 /// 
13 // Author Laurent Aphecetche, Subatech
14
15 #ifndef ALIMUONVPAINTER_H
16 #  include "AliMUONVPainter.h"
17 #endif
18
19 class AliMUONDEPainter : public AliMUONVPainter
20 {
21 public:
22   AliMUONDEPainter();
23   AliMUONDEPainter(const AliMUONAttPainter& att, Int_t detElemId);
24   AliMUONDEPainter(const AliMUONDEPainter& rhs);
25   AliMUONDEPainter& operator=(const AliMUONDEPainter& rhs);
26   virtual ~AliMUONDEPainter();
27   
28   /// Clone this object
29   virtual TObject* Clone(const char* = "") const { return new AliMUONDEPainter(*this); }
30
31   void ComputeDataRange(const AliMUONVTrackerData& data, Int_t dataIndex, 
32                         Double_t& dataMin, Double_t& dataMax) const;
33     
34   void Copy(TObject& object) const;
35   
36   /// Return the ID of this detection element
37   Int_t DetElemId() const { return fDetElemId; }
38   
39   void PaintArea(const AliMUONVTrackerData& data, Int_t dataIndex,
40                  Double_t min, Double_t max);
41     
42   TString Describe(const AliMUONVTrackerData& data, Int_t dataIndex,
43                    Double_t, Double_t);
44     
45   virtual AliMUONAttPainter Validate(const AliMUONAttPainter& attributes) const;
46
47   virtual void FillManuList(TObjArray& manuList) const;
48   
49 private:
50   Int_t fDetElemId; ///< our id
51
52   ClassDef(AliMUONDEPainter,1) // Detection element painter
53 };
54
55 #endif