]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPixel.h
Basic implementation of AliMUONVNDStore containers, using AliMpExMap
[u/mrichter/AliRoot.git] / MUON / AliMUONPixel.h
CommitLineData
0df3ca52 1#ifndef ALIMUONPIXEL_H
2#define ALIMUONPIXEL_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
30178c30 6/* $Id$ */
7// Revision of includes 07/05/2004
8
692de412 9/// \ingroup rec
10/// \class AliMUONPixel
11/// \brief Pixel for MLEM method of cluster finding
12
30178c30 13#include <TObject.h>
0df3ca52 14
15class AliMUONPixel : public TObject {
16
17 public:
18
30178c30 19 AliMUONPixel();
0df3ca52 20 AliMUONPixel(Double_t xc, Double_t yc, Double_t wx, Double_t wy, Double_t charge); // constructor
21 virtual ~AliMUONPixel(); // Destructor
22
23 Double_t Charge(void) const { return fCharge; } // pixel charge
24 Double_t Size(Int_t ixy) const { return fSize[ixy]; } // pixel size
25 Double_t Coord(Int_t ixy) const { return fXY[ixy]; } // pixel coordinate
26
27 void SetCharge(Double_t Charge) { fCharge = Charge; } // set charge
28 void SetSize(Int_t ixy, Double_t Size) { fSize[ixy] = Size; } // set size
29 void SetCoord(Int_t ixy, Double_t Coord) { fXY[ixy] = Coord; }
30 void Shift(Int_t ixy, Double_t shift) { fXY[ixy] += shift; }
337c9041 31 void Print(const char* opt="") const;
0df3ca52 32 // What is necessary for sorting TObjArray's
33 Bool_t IsSortable() const { return kTRUE; }
34 Int_t Compare(const TObject* pixel) const; // "Compare" function for sorting
35
36 protected:
37
38 private:
39
40 Double_t fCharge; // pixel charge
41 Double_t fSize[2]; // pixel size
42 Double_t fXY[2]; // pixel coordinates
43
44 // Functions
45
46 ClassDef(AliMUONPixel,0) // pixel for MLEM method of cluster finding
47 };
48#endif