]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSclustererV2.h
Shortcut methods in AliRunLoader. AliHits2SDigits.C and AliSDigits2Digits.C adapted...
[u/mrichter/AliRoot.git] / ITS / AliITSclustererV2.h
CommitLineData
7f4044f0 1#ifndef ALIITSCLUSTERERV2_H
2#define ALIITSCLUSTERERV2_H
3//--------------------------------------------------------------
4// ITS clusterer V2
5//
6// This can be a "wrapping" for the V1 cluster finding classes
7// if compiled with uncommented "#define V1" line
8// in the AliITSclustererV2.cxx file.
9//
10// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
11//--------------------------------------------------------------
c630aafd 12#include <TObject.h>
7f4044f0 13
14class TFile;
c630aafd 15class TTree;
7f4044f0 16class TClonesArray;
17
18class AliITSgeom;
19class AliITSclusterV2;
c391f9d9 20class AliITSRawStream;
7f4044f0 21
c630aafd 22class AliITSclustererV2 : public TObject {
7f4044f0 23public:
24 AliITSclustererV2(){ fEvent=0; fI=0; }
25 AliITSclustererV2(const AliITSgeom *geom);
26
27 void SetEvent(Int_t event) { fEvent=event; }
c630aafd 28 Int_t Digits2Clusters(TTree *in, TTree *out);
c391f9d9 29 void Digits2Clusters(TFile *out);
7f4044f0 30 void FindClustersSPD(const TClonesArray *dig, TClonesArray *cls);
c391f9d9 31 void FindClustersSPD(AliITSRawStream* input, TClonesArray** clusters);
7f4044f0 32 void FindClustersSDD(const TClonesArray *dig, TClonesArray *cls);
c391f9d9 33 void FindClustersSDD(AliITSRawStream* input, TClonesArray** clusters);
7f4044f0 34 void FindClustersSSD(const TClonesArray *dig, TClonesArray *cls);
c391f9d9 35 void FindClustersSSD(AliITSRawStream* input, TClonesArray** clusters);
7f4044f0 36
1cca57bf 37 void RecPoints2Clusters(const TClonesArray *p, Int_t idx, TClonesArray *c);
c630aafd 38 Int_t Hits2Clusters(TTree *in, TTree *out);
7f4044f0 39
40private:
41 class Ali1Dcluster {
42 private:
43 Float_t fY; //cluster position
44 Float_t fQ; //cluster charge
45 Int_t fNd; //number of digits
46 Int_t fLab[3]; //track label
47 public:
48 void SetY(Float_t y) {fY=y;}
49 void SetQ(Float_t q) {fQ=q;}
50 void SetNd(Int_t n) {fNd=n;}
51 void SetLabels(Int_t *lab) {fLab[0]=lab[0];fLab[1]=lab[1];fLab[2]=lab[2];}
52 Float_t GetY() const {return fY;}
53 Float_t GetQ() const {return fQ;}
54 Int_t GetNd()const {return fNd;}
55 Int_t GetLabel(Int_t lab) const { return fLab[lab]; }
56 };
57 class AliBin {
58 public:
59 AliBin() {fIndex=0; fQ=0; fMask=0xFFFFFFFE;}
60 void SetIndex(UInt_t idx) {fIndex=idx;}
61 void SetQ(UShort_t q) {fQ=q;}
62 void SetMask(UInt_t m) {fMask=m;}
63
64 void Use() {fMask&=0xFFFFFFFE;}
65 Bool_t IsNotUsed() const {return (fMask&1);}
66 Bool_t IsUsed() const {return !(IsNotUsed());}
67
68 UInt_t GetIndex() const {return fIndex;}
69 UShort_t GetQ() const {return fQ;}
70 UInt_t GetMask() const {return fMask;}
71 private:
72 UInt_t fIndex; //digit index
73 UInt_t fMask; //peak mask
74 UShort_t fQ; //signal
75 };
76 static Bool_t IsMaximum(Int_t k, Int_t max, const AliBin *bins);
77 static void FindPeaks(Int_t k,Int_t m,AliBin*b,Int_t*idx,UInt_t*msk,Int_t&n);
78 static void MarkPeak(Int_t k, Int_t max, AliBin *bins, UInt_t m);
79 static void MakeCluster(Int_t k,Int_t max,AliBin *bins,UInt_t m,
80 AliITSclusterV2 &c);
c391f9d9 81 void FindClustersSDD(AliBin* bins[2], Int_t nMaxBin, Int_t nMaxZ,
82 const TClonesArray *dig, TClonesArray *cls);
83 void FindClustersSSD(Ali1Dcluster* neg, Int_t nn,
84 Ali1Dcluster* pos, Int_t np,
85 TClonesArray *clusters);
86
7f4044f0 87
88 static void FindCluster(Int_t k,Int_t maxz,AliBin *bins,Int_t &n,Int_t *idx);
89
90private:
91 Int_t fEvent; //event number
92
93 Int_t fI; //index of the current subdetector
94 Float_t fYshift[2200]; //y-shifts of detector local coor. systems
95 Float_t fZshift[2200]; //z-shifts of detector local coor. systems
96 Int_t fNdet[2200]; //detector index
c391f9d9 97 Int_t fNModules; // total number of modules
7f4044f0 98
99 //SPD related values:
100 Int_t fLastSPD1; //index of the last SPD1 detector
101 Int_t fNySPD; //number of pixels in Y
102 Int_t fNzSPD; //number of pixels in Z
103 Float_t fYpitchSPD; //pixel size in Y
104 Float_t fZ1pitchSPD,fZ2pitchSPD; //pixel sizes in Z
105 Float_t fHwSPD; //half width of the SPD detector
106 Float_t fHlSPD; //half length of the SPD detector
107 Float_t fYSPD[260]; //Y-coordinates of pixel centers
108 Float_t fZSPD[170]; //Z-coordinates of pixel centers
109
110 //SDD related values:
111 Int_t fNySDD; //number of "pixels" in Y
112 Int_t fNzSDD; //number of "pixels" in Z
113 Float_t fYpitchSDD; //"pixel size" in Y (drift direction)
114 Float_t fZpitchSDD; //"pixel sizes" in Z
115 Float_t fHwSDD; //half width of the SDD detector
116 Float_t fHlSDD; //half length of the SDD detector
117 Float_t fYoffSDD; //some delay in the drift channel
118
119 //SSD related values:
120 Int_t fLastSSD1; //index of the last SSD1 detector
121 Float_t fYpitchSSD; //strip pitch (cm)
122 Float_t fHwSSD; //half-width of an SSD detector (cm)
123 Float_t fHlSSD; //half-length of an SSD detector (cm)
124 Float_t fTanP; //tangent of the stereo angle on the P side
125 Float_t fTanN; //tangent of the stereo angle on the N side
126
127 ClassDef(AliITSclustererV2,1) // ITS cluster finder V2
128};
129
130#endif