]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHClusterFinder.cxx
Particles are flagged for transport (done = 0).
[u/mrichter/AliRoot.git] / RICH / AliRICHClusterFinder.cxx
CommitLineData
8265fa96 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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
8265fa96 16
17#include "AliRICHClusterFinder.h"
543d5224 18#include "AliRICHMap.h"
9d6f9427 19#include <TMinuit.h>
ed3ceb24 20#include <TParticle.h>
9d6f9427 21#include <TVector3.h>
cbaf35fb 22#include <AliLoader.h>
ed3ceb24 23#include <AliStack.h>
cbaf35fb 24#include <AliRun.h>
8265fa96 25
9d6f9427 26void RICHMinMathieson(Int_t &npar, Double_t *gin, Double_t &chi2, Double_t *par, Int_t iflag);
8265fa96 27
28ClassImp(AliRICHClusterFinder)
543d5224 29//__________________________________________________________________________________________________
30AliRICHClusterFinder::AliRICHClusterFinder(AliRICH *pRICH)
31{//main ctor
0f72f306 32// Info("main ctor","Start.");
543d5224 33
cbaf35fb 34 fRICH = pRICH;
543d5224 35
6865fb8d 36 fHitMap = 0;
37 fRawCluster.Reset();
38 fResolvedCluster.Reset();
543d5224 39
543d5224 40}//main ctor
41//__________________________________________________________________________________________________
9d6f9427 42void AliRICHClusterFinder::FindLocalMaxima()
6865fb8d 43{
44// Find number of local maxima in the cluster
0f72f306 45// Info("FindLocalMaxima","Start.");
6865fb8d 46
47 fNlocals = 0;
48 for(Int_t iDig1=0;iDig1<fRawCluster.Size();iDig1++) {
cbaf35fb 49 Int_t iNotMax = 0;
6865fb8d 50 AliRICHdigit *pDig1 = (AliRICHdigit *)fRawCluster.Digits()->At(iDig1);
cbaf35fb 51 Int_t padX1 = pDig1->X();
52 Int_t padY1 = pDig1->Y();
6865fb8d 53 Int_t padQ1 = (Int_t)(pDig1->Q()+0.1);
54 Int_t padC1 = pDig1->CombiPid();
55 for(Int_t iDig2=0;iDig2<fRawCluster.Size();iDig2++) {
56 AliRICHdigit *pDig2 = (AliRICHdigit *)fRawCluster.Digits()->At(iDig2);
cbaf35fb 57 Int_t padX2 = pDig2->X();
58 Int_t padY2 = pDig2->Y();
6865fb8d 59 Int_t padQ2 = (Int_t)(pDig2->Q()+0.1);
cbaf35fb 60 if(iDig1==iDig2) continue;
61 Int_t diffx = TMath::Sign(padX1-padX2,1);
62 Int_t diffy = TMath::Sign(padY1-padY2,1);
63 if((diffx+diffy)<=1) {
6865fb8d 64 if(padQ2>=padQ1) iNotMax++;
cbaf35fb 65 }
8265fa96 66 }
cbaf35fb 67 if(iNotMax==0) {
3582c1f9 68 TVector2 x2=AliRICHParam::Pad2Loc(padX1,padY1);
69 fLocalX[fNlocals]=x2.X();fLocalY[fNlocals]=x2.Y();
6865fb8d 70 fLocalQ[fNlocals] = (Double_t)padQ1;
71 fLocalC[fNlocals] = padC1;
72 fNlocals++;
8265fa96 73 }
6865fb8d 74 }
cbaf35fb 75}//FindLocalMaxima()
543d5224 76//__________________________________________________________________________________________________
77void AliRICHClusterFinder::Exec()
237c933d 78{
543d5224 79 Info("Exec","Start.");
80
cbaf35fb 81
543d5224 82 Rich()->GetLoader()->LoadDigits();
83
ed3ceb24 84 Rich()->GetLoader()->GetRunLoader()->LoadHeader();
85 Rich()->GetLoader()->GetRunLoader()->LoadKinematics();
86
543d5224 87 for(Int_t iEventN=0;iEventN<gAlice->GetEventsPerRun();iEventN++){//events loop
0f72f306 88 Info("Exec","Event %i processed.",iEventN+1);
6865fb8d 89// gAlice->GetRunLoader()->GetEvent(iEventN);
90 Rich()->GetLoader()->GetRunLoader()->GetEvent(iEventN);
237c933d 91
543d5224 92 Rich()->GetLoader()->MakeTree("R"); Rich()->MakeBranch("R");
cbaf35fb 93 Rich()->ResetDigits(); Rich()->ResetClusters();
543d5224 94
95 Rich()->GetLoader()->TreeD()->GetEntry(0);
cbaf35fb 96 for(Int_t iChamber=1;iChamber<=kNCH;iChamber++){//chambers loop
ed3ceb24 97 FindClusters(iChamber);
543d5224 98 }//chambers loop
543d5224 99 Rich()->GetLoader()->TreeR()->Fill();
100 Rich()->GetLoader()->WriteRecPoints("OVERWRITE");
101 }//events loop
102 Rich()->GetLoader()->UnloadDigits(); Rich()->GetLoader()->UnloadRecPoints();
cbaf35fb 103 Rich()->ResetDigits(); Rich()->ResetClusters();
ed3ceb24 104
105 Rich()->GetLoader()->GetRunLoader()->UnloadHeader();
106 Rich()->GetLoader()->GetRunLoader()->UnloadKinematics();
107
543d5224 108 Info("Exec","Stop.");
109}//Exec()
110//__________________________________________________________________________________________________
ed3ceb24 111void AliRICHClusterFinder::FindClusters(Int_t iChamber)
112{
113 //finds neighbours and fill the tree with raw clusters
cbaf35fb 114 Int_t nDigits=Rich()->Digits(iChamber)->GetEntriesFast();
0f72f306 115// Info("FindClusters","Start for Chamber %i with %i digits.",iChamber,nDigits);
cbaf35fb 116 if(nDigits==0)return;
117
eaf390d9 118 fHitMap=new AliRICHMap(Rich()->Digits(iChamber));//create digit map for the given chamber
cbaf35fb 119
cbaf35fb 120 for(Int_t iDig=0;iDig<nDigits;iDig++){
e33758d8 121 AliRICHdigit *dig=(AliRICHdigit*)Rich()->Digits(iChamber)->At(iDig);
cbaf35fb 122 Int_t i=dig->X(); Int_t j=dig->Y();
123 if(fHitMap->TestHit(i,j)==kUsed) continue;
124
9d6f9427 125 FormRawCluster(i,j);
6865fb8d 126 FindLocalMaxima();
127// cout << " fNlocals in FindCluster " << fNlocals << endl;
128 fRawCluster.CoG(fNlocals); // first initial approxmation of the CoG...to start minimization.
129
cbaf35fb 130 if(AliRICHParam::IsResolveClusters()) {
9d6f9427 131 ResolveCluster(); // ResolveCluster serialization will happen inside
cbaf35fb 132 } else {
9d6f9427 133 WriteRawCluster(); // simply output of the RawCluster found without deconvolution
ed3ceb24 134 }
6865fb8d 135 fRawCluster.Reset();
136 fResolvedCluster.Reset();
cbaf35fb 137 }//digits loop
138
139 delete fHitMap;
0f72f306 140// Info("FindClusters","Stop.");
cbaf35fb 141
ed3ceb24 142}//FindClusters()
143//__________________________________________________________________________________________________
6865fb8d 144void AliRICHClusterFinder::FindClusterContribs(AliRICHcluster *pCluster)
ed3ceb24 145{
3582c1f9 146// finds CombiPid for a given cluster
147// Info("FindClusterContribs","Start");
ed3ceb24 148
6865fb8d 149 TObjArray *pDigits = pCluster->Digits();
ed3ceb24 150 Int_t iNmips=0,iNckovs=0,iNfeeds=0;
6865fb8d 151 TArrayI contribs(3*pCluster->Size());
152 Int_t *pindex = new Int_t[3*pCluster->Size()];
153 for(Int_t iDigN=0;iDigN<pCluster->Size();iDigN++) {//loop on digits of a given cluster
ed3ceb24 154 contribs[3*iDigN] =((AliRICHdigit*)pDigits->At(iDigN))->Tid(0);
155 contribs[3*iDigN+1]=((AliRICHdigit*)pDigits->At(iDigN))->Tid(1);
156 contribs[3*iDigN+2]=((AliRICHdigit*)pDigits->At(iDigN))->Tid(2);
ed3ceb24 157 }//loop on digits of a given cluster
158 TMath::Sort(contribs.GetSize(),contribs.GetArray(),pindex);
6865fb8d 159 for(Int_t iDigN=0;iDigN<3*pCluster->Size()-1;iDigN++) {//loop on digits to sort Tid
ed3ceb24 160 if(contribs[pindex[iDigN]]!=contribs[pindex[iDigN+1]]) {
161 Int_t code = Rich()->GetLoader()->GetRunLoader()->Stack()->Particle(contribs[pindex[iDigN]])->GetPdgCode();
162 Double_t charge = Rich()->GetLoader()->GetRunLoader()->Stack()->Particle(contribs[pindex[iDigN]])->GetPDG()->Charge();
163
164 if(code==50000050) iNckovs++;
165 else if(code==50000051) iNfeeds++;
166 else if(charge!=0) iNmips++;
167 if (contribs[pindex[iDigN+1]]==kBad) break;
168 }
169 }//loop on digits to sort Tid
6865fb8d 170 pCluster->SetCombiPid(iNckovs,iNfeeds,iNmips);
171// pCluster->Print();
ed3ceb24 172 delete [] pindex;
3582c1f9 173}//FindClusterContribs()
cbaf35fb 174//__________________________________________________________________________________________________
9d6f9427 175void AliRICHClusterFinder::FormRawCluster(Int_t i, Int_t j)
ed3ceb24 176{
3582c1f9 177// Builder of the final Raw Cluster (before deconvolution)
178 if(GetDebug()) Info("FormRawCluster","Start with digit(%i,%i)",i,j);
cbaf35fb 179
6865fb8d 180 fRawCluster.AddDigit((AliRICHdigit*) fHitMap->GetHit(i,j));
cbaf35fb 181 fHitMap->FlagHit(i,j);// Flag hit as taken
182
183 Int_t listX[4], listY[4]; // Now look recursively for all neighbours
184 for (Int_t iNeighbour=0;iNeighbour<Rich()->Param()->PadNeighbours(i,j,listX,listY);iNeighbour++)
185 if(fHitMap->TestHit(listX[iNeighbour],listY[iNeighbour])==kUnused)
9d6f9427 186 FormRawCluster(listX[iNeighbour],listY[iNeighbour]);
3582c1f9 187}//FormRawCluster()
cbaf35fb 188//__________________________________________________________________________________________________
9d6f9427 189void AliRICHClusterFinder::ResolveCluster()
cbaf35fb 190{// Decluster algorithm
3582c1f9 191 if(GetDebug()) {Info("ResolveCluster","Start."); fRawCluster.Print();}
cbaf35fb 192
6865fb8d 193 switch (fRawCluster.Size()) {
194
195 case 1: // nothing to decluster: cluster size = 1
196 WriteRawCluster();break;
197 default: // cluster size > 1: if=2 FitCoG; if>2 Resolve and FitCoG
198 FitCoG();break;
9d6f9427 199 }
cbaf35fb 200}//ResolveCluster()
201//__________________________________________________________________________________________________
9d6f9427 202void AliRICHClusterFinder::WriteRawCluster()
6865fb8d 203{
204// out the current raw cluster
0f72f306 205// Info("WriteRawCluster","Start.");
cbaf35fb 206
6865fb8d 207 FindClusterContribs(&fRawCluster);
208 Rich()->AddCluster(fRawCluster);
209// fRawCluster.Print();
cbaf35fb 210}//WriteRawCluster()
211//__________________________________________________________________________________________________
6865fb8d 212void AliRICHClusterFinder::WriteResolvedCluster()
213{
214// out the current resolved cluster
215// Info("WriteResolvedCluster","Start.");
216
217// FindClusterContribs(&fResolvedCluster);
218 Rich()->AddCluster(fResolvedCluster);
219
220}//WriteResolvedCluster()
221//__________________________________________________________________________________________________
9d6f9427 222void AliRICHClusterFinder::FitCoG()
223{// Fit cluster size 2 by single Mathieson
6865fb8d 224 Info("FitCoG","Start with size %3i and local maxima %3i",fRawCluster.Size(),fNlocals);
225
0f72f306 226 Double_t arglist;
227 Int_t ierflag = 0;
6865fb8d 228
229// fRawCluster.Print();
230 if(fNlocals==0) fRawCluster.Print();
231 if(fNlocals==0||fNlocals>3) {WriteRawCluster();return;}
9d6f9427 232
6865fb8d 233 TMinuit *pMinuit = new TMinuit(3*fNlocals-1);
0f72f306 234 pMinuit->mninit(5,10,7);
235
236 arglist = -1;
237 pMinuit->mnexcm("SET PRI",&arglist, 1, ierflag);
9d6f9427 238
9d6f9427 239 TString chname;
240 Int_t ierflg;
241
242 pMinuit->SetObjectFit((TObject*)this);
243 pMinuit->SetFCN(RICHMinMathieson);
6865fb8d 244
245 Double_t vstart,lower, upper;
246 Double_t stepX= 0.001;
247 Double_t stepY= 0.001;
248 Double_t stepQ= 0.0001;
249
250 for(Int_t i=0;i<fNlocals;i++) {
251 vstart = fLocalX[i];
252 lower = vstart - 2*AliRICHParam::PadSizeX();
253 upper = vstart + 2*AliRICHParam::PadSizeX();
254 pMinuit->mnparm(3*i ,Form("xCoG %i",i),vstart,stepX,lower,upper,ierflag);
255// cout << Form("xCoG %i",i) << "start " << vstart << "lower " << lower << "upper " << upper << endl;
256 vstart = fLocalY[i];
257 lower = vstart - 2*AliRICHParam::PadSizeY();
258 upper = vstart + 2*AliRICHParam::PadSizeY();
259 pMinuit->mnparm(3*i+1,Form("yCoG %i",i),vstart,stepY,lower,upper,ierflag);
260// cout << Form("yCoG %i",i) << "start " << vstart << "lower " << lower << "upper " << upper << endl;
261 if(i==fNlocals-1) break; // last parameter is constrained
262 vstart = fLocalQ[i]/fRawCluster.Q();
263 lower = 0;
264 upper = 1;
265 pMinuit->mnparm(3*i+2,Form("qfrac %i",i),vstart,stepQ,lower,upper,ierflag);
266// cout << Form("qCoG %i",i) << "start " << vstart << "lower " << lower << "upper " << upper << endl;
9d6f9427 267
6865fb8d 268 }
269
9d6f9427 270 arglist = -1;
6865fb8d 271
9d6f9427 272 pMinuit->mnexcm("SET NOGR",&arglist, 1, ierflag);
273 pMinuit->mnexcm("SET NOW",&arglist, 1, ierflag);
274 arglist = 1;
275 pMinuit->mnexcm("SET ERR", &arglist, 1,ierflg);
276 arglist = -1;
277 pMinuit->mnexcm("SIMPLEX",&arglist, 0, ierflag);
278 pMinuit->mnexcm("MIGRAD",&arglist, 0, ierflag);
6865fb8d 279 pMinuit->mnexcm("EXIT" ,&arglist, 0, ierflag);
280
281 Double_t xCoG[50],yCoG[50],qfracCoG[50];
9d6f9427 282 Double_t eps, b1, b2;
6865fb8d 283
284 Double_t qfraclast=0;
285 for(Int_t i=0;i<fNlocals;i++) {
286 pMinuit->mnpout(3*i ,chname, xCoG[i], eps , b1, b2, ierflg);
287 pMinuit->mnpout(3*i+1,chname, yCoG[i], eps , b1, b2, ierflg);
288 if(i==fNlocals-1) break;
289 pMinuit->mnpout(3*i+2,chname, qfracCoG[i], eps , b1, b2, ierflg);
290 qfraclast+=qfracCoG[i];
291 }
292 qfracCoG[fNlocals-1] = 1 - qfraclast;
9d6f9427 293 delete pMinuit;
6865fb8d 294
295 for(Int_t i=0;i<fNlocals;i++) {
296
297 if(fNlocals==5) {
298 cout << " Start writing deconvolved cluster n." << i << endl;
299 cout << " fRawCluster " << &fRawCluster << " xCoG " << xCoG[i] << " yCoG " << yCoG[i] << " qfrac " << qfracCoG[i] << endl;
300 cout << " Combipid " << fLocalC[i] << " for maximum n. " << i << endl;
301 }
302 fResolvedCluster.Fill(&fRawCluster,xCoG[i],yCoG[i],qfracCoG[i],fLocalC[i]);
303// fResolvedCluster.Print();
304 WriteResolvedCluster();
305 }
306if(fNlocals==5) Info("CoG","Stop.");
9d6f9427 307}
308//__________________________________________________________________________________________________
6865fb8d 309void RICHMinMathieson(Int_t &npar, Double_t *, Double_t &chi2, Double_t *par, Int_t )
9d6f9427 310{// Minimization function of Mathieson
311
6865fb8d 312 AliRICHcluster *pRawCluster = ((AliRICHClusterFinder*)gMinuit->GetObjectFit())->GetRawCluster();
9d6f9427 313
3582c1f9 314 TVector2 centroid[50];
6865fb8d 315 Double_t q[50];
316 Int_t nFunctions = (npar+1)/3;
317 Double_t qfract = 0;
318 for(Int_t i=0;i<nFunctions;i++) {
3582c1f9 319 centroid[i].Set(par[3*i],par[3*i+1]);
6865fb8d 320 if(i==nFunctions-1) break;
321 q[i]=par[3*i+2];
322 qfract+=q[i];
323 }
324 q[nFunctions-1] = 1 - qfract;
325
9d6f9427 326 chi2 = 0;
327 Int_t qtot = pRawCluster->Q();
328 for(Int_t i=0;i<pRawCluster->Size();i++) {
329 Int_t padX = ((AliRICHdigit *)pRawCluster->Digits()->At(i))->X();
330 Int_t padY = ((AliRICHdigit *)pRawCluster->Digits()->At(i))->Y();
331 Double_t padQ = ((AliRICHdigit *)pRawCluster->Digits()->At(i))->Q();
6865fb8d 332 Double_t qfracpar=0;
333 for(Int_t j=0;j<nFunctions;j++) {
3582c1f9 334 qfracpar += q[j]*AliRICHParam::FracQdc(centroid[j],padX,padY);
335// cout << " function n. " << j+1 << " q " << q[j] << " fracMat " << AliRICHParam::FracQdc(centroid[j],padX,padY)
6865fb8d 336// << " xpar " << centroid[j].X() << " ypar " << centroid[j].Y() << endl;
9d6f9427 337 }
6865fb8d 338 chi2 += TMath::Power((qtot*qfracpar-padQ),2)/padQ;
339// cout << " chi2 " << chi2 << " pad n. " << i << " qfracpar " << qfracpar << endl;
340 }
341// if(iflag==3) {
342// cout << " chi2 final " << chi2 << endl;
343// }
9d6f9427 344}//RICHMinMathieson()