]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDcluster.h
Adding missing include
[u/mrichter/AliRoot.git] / TRD / AliTRDcluster.h
CommitLineData
46d29e70 1#ifndef ALITRDCLUSTER_H
2#define ALITRDCLUSTER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
6d50f529 8///////////////////////////////////////////////////////////////////////////////
9// //
10// TRD cluster //
11// //
12///////////////////////////////////////////////////////////////////////////////
5443e65e 13
5843e420 14#include "AliCluster.h"
46d29e70 15
5443e65e 16class AliTRDcluster : public AliCluster {
5843e420 17public:
5843e420 18 enum ETRDclusterStatus {
19 kInChamber = BIT(16) // Out of fiducial volume of chamber (signal tails)
20 ,kFivePad = BIT(17) // Deconvoluted clusters
b72f4eaf 21 ,kLUT = BIT(18)
22 ,kGAUS = BIT(19)
23 ,kCOG = BIT(20)
5843e420 24 };
25 enum ETRDclusterMask {
26 kMaskedLeft = 0
27 ,kMaskedCenter = 1
28 ,kMaskedRight = 2
f5375dcb 29 };
0e09df31 30
bdb68f8c 31 AliTRDcluster();
b72f4eaf 32 AliTRDcluster(Int_t det, UChar_t col, UChar_t row, UChar_t time, const Short_t *sig, UShort_t volid);
203967fc 33 AliTRDcluster(
34 Int_t det, Float_t q, Float_t *pos, Float_t *sig,
35 Int_t *tracks, Char_t npads, Short_t *signals,
36 UChar_t col, UChar_t row, UChar_t time,
37 Char_t timebin, Float_t center, UShort_t volid);
a2b90f83 38 AliTRDcluster(const AliTRDcluster &c);
acc49af9 39 virtual ~AliTRDcluster() {};
a2b90f83 40
6d50f529 41 virtual void AddTrackIndex(Int_t *i);
203967fc 42 void Clear(Option_t *o="");
43
44 Bool_t IsEqual(const TObject *otherCluster) const;
45 Bool_t IsInChamber() const { return TestBit(kInChamber); }
46 Bool_t IsMasked() const { return fClusterMasking ? kTRUE : kFALSE; }
de777ccb 47 Bool_t IsShared() const { return IsClusterShared();}
48 Bool_t IsUsed() const { return IsClusterUsed(); }
5843e420 49 Bool_t IsFivePad() const { return TestBit(kFivePad);}
b72f4eaf 50 inline Bool_t IsRPhiMethod(ETRDclusterStatus m) const;
a2b90f83 51
203967fc 52 UChar_t GetPadMaskedPosition() const { return fClusterMasking & 7; }
53 UChar_t GetPadMaskedStatus() const { return fClusterMasking >> 3; }
54 Int_t GetDetector() const { return fDetector; }
55 Int_t GetLocalTimeBin() const { return fLocalTimeBin; }
56 Float_t GetQ() const { return fQ; }
57 Int_t GetNPads() const { return fNPads; }
58 Float_t GetCenter() const { return fCenter; }
59 Int_t GetPadCol() const { return fPadCol; }
60 Int_t GetPadRow() const { return fPadRow; }
61 Int_t GetPadTime() const { return fPadTime; }
62 Short_t *GetSignals() { return fSignals; }
63 Float_t GetSumS() const;
b72f4eaf 64 static Double_t GetSX(Int_t tb, Double_t z=-1);
65 static Double_t GetSY(Int_t tb, Double_t z=-1);
66 static Double_t GetXcorr(Int_t tb, Double_t z=-1);
67 static Double_t GetYcorr(Int_t ly, Float_t y);
834ac2c9 68 Float_t GetXloc(Double_t t0, Double_t vd, Double_t *const q=0x0, Double_t *const xq=0x0, Double_t z = 0.2);
b72f4eaf 69 Float_t GetYloc(Double_t y0, Double_t s2, Double_t W, Double_t *const y1=0x0, Double_t *const y2=0x0);
5843e420 70
203967fc 71 void Print(Option_t* o="") const;
f5375dcb 72
203967fc 73 void SetLocalTimeBin(Char_t t) { fLocalTimeBin = t; }
74 void SetInChamber(Bool_t in = kTRUE) { SetBit(kInChamber,in); }
b72f4eaf 75 void SetNPads(Int_t n) { fNPads = n; }
203967fc 76 void SetPadMaskedPosition(UChar_t position);
77 void SetPadMaskedStatus(UChar_t status);
bee2b41e 78 void SetPadCol(UChar_t inPadCol){ fPadCol = inPadCol;}
79 void SetPadRow(UChar_t inPadRow){ fPadRow = inPadRow;}
80 void SetPadTime(UChar_t inPadTime){ fPadTime = inPadTime;}
b72f4eaf 81 inline void SetRPhiMethod(ETRDclusterStatus m);
bee2b41e 82 void SetDetector(Short_t inDetector){ fDetector = inDetector;}
83 void SetQ(Float_t inQ){ fQ = inQ;}
84 void SetClusterMasking(UChar_t inClusterMasking){ fClusterMasking = inClusterMasking;}
de777ccb 85 void SetShared(Bool_t sh = kTRUE) { SetBit(AliCluster::kShared,sh); }
86 void Use(Int_t = 0) { SetBit(AliCluster::kUsed, kTRUE); }
5843e420 87 void SetFivePad(Bool_t b = kTRUE) { SetBit(kFivePad,b);}
af26ce80 88
5843e420 89protected:
90 UChar_t fPadCol; // Central pad number in column direction
91 UChar_t fPadRow; // Central pad number in row direction
92 UChar_t fPadTime; // Uncalibrated time bin number
93 Char_t fLocalTimeBin; // T0-calibrated time bin number
94 UChar_t fNPads; // Number of pads in cluster
95 UChar_t fClusterMasking; // Bit field containing cluster status information;
96 Short_t fDetector; // TRD detector number
97 Short_t fSignals[7]; // Signals in the cluster
98 Float_t fQ; // Amplitude
99 Float_t fCenter; // Center of the cluster relative to the pad
0e09df31 100
b72f4eaf 101private:
102 Float_t GetDYcog(Double_t *const y1=0x0, Double_t *const y2=0x0);
103 Float_t GetDYlut(Double_t *const y1=0x0, Double_t *const y2=0x0);
104 Float_t GetDYgauss(Double_t sw, Double_t *const y1=0x0, Double_t *const y2=0x0);
105 static void FillLUT();
106
107 static const Int_t fgkNlut; //! Number of bins of the LUT
108 static Double_t *fgLUT; //! The lookup table
109
110 ClassDef(AliTRDcluster, 7) // Cluster for the TRD
46d29e70 111};
b72f4eaf 112
113//________________________________________________
114inline Bool_t AliTRDcluster::IsRPhiMethod(ETRDclusterStatus m) const
115{
116 if(m==kLUT && TestBit(kLUT)) return kTRUE;
117 else if(m==kGAUS && TestBit(kGAUS)) return kTRUE;
118 else if(m==kCOG && (!TestBit(kLUT)&&!TestBit(kGAUS))) return kTRUE;
119
120 return kFALSE;
121}
122
123//________________________________________________
124inline void AliTRDcluster::SetRPhiMethod(ETRDclusterStatus m)
125{
a8d5c885 126 SetBit(kCOG,0);SetBit(kLUT,0);SetBit(kGAUS,0);
b72f4eaf 127 switch(m){
128 case kCOG: SetBit(kCOG); break;
129 case kLUT: SetBit(kLUT); break;
130 case kGAUS: SetBit(kGAUS); break;
a8d5c885 131 default: SetBit(kLUT); break;
b72f4eaf 132 }
133}
134
46d29e70 135#endif