]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSClusterFinderV2SDD.cxx
bug fix
[u/mrichter/AliRoot.git] / ITS / AliITSClusterFinderV2SDD.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$*/
17
18 ////////////////////////////////////////////////////////////////////////////
19 //            Implementation of the ITS clusterer V2 class                //
20 //                                                                        //
21 //          Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch            //
22 //                                                                        //
23 ///////////////////////////////////////////////////////////////////////////
24
25
26
27 #include <TClonesArray.h>
28 #include <TBits.h>
29 #include "AliITSClusterFinderV2SDD.h"
30 #include "AliITSRecPoint.h"
31 #include "AliITSRecPointContainer.h"
32 #include "AliITSDetTypeRec.h"
33 #include "AliRawReader.h"
34 #include "AliITSRawStreamSDD.h"
35 #include "AliITSRawStreamSDDCompressed.h"
36 #include "AliITSCalibrationSDD.h"
37 #include "AliITSresponseSDD.h"
38 #include "AliITSDetTypeRec.h"
39 #include "AliITSReconstructor.h"
40 #include "AliITSsegmentationSDD.h"
41 #include "AliITSdigitSDD.h"
42 #include "AliITSgeomTGeo.h"
43
44 ClassImp(AliITSClusterFinderV2SDD)
45
46 AliITSClusterFinderV2SDD::AliITSClusterFinderV2SDD(AliITSDetTypeRec* dettyp):AliITSClusterFinder(dettyp),
47   fNAnodes(0),
48   fNTimeBins(0),
49   fNZbins(0),
50   fNXbins(0),
51   fCutOnPeakLoose(0.),
52   fCutOnPeakTight(0.),
53   fMaxDrTimeForTightCut(0.)
54 {
55   //Default constructor
56
57   fNAnodes = GetSeg()->NpzHalf();
58   fNZbins = fNAnodes+2;
59   fNTimeBins = GetSeg()->Npx();
60   fNXbins = fNTimeBins+2;
61   AliDebug(2,Form("Cells in SDD cluster finder: Andoes=%d  TimeBins=%d",fNAnodes,fNTimeBins));
62   const Int_t kMaxBin=fNZbins*fNXbins;
63   for(Int_t iHyb=0;iHyb<kHybridsPerDDL;iHyb++){
64    fDDLBins[iHyb]=new AliBin[kMaxBin];
65   }
66   SetPeakSelection(15.,30.,2000.);
67 }
68  
69
70 //______________________________________________________________________
71 AliITSClusterFinderV2SDD::~AliITSClusterFinderV2SDD()
72 {
73   //Destructor
74   for(Int_t iHyb=0;iHyb<kHybridsPerDDL;iHyb++){ 
75     delete [] fDDLBins[iHyb];
76   }
77 }
78
79 //______________________________________________________________________
80 void AliITSClusterFinderV2SDD::FindRawClusters(Int_t mod){
81
82   //Find clusters V2
83   SetModule(mod);
84   FindClustersSDD(fDigits);
85
86 }
87
88 //______________________________________________________________________
89 void AliITSClusterFinderV2SDD::FindClustersSDD(TClonesArray *digits) {
90   //------------------------------------------------------------
91   // Actual SDD cluster finder
92   //------------------------------------------------------------
93
94   const Int_t kMaxBin=fNZbins*fNXbins;
95   AliBin *bins[2];
96   bins[0]=new AliBin[kMaxBin];
97   bins[1]=new AliBin[kMaxBin];
98   TBits *anodeFired[2];
99   anodeFired[0]=new TBits(fNAnodes);
100   anodeFired[1]=new TBits(fNAnodes);
101   anodeFired[0]->ResetAllBits();
102   anodeFired[1]->ResetAllBits();
103   AliITSCalibrationSDD* cal = (AliITSCalibrationSDD*)GetResp(fModule);
104   if(cal==0){
105     AliError(Form("Calibration object not present for SDD module %d\n",fModule));
106     return;
107   }
108
109   AliITSdigitSDD *d=0;
110   Int_t i, ndigits=digits->GetEntriesFast();
111   for (i=0; i<ndigits; i++) {
112      d=(AliITSdigitSDD*)digits->UncheckedAt(i);
113      Int_t ian=d->GetCoord1();
114      Int_t itb=d->GetCoord2();
115      Int_t iSide=0;
116      if (ian >= fNAnodes) iSide=1;    
117      Float_t gain=cal->GetChannelGain(ian)/fDetTypeRec->GetAverageGainSDD();
118      Float_t charge=d->GetSignal(); // returns expanded signal 
119                                     // (10 bit, low threshold already added)
120      Float_t baseline = cal->GetBaseline(ian);
121      if(charge>baseline) charge-=baseline;
122      else charge=0;
123
124      if(gain>0.){ // Bad channels have gain=0.
125        charge/=gain;
126        if(charge<cal->GetThresholdAnode(ian)) continue;
127        Int_t q=(Int_t)(charge+0.5);
128        Int_t y=itb+1;   
129        Int_t z=ian+1;   
130        if (z <= fNAnodes){
131          bins[0][y*fNZbins+z].SetQ(q);
132          bins[0][y*fNZbins+z].SetMask(1);
133          bins[0][y*fNZbins+z].SetIndex(i);
134          anodeFired[0]->SetBitNumber(ian);
135        } else {
136          z-=fNAnodes;
137          bins[1][y*fNZbins+z].SetQ(q);
138          bins[1][y*fNZbins+z].SetMask(1);
139          bins[1][y*fNZbins+z].SetIndex(i);
140          anodeFired[1]->SetBitNumber(ian-fNAnodes);
141        }
142      }
143   }
144   
145   FindClustersSDD(bins, anodeFired, digits);
146
147   delete[] bins[0];
148   delete[] bins[1];
149   delete anodeFired[0];
150   delete anodeFired[1];
151
152 }
153
154 //______________________________________________________________________
155 void AliITSClusterFinderV2SDD::
156 FindClustersSDD(AliBin* bins[2], TBits* anodeFired[2],  
157                 TClonesArray *digits, TClonesArray *clusters, Int_t jitter) {
158   //------------------------------------------------------------
159   // Actual SDD cluster finder
160   //------------------------------------------------------------
161
162   static AliITSRecoParam *repa = NULL;
163   if(!repa){
164     repa = (AliITSRecoParam*) AliITSReconstructor::GetRecoParam();
165     if(!repa){
166       repa = AliITSRecoParam::GetHighFluxParam();
167       AliWarning("Using default AliITSRecoParam class");
168     }
169   }
170   const TGeoHMatrix *mT2L=AliITSgeomTGeo::GetTracking2LocalMatrix(fModule);
171   AliITSCalibrationSDD* cal = (AliITSCalibrationSDD*)GetResp(fModule);
172   if(cal==0){
173     AliError(Form("Calibration object not present for SDD module %d\n",fModule));
174     return;
175   }
176   const Int_t kMaxBin=fNZbins*fNXbins;
177   Int_t ncl=0; 
178   TClonesArray &cl=*clusters;
179   for (Int_t s=0; s<2; s++){
180     for(Int_t iAnode=0; iAnode<GetSeg()->NpzHalf(); iAnode++){
181       if(anodeFired[s]->TestBitNumber(iAnode)==kFALSE) continue;
182       for(Int_t iTimeBin=0; iTimeBin<GetSeg()->Npx(); iTimeBin++){
183         Int_t index=(iTimeBin+1)*fNZbins+(iAnode+1);
184         if (bins[s][index].IsUsed()) continue;
185         if(NoiseSuppress(index,s,bins[s],cal)) continue;
186         Int_t idx[32]; UInt_t msk[32]; Int_t npeaks=0;
187         FindPeaks(index, fNZbins, bins[s], idx, msk, npeaks);
188
189         if (npeaks>30) continue;
190         if (npeaks==0) continue;
191
192         Int_t k,l;
193         Int_t nClust;
194         if(repa->GetUseUnfoldingInClusterFinderSDD()){
195           for (k=0; k<npeaks-1; k++){//mark adjacent peaks          
196             if (idx[k] < 0) continue; //this peak is already removed
197             for (l=k+1; l<npeaks; l++) {
198               if (idx[l] < 0) continue; //this peak is already removed
199               Int_t ki=idx[k]/fNZbins, kj=idx[k] - ki*fNZbins;
200               Int_t li=idx[l]/fNZbins, lj=idx[l] - li*fNZbins;
201               Int_t di=TMath::Abs(ki - li);
202               Int_t dj=TMath::Abs(kj - lj);
203               if (di>1 || dj>1) continue;
204               if (bins[s][idx[k]].GetQ() > bins[s][idx[l]].GetQ()) {
205                 msk[l]=msk[k];
206                 idx[l]*=-1;
207               } else {
208                 msk[k]=msk[l];
209                 idx[k]*=-1;
210                 break;
211               } 
212             }
213           }
214           nClust=npeaks;
215         }else{
216           for (k=1; k<npeaks; k++) msk[k]=msk[0];
217           nClust=1;
218         }
219         Float_t maxADC=0;
220         for (k=0; k<npeaks; k++) {
221           if(idx[k]>0. && bins[s][idx[k]].GetQ() > maxADC) maxADC=bins[s][idx[k]].GetQ();
222           MarkPeak(TMath::Abs(idx[k]), fNZbins, bins[s], msk[k]);
223         }
224         if(maxADC<fCutOnPeakLoose) continue;
225
226         for (k=0; k<nClust; k++) {
227           if (idx[k] < 0) continue; //removed peak
228           AliITSRecPoint c;
229           MakeCluster(idx[k], fNZbins, bins[s], msk[k], c);
230           //mi change
231           Int_t milab[10];
232           for (Int_t ilab=0;ilab<10;ilab++){
233             milab[ilab]=-2;
234           }
235           
236           if(digits) {
237             for (Int_t di=-2; di<=2;di++){
238               for (Int_t dj=-2;dj<=2;dj++){
239                 index = idx[k]+di+dj*fNZbins;
240                 if (index<0) continue;
241                 if (index>=kMaxBin) continue;
242                 AliBin *b=&bins[s][index];
243                 if(b->GetQ()<0.1) continue;
244                 AliITSdigitSDD* d=(AliITSdigitSDD*)digits->UncheckedAt(b->GetIndex());
245                 for (Int_t itrack=0;itrack<10;itrack++){
246                   Int_t track = (d->GetTracks())[itrack];
247                   if (track>=0) {
248                     AddLabel(milab, track); 
249                   }
250                 }
251               }
252             }
253           }
254           
255
256           Int_t clSizAnode=fZmax-fZmin+1;
257           Int_t clSizTb=fXmax-fXmin+1;    
258           if(repa->GetUseSDDClusterSizeSelection()){
259             if(clSizTb==1) continue; // cut common mode noise spikes
260             if(clSizAnode>5)  continue; // cut common mode noise spikes
261             if(clSizTb>10)  continue; // cut clusters on noisy anodes
262             if(cal-> IsAMAt20MHz() && clSizTb>8)  continue; // cut clusters on noisy anodes
263           }
264           
265           AliITSresponseSDD* rsdd = fDetTypeRec->GetResponseSDD();
266           Float_t y=c.GetY(),z=c.GetZ(), q=c.GetQ();
267           y/=q; z/=q;
268           Float_t zAnode=z-0.5;  // to have anode in range 0.-255. and centered on the mid of the pitch
269           Float_t timebin=y-0.5;  // to have time bin in range 0.-255. amd centered on the mid of the bin
270           if(s==1) zAnode += GetSeg()->NpzHalf();  // right side has anodes from 256. to 511.
271           Float_t zdet = GetSeg()->GetLocalZFromAnode(zAnode);
272           Float_t driftTimeUncorr = GetSeg()->GetDriftTimeFromTb(timebin)+jitter*rsdd->GetCarlosRXClockPeriod();
273           Float_t driftTime=driftTimeUncorr-rsdd->GetTimeZero(fModule);
274           if(driftTime<fMaxDrTimeForTightCut && maxADC<fCutOnPeakTight) continue;
275
276           Float_t driftSpeed = cal->GetDriftSpeedAtAnode(zAnode) + rsdd->GetDeltaVDrift(fModule,zAnode>255);
277           Float_t driftPathMicron = driftTime*driftSpeed;
278           const Double_t kMicronTocm = 1.0e-4; 
279           Float_t xdet=(driftPathMicron-GetSeg()->Dx())*kMicronTocm; // xdet is negative
280           if (s==0) xdet=-xdet; // left side has positive local x
281           
282           if(repa->GetUseSDDCorrectionMaps()){
283             Float_t corrx=0, corrz=0;
284             cal->GetCorrections(zdet,xdet,corrz,corrx,GetSeg());
285             zdet+=corrz;
286             xdet+=corrx;
287           }
288           
289           Double_t loc[3]={xdet,0.,zdet},trk[3]={0.,0.,0.};
290           mT2L->MasterToLocal(loc,trk);
291           y=trk[1];
292           z=trk[2]; 
293           
294           q+=(driftTime*rsdd->GetADCvsDriftTime(fModule)); // correction for zero supp.
295           q/=rsdd->GetADCtokeV(fModule);
296           if(cal-> IsAMAt20MHz()) q*=2.; // account for 1/2 sampling freq.
297           if(q<repa->GetMinClusterChargeSDD()) continue; // remove noise clusters
298           
299           Float_t hit[6] = {y, z, 0.0030*0.0030, 0.0020*0.0020, q, 0.};
300           Int_t  info[3] = {clSizTb, clSizAnode, fNlayer[fModule]};
301           if (digits) CheckLabels2(milab);
302           milab[3]=fNdet[fModule];
303           AliITSRecPoint cc(milab,hit,info);
304           cc.SetType(nClust*100+npeaks);
305           cc.SetDriftTime(driftTimeUncorr);
306           cc.SetDriftSide(s);
307           cc.SetChargeRatio(maxADC);
308           if(clusters) new (cl[ncl]) AliITSRecPoint(cc); 
309           else {
310             fDetTypeRec->AddRecPoint(cc);
311           }
312           ncl++;
313         }
314       }
315     }
316   }
317   AliDebug(2,Form("Clusters found on SDD module %d (unfolding %d) = %d\n",fModule,repa->GetUseUnfoldingInClusterFinderSDD(),ncl));
318
319
320 //______________________________________________________________________
321 void AliITSClusterFinderV2SDD::RawdataToClusters(AliRawReader* rawReader){
322     //------------------------------------------------------------
323   // This function creates ITS clusters from raw data
324   //------------------------------------------------------------
325
326   AliITSRawStream* inputSDD=AliITSRawStreamSDD::CreateRawStreamSDD(rawReader);
327   AliDebug(1,Form("%s is used",inputSDD->ClassName()));
328
329   AliITSDDLModuleMapSDD *ddlmap=(AliITSDDLModuleMapSDD*)fDetTypeRec->GetDDLModuleMapSDD();
330   inputSDD->SetDDLModuleMap(ddlmap);
331   for(Int_t iddl=0; iddl<AliITSDDLModuleMapSDD::GetNDDLs(); iddl++){
332     for(Int_t icar=0; icar<AliITSDDLModuleMapSDD::GetNModPerDDL();icar++){
333       Int_t iMod=ddlmap->GetModuleNumber(iddl,icar);
334       if(iMod==-1) continue;
335       AliITSCalibrationSDD* cal = (AliITSCalibrationSDD*)GetResp(iMod);
336       if(cal==0){
337         AliError(Form("Calibration object not present for SDD module %d\n",iMod));
338         continue;
339       }
340       Bool_t isZeroSupp=cal->GetZeroSupp();
341       if(isZeroSupp){ 
342         for(Int_t iSid=0; iSid<2; iSid++) inputSDD->SetZeroSuppLowThreshold(iMod-240,iSid,cal->GetZSLowThreshold(iSid));
343       }else{
344         for(Int_t iSid=0; iSid<2; iSid++) inputSDD->SetZeroSuppLowThreshold(iMod-240,iSid,0);
345       }
346     }
347   }
348   FindClustersSDD(inputSDD);
349   delete inputSDD;
350 }
351
352 void AliITSClusterFinderV2SDD::FindClustersSDD(AliITSRawStream* input) 
353 {
354   //------------------------------------------------------------
355   // Actual SDD cluster finder for raw data
356   //------------------------------------------------------------
357   AliITSRecPointContainer* rpc = AliITSRecPointContainer::Instance();
358   Int_t nClustersSDD = 0;
359   AliBin *bins[2];
360   TBits* anodeFired[2];
361   TBits* ddlAnodeFired[kHybridsPerDDL];
362   for(Int_t iHyb=0;iHyb<kHybridsPerDDL;iHyb++){
363     ddlAnodeFired[iHyb]=new TBits(fNAnodes);
364     ddlAnodeFired[iHyb]->ResetAllBits();
365   }
366   Int_t vectModId[kModulesPerDDL];
367   for(Int_t iMod=0; iMod<kModulesPerDDL; iMod++) vectModId[iMod]=-1;
368
369   // read raw data input stream
370   while (input->Next()) {
371     Int_t iModule = input->GetModuleID();
372     if(iModule<0){
373       AliWarning(Form("Invalid SDD module number %d\n", iModule));
374       continue;
375     }
376     Int_t iCarlos =input->GetCarlosId();
377     Int_t iSide = input->GetChannel();
378     Int_t iHybrid=iCarlos*2+iSide;
379
380     if (input->IsCompletedModule()) {
381       // store the module number
382       vectModId[iCarlos]=iModule;
383     }
384     else if (input->IsCompletedDDL()) {
385       // when all data from a DDL was read, search for clusters
386       Int_t jitter=input->GetJitter();
387       for(Int_t iMod=0; iMod<kModulesPerDDL; iMod++){
388         if(vectModId[iMod]>=0){
389           fModule = vectModId[iMod];
390           TClonesArray* clusters = rpc->UncheckedGetClusters(fModule);
391           bins[0]=fDDLBins[iMod*2];   // first hybrid of the module
392           bins[1]=fDDLBins[iMod*2+1]; // second hybrid of the module
393           anodeFired[0]=ddlAnodeFired[iMod*2];
394           anodeFired[1]=ddlAnodeFired[iMod*2+1];
395           FindClustersSDD(bins, anodeFired, NULL, clusters,jitter);
396           Int_t nClusters = clusters->GetEntriesFast();
397           nClustersSDD += nClusters;
398           vectModId[iMod]=-1;
399         }
400         for (Int_t s=0; s<2; s++){
401           Int_t indexHyb=iMod*2+s;
402           for(Int_t iAnode=0; iAnode<GetSeg()->NpzHalf(); iAnode++){
403             if(ddlAnodeFired[indexHyb]->TestBitNumber(iAnode)==kFALSE) continue;
404             for(Int_t iTimeBin=0; iTimeBin<GetSeg()->Npx(); iTimeBin++){
405               Int_t index=(iTimeBin+1)*fNZbins+(iAnode+1);
406               fDDLBins[indexHyb][index].Reset();
407             }
408           }
409         }
410         ddlAnodeFired[iMod*2]->ResetAllBits();
411         ddlAnodeFired[iMod*2+1]->ResetAllBits();
412       }
413     }else{
414     // fill the current digit into the bins array
415       if(iHybrid<0 || iHybrid>=kHybridsPerDDL){ 
416         AliWarning(Form("Invalid SDD hybrid number %d on module %d\n", iHybrid,iModule));
417         continue;
418       }
419       AliITSCalibrationSDD* cal = (AliITSCalibrationSDD*)GetResp(iModule);    
420       if(cal==0){
421         AliError(Form("Calibration object not present for SDD module %d\n",iModule));
422         continue;
423       }
424       Float_t charge=input->GetSignal();
425       Int_t chan=input->GetCoord1()+fNAnodes*iSide;
426       Float_t gain=cal->GetChannelGain(chan)/fDetTypeRec->GetAverageGainSDD();;
427       Float_t baseline = cal->GetBaseline(chan);
428       if(charge>baseline) charge-=baseline;
429       else charge=0;
430       if(gain>0.){ // Bad channels have gain=0
431         charge/=gain;
432         if(charge>=cal->GetThresholdAnode(chan)) {
433           Int_t q=(Int_t)(charge+0.5);
434           Int_t iz = input->GetCoord1();
435           Int_t itb = input->GetCoord2();
436           Int_t index = (itb+1) * fNZbins + (iz+1);
437           if((itb < fNTimeBins) && (iz < fNAnodes)) {
438             fDDLBins[iHybrid][index].SetQ(q);
439             fDDLBins[iHybrid][index].SetMask(1);
440             fDDLBins[iHybrid][index].SetIndex(index);
441             ddlAnodeFired[iHybrid]->SetBitNumber(iz);
442           }else{
443             AliWarning(Form("Invalid SDD cell: Anode=%d   TimeBin=%d",iz,itb));   
444           }
445         }
446       }
447     }
448   }
449   for(Int_t iHyb=0;iHyb<kHybridsPerDDL;iHyb++){ 
450    delete ddlAnodeFired[iHyb];
451   }
452   AliDebug(1,Form("found clusters in ITS SDD: %d", nClustersSDD));
453 }
454
455 //______________________________________________________________________
456 Bool_t AliITSClusterFinderV2SDD::NoiseSuppress(Int_t k, Int_t sid, AliBin* bins, AliITSCalibrationSDD* cal) const {
457   // applies zero suppression using the measured noise of each anode
458   // threshold values from ALICE-INT-1999-28 V10
459   // returns kTRUE if the digit should eb noise suppressed, kFALSE if it should be kept
460   Float_t xfactL=2.2; 
461   Float_t xfactH=4.0;
462   //
463
464   Int_t iAn=(k%fNZbins)-1;
465   if(iAn<0 || iAn>255) return kTRUE;
466   if(sid==1) iAn+=256;
467   Int_t nLow=0, nHigh=0;
468   Float_t noise=cal->GetNoiseAfterElectronics(iAn);
469   Float_t noisem1=noise;
470   if(iAn>1) noisem1=cal->GetNoiseAfterElectronics(iAn-1);
471   Float_t noisep1=noise;
472   if(iAn<511) noisep1=cal->GetNoiseAfterElectronics(iAn+1);
473   Float_t tL=noise*xfactL;
474   Float_t tH=noise*xfactH;
475   Float_t tLp1=noisep1*xfactL;
476   Float_t tHp1=noisep1*xfactH;
477   Float_t tLm1=noisem1*xfactL;
478   Float_t tHm1=noisem1*xfactH;
479   Int_t cC=bins[k].GetQ();
480   if(cC<=tL){
481     bins[k].SetQ(0);
482     bins[k].SetMask(0xFFFFFFFE);
483     return kTRUE;;
484   }
485   nLow++; // cC is greater than tL
486   if(cC>tH) nHigh++;
487   Int_t sS=bins[k-1].GetQ();
488   if(sS>tLm1) nLow++;
489   if(sS>tHm1) nHigh++;
490   Int_t nN=bins[k+1].GetQ();
491   if(nN>tLp1) nLow++;
492   if(nN>tHp1) nHigh++;
493   Int_t eE=bins[k-fNZbins].GetQ();
494   if(eE>tL) nLow++;
495   if(eE>tH) nHigh++;
496   Int_t wW=bins[k+fNZbins].GetQ();
497   if(wW>tL) nLow++;
498   if(wW>tH) nHigh++;
499   if(nLow<2 || nHigh<1) return kTRUE;
500   else return kFALSE;
501 }
502
503
504