]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONDEPainter.h
Implementing the Print
[u/mrichter/AliRoot.git] / MUON / AliMUONDEPainter.h
CommitLineData
0145e89a 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
19class AliMUONDEPainter : public AliMUONVPainter
20{
21public:
22 AliMUONDEPainter();
1ffbeb9d 23 AliMUONDEPainter(TRootIOCtor*);
0145e89a 24 AliMUONDEPainter(const AliMUONAttPainter& att, Int_t detElemId);
25 AliMUONDEPainter(const AliMUONDEPainter& rhs);
26 AliMUONDEPainter& operator=(const AliMUONDEPainter& rhs);
27 virtual ~AliMUONDEPainter();
28
29 /// Clone this object
30 virtual TObject* Clone(const char* = "") const { return new AliMUONDEPainter(*this); }
31
32 void ComputeDataRange(const AliMUONVTrackerData& data, Int_t dataIndex,
33 Double_t& dataMin, Double_t& dataMax) const;
34
35 void Copy(TObject& object) const;
36
37 /// Return the ID of this detection element
38 Int_t DetElemId() const { return fDetElemId; }
39
40 void PaintArea(const AliMUONVTrackerData& data, Int_t dataIndex,
41 Double_t min, Double_t max);
42
43 TString Describe(const AliMUONVTrackerData& data, Int_t dataIndex,
44 Double_t, Double_t);
45
46 virtual AliMUONAttPainter Validate(const AliMUONAttPainter& attributes) const;
47
10eb3d17 48 virtual void FillManuList(TObjArray& manuList) const;
49
1ffbeb9d 50 virtual Bool_t IsIncluded() const;
51
0145e89a 52private:
53 Int_t fDetElemId; ///< our id
54
55 ClassDef(AliMUONDEPainter,1) // Detection element painter
56};
57
58#endif