]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/EveDet/AliEveMUONChamber.h
Updates to the FMD EVE display class
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveMUONChamber.h
CommitLineData
d810d0de 1// $Id$
fafff680 2// Main authors: Matevz Tadel & Alja Mrak-Tadel & Bogdan Vulpescu: 2006, 2007
d810d0de 3
4/**************************************************************************
5 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
51346b82 7 * full copyright notice. *
d810d0de 8 **************************************************************************/
a15e6d7d 9#ifndef AliEveMUONChamber_H
10#define AliEveMUONChamber_H
3626c858 11
84aff7a4 12#include <TEveElement.h>
13#include <TEveQuadSet.h>
14#include <TEvePointSet.h>
3626c858 15
16#include <TNamed.h>
17#include <TAtt3D.h>
18#include <TAttBBox.h>
19
3626c858 20
d810d0de 21class AliEveMUONData;
22class AliEveMUONChamberData;
23class AliEveMUONChamberEditor;
24class AliEveMUONChamberGL;
3626c858 25
d810d0de 26class AliEveMUONChamber : public TEveElement,
fd31e9de 27 public TNamed,
28 public TAtt3D,
29 public TAttBBox
3626c858 30{
d810d0de 31 friend class AliEveMUONChamberGL;
32 friend class AliEveMUONChamberEditor;
3626c858 33
4b456ebb 34public:
35 AliEveMUONChamber(Int_t id, const Text_t* n = "AliEveMUONChamber", const Text_t* t = 0);
36 virtual ~AliEveMUONChamber();
37
38 virtual void ComputeBBox();
39 virtual void Paint(Option_t* option = "");
40 virtual UInt_t IncRTS() { return ++fRTS; };
41 virtual Bool_t CanEditMainColor() const { return kTRUE; }
42
43 void SetDataSource(AliEveMUONData *data);
44 void SetChamberID(Int_t id);
45 void SetFrameColor(Color_t col) { fFrameColor = col; IncRTS(); };
46 AliEveMUONData* GetData() const { return fMUONData; };
47 AliEveMUONChamberData* GetChamberData() const;
48 Int_t GetID() const { return fChamberID; };
49 void SetThreshold(Short_t t);
50 void SetMaxVal(Int_t mv);
51 void SetClusterSize(Int_t size);
52 void SetHitSize(Int_t size);
3626c858 53
fd31e9de 54protected:
3626c858 55 void UpdateQuads();
56
fd31e9de 57 AliEveMUONData *fMUONData; // data for the current event
3626c858 58 Color_t fFrameColor; // main coloring
59 UInt_t fRTS; //! Rendering Time Stamp
60 Int_t fChamberID; // number of the chamber, 0 to 13
84aff7a4 61 TEveQuadSet fQuadSet1; // 1st cathode plane digits
62 TEveQuadSet fQuadSet2; // 2nd cathode plane digits
63 TEvePointSet fPointSet1; // reconstructed points (1st cathode)
64 TEvePointSet fPointSet2; // simulation hits
3626c858 65 Short_t fThreshold; // digit amplitude threshold
66 Int_t fMaxVal; // digit amplitude maximum value
eadce74d 67 Int_t fClusterSize; // cluster point size
68 Int_t fHitSize; // hit point size
3626c858 69
70 void SetupColor(Int_t val, UChar_t* pix) const;
71
fd31e9de 72 mutable UChar_t *fColorArray; // color-cache
73
eadce74d 74 void ClearColorArray();
75 void SetupColorArray() const;
3626c858 76 UChar_t* ColorFromArray(Int_t val) const;
77 void ColorFromArray(Int_t val, UChar_t* pix) const;
78 Int_t ColorIndex(Int_t val) const;
79
4b456ebb 80private:
81 AliEveMUONChamber(const AliEveMUONChamber&); // Not implemented
82 AliEveMUONChamber& operator=(const AliEveMUONChamber&); // Not implemented
3626c858 83
4b456ebb 84 ClassDef(AliEveMUONChamber, 0); // Visualisation of the MUON chambers
85};
3626c858 86
3626c858 87
4b456ebb 88// --- Inlines ---
3626c858 89
d810d0de 90inline UChar_t* AliEveMUONChamber::ColorFromArray(Int_t val) const
3626c858 91{
92 if(val < fThreshold) val = fThreshold;
93 if(val > fMaxVal) val = fMaxVal;
94 return fColorArray + 4 * (val - fThreshold);
95}
96
d810d0de 97inline void AliEveMUONChamber::ColorFromArray(Int_t val, UChar_t* pix) const
3626c858 98{
99 UChar_t* c = ColorFromArray(val);
100 pix[0] = c[0]; pix[1] = c[1]; pix[2] = c[2]; pix[3] = c[3];
101}
102
3626c858 103#endif