]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPC.cxx
Some rationalisation of the documentation. In particular pictures are all now in...
[u/mrichter/AliRoot.git] / TPC / AliTPC.cxx
CommitLineData
fe4da5cc 1///////////////////////////////////////////////////////////////////////////////
2// //
3// Time Projection Chamber //
4// This class contains the basic functions for the Time Projection Chamber //
5// detector. Functions specific to one particular geometry are //
6// contained in the derived classes //
7// //
8//Begin_Html
9/*
1439f98e 10<img src="picts/AliTPCClass.gif">
fe4da5cc 11*/
12//End_Html
13// //
8c555625 14// //
fe4da5cc 15///////////////////////////////////////////////////////////////////////////////
16
17#include <TMath.h>
18#include <TRandom.h>
19#include <TVector.h>
8c555625 20#include <TMatrix.h>
fe4da5cc 21#include <TGeometry.h>
22#include <TNode.h>
23#include <TTUBS.h>
24#include <TObjectTable.h>
25#include "GParticle.h"
26#include "AliTPC.h"
27#include "AliRun.h"
28#include <iostream.h>
29#include <fstream.h>
30#include "AliMC.h"
31
8c555625 32//MI change
33#include "AliTPCParam.h"
34#include "AliTPCD.h"
35#include "AliTPCPRF2D.h"
36#include "AliTPCRF1D.h"
37
38
fe4da5cc 39ClassImp(AliTPC)
40
41//_____________________________________________________________________________
42AliTPC::AliTPC()
43{
44 //
45 // Default constructor
46 //
47 fIshunt = 0;
48 fClusters = 0;
49 fHits = 0;
50 fDigits = 0;
51 fTracks = 0;
52 fNsectors = 0;
53 fNtracks = 0;
54 fNclusters= 0;
8c555625 55 //MI changes
56 fDigParam= new AliTPCD();
57 fDigits = fDigParam->GetArray();
fe4da5cc 58}
59
60//_____________________________________________________________________________
61AliTPC::AliTPC(const char *name, const char *title)
62 : AliDetector(name,title)
63{
64 //
65 // Standard constructor
66 //
67
68 //
69 // Initialise arrays of hits and digits
70 fHits = new TClonesArray("AliTPChit", 176);
8c555625 71 // fDigits = new TClonesArray("AliTPCdigit",10000);
72 //MI change
73 fDigParam= new AliTPCD;
74 fDigits = fDigParam->GetArray();
fe4da5cc 75 //
76 // Initialise counters
77 fClusters = 0;
78 fTracks = 0;
79 fNsectors = 72;
80 fNtracks = 0;
81 fNclusters= 0;
82 fDigitsIndex = new Int_t[fNsectors+1];
83 fClustersIndex = new Int_t[fNsectors+1];
84 //
85 fIshunt = 0;
86 //
87 // Initialise color attributes
88 SetMarkerColor(kYellow);
89}
90
91//_____________________________________________________________________________
92AliTPC::~AliTPC()
93{
94 //
95 // TPC destructor
96 //
97 fIshunt = 0;
98 delete fHits;
99 delete fDigits;
100 delete fClusters;
101 delete fTracks;
8c555625 102 delete fDigParam;
fe4da5cc 103 if (fDigitsIndex) delete [] fDigitsIndex;
104 if (fClustersIndex) delete [] fClustersIndex;
105}
106
107//_____________________________________________________________________________
108void AliTPC::AddCluster(Float_t *hits, Int_t *tracks)
109{
110 //
111 // Add a simulated cluster to the list
112 //
113 if(!fClusters) fClusters=new TClonesArray("AliTPCcluster",10000);
114 TClonesArray &lclusters = *fClusters;
115 new(lclusters[fNclusters++]) AliTPCcluster(hits,tracks);
116}
117
118//_____________________________________________________________________________
119void AliTPC::AddCluster(const AliTPCcluster &c)
120{
121 //
122 // Add a simulated cluster copy to the list
123 //
124 if(!fClusters) fClusters=new TClonesArray("AliTPCcluster",10000);
125 TClonesArray &lclusters = *fClusters;
126 new(lclusters[fNclusters++]) AliTPCcluster(c);
127}
128
129//_____________________________________________________________________________
130void AliTPC::AddDigit(Int_t *tracks, Int_t *digits)
131{
132 //
133 // Add a TPC digit to the list
134 //
8c555625 135 // TClonesArray &ldigits = *fDigits;
136 //MI change
137 TClonesArray &ldigits = *fDigParam->GetArray();
fe4da5cc 138 new(ldigits[fNdigits++]) AliTPCdigit(tracks,digits);
139}
140
141//_____________________________________________________________________________
142void AliTPC::AddHit(Int_t track, Int_t *vol, Float_t *hits)
143{
144 //
145 // Add a hit to the list
146 //
147 TClonesArray &lhits = *fHits;
148 new(lhits[fNhits++]) AliTPChit(fIshunt,track,vol,hits);
149}
150
151//_____________________________________________________________________________
152void AliTPC::AddTrack(Float_t *hits)
153{
154 //
155 // Add a track to the list of tracks
156 //
157 TClonesArray &ltracks = *fTracks;
158 new(ltracks[fNtracks++]) AliTPCtrack(hits);
159}
160
161//_____________________________________________________________________________
162void AliTPC::AddTrack(const AliTPCtrack& t)
163{
164 //
165 // Add a track copy to the list of tracks
166 //
167 if(!fTracks) fTracks=new TClonesArray("AliTPCtrack",10000);
168 TClonesArray &ltracks = *fTracks;
169 new(ltracks[fNtracks++]) AliTPCtrack(t);
170}
171
172//_____________________________________________________________________________
173void AliTPC::BuildGeometry()
174{
175 //
176 // Build TPC ROOT TNode geometry for the event display
177 //
178 TNode *Node, *Top;
179 TTUBS *tubs;
180 Int_t i;
181 const int kColorTPC=19;
8c555625 182 char name[5], title[20];
fe4da5cc 183 const Double_t kDegrad=TMath::Pi()/180;
184 const Double_t loAng=30;
185 const Double_t hiAng=15;
186 const Int_t nLo = Int_t (360/loAng+0.5);
187 const Int_t nHi = Int_t (360/hiAng+0.5);
188 const Double_t loCorr = 1/TMath::Cos(0.5*loAng*kDegrad);
189 const Double_t hiCorr = 1/TMath::Cos(0.5*hiAng*kDegrad);
190 //
191 // Get ALICE top node
192 Top=gAlice->GetGeometry()->GetNode("alice");
193 //
194 // Inner sectors
195 for(i=0;i<nLo;i++) {
196 sprintf(name,"LS%2.2d",i);
197 sprintf(title,"TPC low sector %d",i);
198 tubs = new TTUBS(name,title,"void",88*loCorr,136*loCorr,250,loAng*(i-0.5),loAng*(i+0.5));
199 tubs->SetNumberOfDivisions(1);
200 Top->cd();
201 Node = new TNode(name,title,name,0,0,0,"");
202 Node->SetLineColor(kColorTPC);
203 fNodes->Add(Node);
204 }
205 // Outer sectors
206 for(i=0;i<nHi;i++) {
207 sprintf(name,"US%2.2d",i);
208 sprintf(title,"TPC upper sector %d",i);
209 tubs = new TTUBS(name,title,"void",142*hiCorr,250*hiCorr,250,hiAng*(i-0.5),hiAng*(i+0.5));
210 tubs->SetNumberOfDivisions(1);
211 Top->cd();
212 Node = new TNode(name,title,name,0,0,0,"");
213 Node->SetLineColor(kColorTPC);
214 fNodes->Add(Node);
215 }
216}
fe4da5cc 217//_____________________________________________________________________________
218Int_t AliTPC::DistancetoPrimitive(Int_t , Int_t )
219{
220 //
221 // Calculate distance from TPC to mouse on the display
222 // Dummy procedure
223 //
224 return 9999;
225}
226
227//_____________________________________________________________________________
8c555625 228//const int MAX_CLUSTER=nrow_low+nrow_up;
229const int MAX_CLUSTER=200;
fe4da5cc 230const int S_MAXSEC=24;
231const int L_MAXSEC=48;
232const int ROWS_TO_SKIP=21;
8c555625 233const Float_t MAX_CHI2=12.;
234
fe4da5cc 235
236//_____________________________________________________________________________
237static Double_t SigmaY2(Double_t r, Double_t tgl, Double_t pt)
238{
239 //
240 // Calculate spread in Y
241 //
242 pt=TMath::Abs(pt)*1000.;
243 Double_t x=r/pt;
244 tgl=TMath::Abs(tgl);
245 Double_t s=a_rphi - b_rphi*r*tgl + c_rphi*x*x + d_rphi*x;
246 if (s<0.4e-3) s=0.4e-3;
247 return s;
248}
249
250//_____________________________________________________________________________
251static Double_t SigmaZ2(Double_t r, Double_t tgl)
252{
253 //
254 // Calculate spread in Z
255 //
256 tgl=TMath::Abs(tgl);
257 Double_t s=a_z - b_z*r*tgl + c_z*tgl*tgl;
258 if (s<0.4e-3) s=0.4e-3;
259 return s;
260}
261
262//_____________________________________________________________________________
263inline Double_t f1(Double_t x1,Double_t y1, //C
264 Double_t x2,Double_t y2,
265 Double_t x3,Double_t y3)
266{
267 //
268 // Function f1
269 //
270 Double_t d=(x2-x1)*(y3-y2)-(x3-x2)*(y2-y1);
271 Double_t a=0.5*((y3-y2)*(y2*y2-y1*y1+x2*x2-x1*x1)-
272 (y2-y1)*(y3*y3-y2*y2+x3*x3-x2*x2));
273 Double_t b=0.5*((x2-x1)*(y3*y3-y2*y2+x3*x3-x2*x2)-
274 (x3-x2)*(y2*y2-y1*y1+x2*x2-x1*x1));
8c555625 275
fe4da5cc 276 Double_t xr=TMath::Abs(d/(d*x1-a)), yr=d/(d*y1-b);
8c555625 277
fe4da5cc 278 return -xr*yr/sqrt(xr*xr+yr*yr);
279}
280
281
282//_____________________________________________________________________________
283inline Double_t f2(Double_t x1,Double_t y1, //eta=C*x0
284 Double_t x2,Double_t y2,
285 Double_t x3,Double_t y3)
286{
287 //
288 // Function f2
289 //
290 Double_t d=(x2-x1)*(y3-y2)-(x3-x2)*(y2-y1);
291 Double_t a=0.5*((y3-y2)*(y2*y2-y1*y1+x2*x2-x1*x1)-
292 (y2-y1)*(y3*y3-y2*y2+x3*x3-x2*x2));
293 Double_t b=0.5*((x2-x1)*(y3*y3-y2*y2+x3*x3-x2*x2)-
294 (x3-x2)*(y2*y2-y1*y1+x2*x2-x1*x1));
8c555625 295
fe4da5cc 296 Double_t xr=TMath::Abs(d/(d*x1-a)), yr=d/(d*y1-b);
297
298 return -a/(d*y1-b)*xr/sqrt(xr*xr+yr*yr);
299}
300
301//_____________________________________________________________________________
302inline Double_t f3(Double_t x1,Double_t y1, //tgl
303 Double_t x2,Double_t y2,
304 Double_t z1,Double_t z2)
305{
306 //
307 // Function f3
308 //
309 return (z1 - z2)/sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
310}
311
312//_____________________________________________________________________________
313static int FindProlongation(AliTPCtrack& t, const AliTPCSector *sec,
314 int s, int ri, int rf=0)
315{
316 //
317 // Propagate track
318 //
319 int try_again=ROWS_TO_SKIP;
320 Double_t alpha=sec->GetAlpha();
321 int ns=int(2*TMath::Pi()/alpha)+1;
8c555625 322
fe4da5cc 323 for (int nr=ri; nr>=rf; nr--) {
324 Double_t x=sec[s].GetX(nr), ymax=sec[s].GetMaxY(nr);
8c555625 325 if (!t.PropagateTo(x)) return -1;
326
fe4da5cc 327 const AliTPCcluster *cl=0;
328 Double_t max_chi2=MAX_CHI2;
329 const AliTPCRow& row=sec[s][nr];
330 Double_t sy2=SigmaY2(t.GetX(),t.GetTgl(),t.GetPt());
331 Double_t sz2=SigmaZ2(t.GetX(),t.GetTgl());
8c555625 332 Double_t road=3.*sqrt(t.GetSigmaY2() + 4*sy2), y=t.GetY(), z=t.GetZ();
333
fe4da5cc 334 if (road>30) {
335 if (t>3) cerr<<t<<" AliTPCtrack warning: Too broad road !\n";
8c555625 336 return -1;
fe4da5cc 337 }
8c555625 338
339 if (row) {
fe4da5cc 340 for (int i=row.Find(y-road); i<row; i++) {
341 AliTPCcluster* c=(AliTPCcluster*)(row[i]);
342 if (c->fY > y+road) break;
343 if (c->IsUsed()) continue;
8c555625 344 if ((c->fZ - z)*(c->fZ - z) > 9.*(t.GetSigmaZ2() + 4*sz2)) continue;
fe4da5cc 345 Double_t chi2=t.GetPredictedChi2(c);
346 if (chi2 > max_chi2) continue;
347 max_chi2=chi2;
348 cl=c;
349 }
8c555625 350 }
fe4da5cc 351 if (cl) {
352 t.Update(cl,max_chi2);
353 try_again=ROWS_TO_SKIP;
354 } else {
8c555625 355 if (try_again==0) break;
356 if (y > ymax) {
357 s = (s+1) % ns;
358 if (!t.Rotate(alpha)) return -1;
359 } else if (y <-ymax) {
360 s = (s-1+ns) % ns;
361 if (!t.Rotate(-alpha)) return -1;
fe4da5cc 362 }
8c555625 363 try_again--;
fe4da5cc 364 }
365 }
8c555625 366
fe4da5cc 367 return s;
368}
369
8c555625 370
fe4da5cc 371//_____________________________________________________________________________
8c555625 372static void MakeSeeds(TObjArray& seeds,const AliTPCSector* sec,int i1,int i2,
373const AliTPCParam *p)
fe4da5cc 374{
375 //
376 // Find seed for tracking
377 //
378 TMatrix C(5,5); TVector x(5);
379 int max_sec=L_MAXSEC/2;
380 for (int ns=0; ns<max_sec; ns++) {
381 int nl=sec[(ns-1+max_sec)%max_sec][i2];
382 int nm=sec[ns][i2];
383 int nu=sec[(ns+1)%max_sec][i2];
384 Double_t alpha=sec[ns].GetAlpha();
385 const AliTPCRow& r1=sec[ns][i1];
386 for (int is=0; is < r1; is++) {
387 Double_t x1=sec[ns].GetX(i1), y1=r1[is]->fY, z1=r1[is]->fZ;
388 for (int js=0; js < nl+nm+nu; js++) {
389 const AliTPCcluster *cl;
390 Double_t cs,sn;
8c555625 391 int ks;
fe4da5cc 392
393 if (js<nl) {
8c555625 394 ks=(ns-1+max_sec)%max_sec;
fe4da5cc 395 const AliTPCRow& r2=sec[(ns-1+max_sec)%max_sec][i2];
396 cl=r2[js];
397 cs=cos(alpha); sn=sin(alpha);
398 } else
399 if (js<nl+nm) {
8c555625 400 ks=ns;
fe4da5cc 401 const AliTPCRow& r2=sec[ns][i2];
402 cl=r2[js-nl];
403 cs=1; sn=0.;
404 } else {
8c555625 405 ks=(ns+1)%max_sec;
fe4da5cc 406 const AliTPCRow& r2=sec[(ns+1)%max_sec][i2];
407 cl=r2[js-nl-nm];
408 cs=cos(alpha); sn=-sin(alpha);
409 }
410 Double_t x2=sec[ns].GetX(i2), y2=cl->fY, z2=cl->fZ;
411 //if (z1*z2 < 0) continue;
412 //if (TMath::Abs(z1) < TMath::Abs(z2)) continue;
413
414 Double_t tmp= x2*cs+y2*sn;
415 y2 =-x2*sn+y2*cs;
416 x2=tmp;
417
418 x(0)=y1;
419 x(1)=z1;
420 x(2)=f1(x1,y1,x2,y2,0.,0.);
421 x(3)=f2(x1,y1,x2,y2,0.,0.);
422 x(4)=f3(x1,y1,x2,y2,z1,z2);
423
424 if (TMath::Abs(x(2)*x1-x(3)) >= 0.999) continue;
425
426 if (TMath::Abs(x(4)) > 1.2) continue;
8c555625 427
fe4da5cc 428 Double_t a=asin(x(3));
fe4da5cc 429 Double_t zv=z1 - x(4)/x(2)*(a+asin(x(2)*x1-x(3)));
430 if (TMath::Abs(zv)>33.) continue;
8c555625 431
fe4da5cc 432 TMatrix X(6,6); X=0.;
433 X(0,0)=r1[is]->fSigmaY2; X(1,1)=r1[is]->fSigmaZ2;
434 X(2,2)=cl->fSigmaY2; X(3,3)=cl->fSigmaZ2;
435 X(4,4)=3./12.; X(5,5)=3./12.;
436 TMatrix F(5,6); F.UnitMatrix();
437 Double_t sy=sqrt(X(0,0)), sz=sqrt(X(1,1));
438 F(2,0)=(f1(x1,y1+sy,x2,y2,0.,0.)-x(2))/sy;
439 F(2,2)=(f1(x1,y1,x2,y2+sy,0.,0.)-x(2))/sy;
440 F(2,4)=(f1(x1,y1,x2,y2,0.,0.+sy)-x(2))/sy;
441 F(3,0)=(f2(x1,y1+sy,x2,y2,0.,0.)-x(3))/sy;
442 F(3,2)=(f2(x1,y1,x2,y2+sy,0.,0.)-x(3))/sy;
443 F(3,4)=(f2(x1,y1,x2,y2,0.,0.+sy)-x(3))/sy;
444 F(4,0)=(f3(x1,y1+sy,x2,y2,z1,z2)-x(4))/sy;
445 F(4,1)=(f3(x1,y1,x2,y2,z1+sz,z2)-x(4))/sz;
446 F(4,2)=(f3(x1,y1,x2,y2+sy,z1,z2)-x(4))/sy;
447 F(4,3)=(f3(x1,y1,x2,y2,z1,z2+sz)-x(4))/sz;
448 F(4,4)=0;
449 F(3,3)=0;
450
451 TMatrix t(F,TMatrix::kMult,X);
452 C.Mult(t,TMatrix(TMatrix::kTransposed,F));
8c555625 453
454 TrackSeed *track=new TrackSeed(*(r1[is]),x,C,p);
455 int rc=FindProlongation(*track,sec,ns,i1-1,i2);
456 if (rc<0 || *track<(i1-i2)/2) delete track;
457 else seeds.AddLast(track);
fe4da5cc 458 }
459 }
460 }
461}
462
463//_____________________________________________________________________________
464void AliTPC::Clusters2Tracks()
465{
466 //
467 // TPC Track finder from clusters.
468 //
469 if (!fClusters) return;
8c555625 470
471 AliTPCParam *p=&fDigParam->GetParam();
472 Int_t nrow_low=p->GetNRowLow();
473 Int_t nrow_up=p->GetNRowUp();
474
fe4da5cc 475 AliTPCSSector ssec[S_MAXSEC/2];
8c555625 476 for (int i=0; i<S_MAXSEC/2; i++) ssec[i].SetUp(p);
477
fe4da5cc 478 AliTPCLSector lsec[L_MAXSEC/2];
8c555625 479 for (int j=0; j<L_MAXSEC/2; j++) lsec[j].SetUp(p);
480
fe4da5cc 481 int ncl=fClusters->GetEntriesFast();
482 while (ncl--) {
483 AliTPCcluster *c=(AliTPCcluster*)fClusters->UncheckedAt(ncl);
8c555625 484
485 int sec=int(c->fSector)-1, row=int(c->fPadRow)-1;
fe4da5cc 486
487 if (sec<24) {
488 if (row<0 || row>nrow_low) {cerr<<"low !!!"<<row<<endl; continue;}
489 ssec[sec%12][row].InsertCluster(c);
490 } else {
491 if (row<0 || row>nrow_up ) {cerr<<"up !!!"<<row<<endl; continue;}
492 sec -= 24;
493 lsec[sec%24][row].InsertCluster(c);
494 }
495 }
496
497
498 TObjArray seeds(20000);
8c555625 499 MakeSeeds(seeds,lsec,nrow_up-1,nrow_up-1-8,p);
500 MakeSeeds(seeds,lsec,nrow_up-1-4,nrow_up-1-4-8,p);
501
fe4da5cc 502 seeds.Sort();
503
504 int found=0;
505 int nseed=seeds.GetEntriesFast();
506
507 for (int s=0; s<nseed; s++) {
508 AliTPCtrack& t=*((AliTPCtrack*)seeds.UncheckedAt(s));
509 Double_t alpha=t.GetAlpha();
510 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
511 if (alpha < 0. ) alpha += 2.*TMath::Pi();
512 int ns=int(alpha/lsec->GetAlpha() + 0.5);
513
514 Double_t x=t.GetX();
515 int nr;
8c555625 516 if (x<p->GetPadRowRadiiUp(nrow_up-1-4-7)) nr=nrow_up-1-4-8;
517 else if (x<p->GetPadRowRadiiUp(nrow_up-1-7)) nr=nrow_up-1-8;
fe4da5cc 518 else {cerr<<x<<" =x !!!\n"; continue;}
8c555625 519
fe4da5cc 520 int ls=FindProlongation(t,lsec,ns,nr-1);
8c555625 521 if (ls<0) continue;
fe4da5cc 522 x=t.GetX(); alpha=lsec[ls].GetAlpha(); //
523 Double_t phi=ls*alpha + atan(t.GetY()/x); // Find S-sector
524 int ss=int(0.5*(phi/alpha+1)); //
525 alpha *= 2*(ss-0.5*ls); // and rotation angle
526 if (!t.Rotate(alpha)) continue; //
527 ss %= (S_MAXSEC/2); //
528
8c555625 529 if (FindProlongation(t,ssec,ss,nrow_low-1)<0) continue;
fe4da5cc 530 if (t < 30) continue;
531
532 AddTrack(t);
533 t.UseClusters();
534 cerr<<found++<<'\r';
535 }
536}
537
538//_____________________________________________________________________________
539void AliTPC::CreateMaterials()
540{
8c555625 541 //-----------------------------------------------
fe4da5cc 542 // Create Materials for for TPC
8c555625 543 //-----------------------------------------------
544
545 //-----------------------------------------------------------------
546 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
547 //-----------------------------------------------------------------
fe4da5cc 548
549 AliMC* pMC = AliMC::GetMC();
550
551 Int_t ISXFLD=gAlice->Field()->Integ();
552 Float_t SXMGMX=gAlice->Field()->Max();
553
554 Float_t absl, radl, a, d, z;
555 Float_t dg;
556 Float_t x0ne;
557 Float_t buf[1];
558 Int_t nbuf;
559
560 // --- Methane (CH4) ---
561 Float_t am[2] = { 12.,1. };
562 Float_t zm[2] = { 6.,1. };
563 Float_t wm[2] = { 1.,4. };
564 Float_t dm = 7.17e-4;
565 // --- The Neon CO2 90/10 mixture ---
566 Float_t ag[2] = { 20.18 };
567 Float_t zg[2] = { 10. };
568 Float_t wg[2] = { .8,.2 };
8c555625 569 Float_t dne = 9e-4; // --- Neon density in g/cm3 ---
570
fe4da5cc 571 // --- Mylar (C5H4O2) ---
572 Float_t amy[3] = { 12.,1.,16. };
573 Float_t zmy[3] = { 6.,1.,8. };
574 Float_t wmy[3] = { 5.,4.,2. };
575 Float_t dmy = 1.39;
576 // --- CO2 ---
577 Float_t ac[2] = { 12.,16. };
578 Float_t zc[2] = { 6.,8. };
579 Float_t wc[2] = { 1.,2. };
580 Float_t dc = .001977;
581 // --- Carbon density and radiation length ---
582 Float_t densc = 2.265;
583 Float_t radlc = 18.8;
584 // --- Silicon ---
585 Float_t asi = 28.09;
586 Float_t zsi = 14.;
587 Float_t desi = 2.33;
588 Float_t radsi = 9.36;
589
590 // --- Define the various materials for GEANT ---
591 AliMaterial(0, "Al $", 26.98, 13., 2.7, 8.9, 37.2);
592 x0ne = 28.94 / dne;
593 AliMaterial(1, "Ne $", 20.18, 10., dne, x0ne, 999.);
594
595 // -- Methane, defined by the proportions of atoms
596
597 AliMixture(2, "Methane$", am, zm, dm, -2, wm);
598
599 // --- CO2, defined by the proportion of atoms
600
601 AliMixture(7, "CO2$", ac, zc, dc, -2, wc);
602
603 // -- Get A,Z etc. for CO2
604
605 char namate[21];
606 pMC->Gfmate((*fIdmate)[7], namate, a, z, d, radl, absl, buf, nbuf);
fe4da5cc 607 ag[1] = a;
608 zg[1] = z;
609 dg = dne * .9 + dc * .1;
fe4da5cc 610
611 // -- Create Ne/CO2 90/10 mixture
612
613 AliMixture(3, "Gas-mixt $", ag, zg, dg, 2, wg);
614 AliMixture(4, "Gas-mixt $", ag, zg, dg, 2, wg);
615
616 AliMaterial(5, "G10$", 20., 10., 1.7, 19.4, 999.);
617 AliMixture(6, "Mylar$", amy, zmy, dmy, -3, wmy);
618
619 a = ac[0];
620 z = zc[0];
621 AliMaterial(8, "Carbon", a, z, densc, radlc, 999.);
622
623 AliMaterial(9, "Silicon", asi, zsi, desi, radsi, 999.);
624 AliMaterial(99, "Air$", 14.61, 7.3, .001205, 30420., 67500.);
625
626 AliMedium(400, "Al wall$", 0, 0, ISXFLD, SXMGMX, 10., .1, .1, .1, .1);
627 AliMedium(402, "Gas mix1$", 3, 0, ISXFLD, SXMGMX, 10., .01,.1, .001, .01);
628 AliMedium(403, "Gas mix2$", 3, 0, ISXFLD, SXMGMX, 10., .01,.1, .001, .01);
629 AliMedium(404, "Gas mix3$", 4, 1, ISXFLD, SXMGMX, 10., .01,.1, .001, .01);
630 AliMedium(405, "G10 pln$", 5, 0, ISXFLD, SXMGMX, 10., .1, .1, .1, .1 );
631 AliMedium(406, "Mylar $", 6, 0, ISXFLD, SXMGMX, 10., .01,.1, .001, .01);
632 AliMedium(407, "CO2 $", 7, 0, ISXFLD, SXMGMX, 10., .01,.1, .01, .01);
633 AliMedium(408, "Carbon $", 8, 0, ISXFLD, SXMGMX, 10., .1, .1, .1, .1 );
634 AliMedium(409, "Silicon$", 9, 0, ISXFLD, SXMGMX, 10., .1, .1, .1, .1 );
635 AliMedium(499, "Air gap$", 99, 0, ISXFLD, SXMGMX, 10., .1, .1, .1, .1 );
636}
637
638//_____________________________________________________________________________
639struct Bin {
640 const AliTPCdigit *dig;
641 int idx;
642 Bin() {dig=0; idx=-1;}
643};
644
645struct PreCluster : public AliTPCcluster {
646 const AliTPCdigit* summit;
647 int idx;
648 int cut;
649 int npeaks;
8c555625 650 PreCluster();
fe4da5cc 651};
8c555625 652PreCluster::PreCluster() : AliTPCcluster() {cut=npeaks=0;}
653
fe4da5cc 654
655//_____________________________________________________________________________
656static void FindCluster(int i, int j, Bin bins[][MAXTPCTBK+2], PreCluster &c)
657{
658 //
659 // Find clusters
660 //
661 Bin& b=bins[i][j];
8c555625 662 double q=double(b.dig->fSignal);
663
fe4da5cc 664 if (q<0) { // digit is at the edge of the pad row
665 q=-q;
666 c.cut=1;
667 }
668 if (b.idx >= 0 && b.idx != c.idx) {
669 c.idx=b.idx;
670 c.npeaks++;
671 }
672
673 if (q > TMath::Abs(c.summit->fSignal)) c.summit=b.dig;
674
675 c.fY += i*q;
676 c.fZ += j*q;
677 c.fSigmaY2 += i*i*q;
678 c.fSigmaZ2 += j*j*q;
679 c.fQ += q;
8c555625 680
fe4da5cc 681 b.dig = 0; b.idx = c.idx;
682
683 if (bins[i-1][j].dig) FindCluster(i-1,j,bins,c);
684 if (bins[i][j-1].dig) FindCluster(i,j-1,bins,c);
685 if (bins[i+1][j].dig) FindCluster(i+1,j,bins,c);
686 if (bins[i][j+1].dig) FindCluster(i,j+1,bins,c);
687
688}
689
690//_____________________________________________________________________________
691void AliTPC::Digits2Clusters()
692{
693 //
694 // simple TPC cluster finder from digits.
695 //
8c555625 696 //
697 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
698
fe4da5cc 699 const Int_t MAX_PAD=200+2, MAX_BUCKET=MAXTPCTBK+2;
8c555625 700 const Int_t Q_min=60;
701 const Int_t THRESHOLD=20;
fe4da5cc 702
8c555625 703 TTree *t=(TTree*)gDirectory->Get("TreeD0_Param1");
704 t->GetBranch("Digits")->SetAddress(&fDigits);
fe4da5cc 705 Int_t sectors_by_rows=(Int_t)t->GetEntries();
706
707 int ncls=0;
708
709 for (Int_t n=0; n<sectors_by_rows; n++) {
710 if (!t->GetEvent(n)) continue;
711 Bin bins[MAX_PAD][MAX_BUCKET];
712 AliTPCdigit *dig=(AliTPCdigit*)fDigits->UncheckedAt(0);
713 Int_t nsec=dig->fSector, nrow=dig->fPadRow;
714 Int_t ndigits=fDigits->GetEntriesFast();
715
716 int npads; int sign_z;
717 if (nsec<25) {
718 sign_z=(nsec<13) ? 1 : -1;
8c555625 719 npads=fTPCParam->GetNPadsLow(nrow-1);
fe4da5cc 720 } else {
721 sign_z=(nsec<49) ? 1 : -1;
8c555625 722 npads=fTPCParam->GetNPadsUp(nrow-1);
fe4da5cc 723 }
724
725 int ndig;
726 for (ndig=0; ndig<ndigits; ndig++) {
727 dig=(AliTPCdigit*)fDigits->UncheckedAt(ndig);
728 int i=dig->fPad, j=dig->fTime;
729 if (dig->fSignal >= THRESHOLD) bins[i][j].dig=dig;
730 if (i==1 || i==npads || j==1 || j==MAXTPCTBK) dig->fSignal*=-1;
731 }
732
733 int ncl=0;
734 int i,j;
8c555625 735
fe4da5cc 736 for (i=1; i<MAX_PAD-1; i++) {
737 for (j=1; j<MAX_BUCKET-1; j++) {
738 if (bins[i][j].dig == 0) continue;
739 PreCluster c; c.summit=bins[i][j].dig; c.idx=ncls;
740 FindCluster(i, j, bins, c);
fe4da5cc 741 c.fY /= c.fQ;
742 c.fZ /= c.fQ;
8c555625 743
744 double s2 = c.fSigmaY2/c.fQ - c.fY*c.fY;
745 c.fSigmaY2 = s2 + 1./12.;
746 c.fSigmaY2 *= fTPCParam->GetPadPitchWidth()*
747 fTPCParam->GetPadPitchWidth();
748 if (s2 != 0.) c.fSigmaY2 *= 0.022*8*4;
749
750 s2 = c.fSigmaZ2/c.fQ - c.fZ*c.fZ;
751 c.fSigmaZ2 = s2 + 1./12.;
752 c.fSigmaZ2 *= fTPCParam->GetZWidth()*fTPCParam->GetZWidth();
753 if (s2 != 0.) c.fSigmaZ2 *= 0.068*4*4;
754
755 c.fY = (c.fY - 0.5 - 0.5*npads)*fTPCParam->GetPadPitchWidth();
756 c.fZ = fTPCParam->GetZWidth()*(c.fZ+1);
757 c.fZ -= 3.*fTPCParam->GetZSigma(); // PASA delay
fe4da5cc 758 c.fZ = sign_z*(z_end - c.fZ);
8c555625 759 //c.fZ += 0.023;
760 c.fSector=nsec;
761 c.fPadRow=nrow;
fe4da5cc 762 c.fTracks[0]=c.summit->fTracks[0];
763 c.fTracks[1]=c.summit->fTracks[1];
764 c.fTracks[2]=c.summit->fTracks[2];
8c555625 765
fe4da5cc 766 if (c.cut) {
767 c.fSigmaY2 *= 25.;
768 c.fSigmaZ2 *= 4.;
769 }
770
771 AddCluster(c); ncls++; ncl++;
772 }
773 }
774
775 for (ndig=0; ndig<ndigits; ndig++) {
776 dig=(AliTPCdigit*)fDigits->UncheckedAt(ndig);
8c555625 777 if (TMath::Abs(dig->fSignal) >= 0)
fe4da5cc 778 bins[dig->fPad][dig->fTime].dig=dig;
779 }
780
781 for (i=1; i<MAX_PAD-1; i++) {
782 for (j=1; j<MAX_BUCKET-1; j++) {
783 if (bins[i][j].dig == 0) continue;
784 PreCluster c; c.summit=bins[i][j].dig; c.idx=ncls;
785 FindCluster(i, j, bins, c);
786 if (c.fQ <= Q_min) continue; //noise cluster
8c555625 787 if (c.npeaks>1) continue; //overlapped cluster
fe4da5cc 788 c.fY /= c.fQ;
789 c.fZ /= c.fQ;
8c555625 790
791 double s2 = c.fSigmaY2/c.fQ - c.fY*c.fY;
792 c.fSigmaY2 = s2 + 1./12.;
793 c.fSigmaY2 *= fTPCParam->GetPadPitchWidth()*
794 fTPCParam->GetPadPitchWidth();
795 if (s2 != 0.) c.fSigmaY2 *= 0.022*4*0.6*4;
796
797 s2 = c.fSigmaZ2/c.fQ - c.fZ*c.fZ;
798 c.fSigmaZ2 = s2 + 1./12.;
799 c.fSigmaZ2 *= fTPCParam->GetZWidth()*fTPCParam->GetZWidth();
800 if (s2 != 0.) c.fSigmaZ2 *= 0.068*4*0.4;
801
802 c.fY = (c.fY - 0.5 - 0.5*npads)*fTPCParam->GetPadPitchWidth();
803 c.fZ = fTPCParam->GetZWidth()*(c.fZ+1);
804 c.fZ -= 3.*fTPCParam->GetZSigma(); // PASA delay
fe4da5cc 805 c.fZ = sign_z*(z_end - c.fZ);
8c555625 806 //c.fZ += 0.023;
807 c.fSector=nsec;
808 c.fPadRow=nrow;
fe4da5cc 809 c.fTracks[0]=c.summit->fTracks[0];
810 c.fTracks[1]=c.summit->fTracks[1];
811 c.fTracks[2]=c.summit->fTracks[2];
812
813 if (c.cut) {
814 c.fSigmaY2 *= 25.;
815 c.fSigmaZ2 *= 4.;
816 }
817
818 if (c.npeaks==0) {AddCluster(c); ncls++; ncl++;}
819 else {
820 new ((*fClusters)[c.idx]) AliTPCcluster(c);
821 }
822 }
823 }
824
825 cerr<<"sector, row, digits, clusters: "
826 <<nsec<<' '<<nrow<<' '<<ndigits<<' '<<ncl<<" \r";
827
828 fDigits->Clear();
829
830 }
831}
832
833//_____________________________________________________________________________
834void AliTPC::ElDiff(Float_t *xyz)
835{
8c555625 836 //--------------------------------------------------
fe4da5cc 837 // calculates the diffusion of a single electron
8c555625 838 //--------------------------------------------------
839
840 //-----------------------------------------------------------------
841 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
842 //-----------------------------------------------------------------
843 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
fe4da5cc 844 Float_t driftl;
8c555625 845
fe4da5cc 846 Float_t z0=xyz[2];
8c555625 847
fe4da5cc 848 driftl=z_end-TMath::Abs(xyz[2]);
8c555625 849
fe4da5cc 850 if(driftl<0.01) driftl=0.01;
8c555625 851
852 // check the attachment
853
fe4da5cc 854 driftl=TMath::Sqrt(driftl);
8c555625 855
856 // Float_t sig_t = driftl*diff_t;
857 //Float_t sig_l = driftl*diff_l;
858 Float_t sig_t = driftl*fTPCParam->GetDiffT();
859 Float_t sig_l = driftl*fTPCParam->GetDiffL();
fe4da5cc 860 xyz[0]=gRandom->Gaus(xyz[0],sig_t);
861 xyz[1]=gRandom->Gaus(xyz[1],sig_t);
862 xyz[2]=gRandom->Gaus(xyz[2],sig_l);
8c555625 863
fe4da5cc 864 if (TMath::Abs(xyz[2])>z_end){
8c555625 865 xyz[2]=TMath::Sign(z_end,z0);
fe4da5cc 866 }
867 if(xyz[2]*z0 < 0.){
8c555625 868 Float_t eps = 0.0001;
869 xyz[2]=TMath::Sign(eps,z0);
fe4da5cc 870 }
871}
872
873//_____________________________________________________________________________
874void AliTPC::Hits2Clusters()
875{
8c555625 876 //--------------------------------------------------------
fe4da5cc 877 // TPC simple cluster generator from hits
878 // obtained from the TPC Fast Simulator
8c555625 879 // The point errors are taken from the parametrization
880 //--------------------------------------------------------
881
882 //-----------------------------------------------------------------
883 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
884 //-----------------------------------------------------------------
885 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
fe4da5cc 886 Float_t sigma_rphi,sigma_z,cl_rphi,cl_z;
887 //
888 GParticle *particle; // pointer to a given particle
889 AliTPChit *tpcHit; // pointer to a sigle TPC hit
890 TClonesArray *Particles; //pointer to the particle list
891 Int_t sector,nhits;
892 Int_t ipart;
893 Float_t xyz[5];
894 Float_t pl,pt,tanth,rpad,ratio;
fe4da5cc 895 Float_t cph,sph;
896
897 //---------------------------------------------------------------
898 // Get the access to the tracks
899 //---------------------------------------------------------------
900
901 TTree *TH = gAlice->TreeH();
902 Stat_t ntracks = TH->GetEntries();
903
904 //------------------------------------------------------------
905 // Loop over all sectors (72 sectors)
906 // Sectors 1-24 are lower sectors, 1-12 z>0, 13-24 z<0
907 // Sectors 25-72 are upper sectors, 25-48 z>0, 49-72 z<0
908 //
909 // First cluster for sector 1 starts at "0"
910 //------------------------------------------------------------
911
912
913 fClustersIndex[0] = 0;
914
915 //
916 for(Int_t isec=1;isec<fNsectors+1;isec++){
8c555625 917 //MI change
918 fTPCParam->AdjustAngles(isec,cph,sph);
fe4da5cc 919
920 //------------------------------------------------------------
921 // Loop over tracks
922 //------------------------------------------------------------
923
924 for(Int_t track=0;track<ntracks;track++){
925 ResetHits();
926 TH->GetEvent(track);
927 //
928 // Get number of the TPC hits and a pointer
929 // to the particles
930 //
931 nhits=fHits->GetEntriesFast();
932 Particles=gAlice->Particles();
933 //
934 // Loop over hits
935 //
936 for(Int_t hit=0;hit<nhits;hit++){
937 tpcHit=(AliTPChit*)fHits->UncheckedAt(hit);
938 sector=tpcHit->fSector; // sector number
939 if(sector != isec) continue; //terminate iteration
940 ipart=tpcHit->fTrack;
941 particle=(GParticle*)Particles->UncheckedAt(ipart);
942 pl=particle->GetPz();
943 pt=particle->GetPT();
944 if(pt < 1.e-9) pt=1.e-9;
945 tanth=pl/pt;
946 tanth = TMath::Abs(tanth);
947 rpad=TMath::Sqrt(tpcHit->fX*tpcHit->fX + tpcHit->fY*tpcHit->fY);
948 ratio=0.001*rpad/pt; // pt must be in MeV/c - historical reason
949
950 // space-point resolutions
951
952 sigma_rphi=SigmaY2(rpad,tanth,pt);
953 sigma_z =SigmaZ2(rpad,tanth );
954
955 // cluster widths
956
957 cl_rphi=ac_rphi-bc_rphi*rpad*tanth+cc_rphi*ratio*ratio;
958 cl_z=ac_z-bc_z*rpad*tanth+cc_z*tanth*tanth;
959
960 // temporary protection
961
962 if(sigma_rphi < 0.) sigma_rphi=0.4e-3;
963 if(sigma_z < 0.) sigma_z=0.4e-3;
964 if(cl_rphi < 0.) cl_rphi=2.5e-3;
965 if(cl_z < 0.) cl_z=2.5e-5;
966
967 //
968
969 //
970 // smearing --> rotate to the 1 (13) or to the 25 (49) sector,
971 // then the inaccuracy in a X-Y plane is only along Y (pad row)!
972 //
973 Float_t xprim= tpcHit->fX*cph + tpcHit->fY*sph;
974 Float_t yprim=-tpcHit->fX*sph + tpcHit->fY*cph;
975 xyz[0]=gRandom->Gaus(yprim,TMath::Sqrt(sigma_rphi)); // y
8c555625 976 Double_t alpha=(sector<25) ? alpha_low : alpha_up;
977 if (TMath::Abs(xyz[0]/xprim) > TMath::Tan(0.5*alpha)) xyz[0]=yprim;
fe4da5cc 978 xyz[1]=gRandom->Gaus(tpcHit->fZ,TMath::Sqrt(sigma_z)); // z
8c555625 979 if (TMath::Abs(xyz[1]) > 250) xyz[1]=tpcHit->fZ;
fe4da5cc 980 xyz[2]=tpcHit->fQ; // q
981 xyz[3]=sigma_rphi; // fSigmaY2
982 xyz[4]=sigma_z; // fSigmaZ2
983
984 //find row number
8c555625 985 //MI we must change
986 Int_t row = fTPCParam->GetPadRow(sector,xprim) ;
fe4da5cc 987 // and finally add the cluster
8c555625 988 Int_t tracks[5]={tpcHit->fTrack, -1, -1, sector, row+1};
fe4da5cc 989 AddCluster(xyz,tracks);
990
991 } // end of loop over hits
992 } // end of loop over tracks
993
994 fClustersIndex[isec] = fNclusters; // update clusters index
995
996 } // end of loop over sectors
997
998 fClustersIndex[fNsectors]--; // set end of the clusters buffer
999
1000}
1001
8c555625 1002
1003void AliTPC::Hits2Digits()
1004{
1005
1006 //----------------------------------------------------
1007 // Loop over all sectors (72 sectors)
1008 // Sectors 1-24 are lower sectors, 1-12 z>0, 13-24 z<0
1009 // Sectors 25-72 are upper sectors, 25-48 z>0, 49-72 z<0
1010 //----
1011 for(Int_t isec=1;isec<fNsectors+1;isec++) Hits2DigitsSector(isec);
1012}
1013
1014
fe4da5cc 1015//_____________________________________________________________________________
8c555625 1016void AliTPC::Hits2DigitsSector(Int_t isec)
fe4da5cc 1017{
8c555625 1018 //-------------------------------------------------------------------
fe4da5cc 1019 // TPC conversion from hits to digits.
8c555625 1020 //-------------------------------------------------------------------
1021
1022 //-----------------------------------------------------------------
1023 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1024 //-----------------------------------------------------------------
1025
fe4da5cc 1026 //-------------------------------------------------------
8c555625 1027 // Get the access to the track hits
fe4da5cc 1028 //-------------------------------------------------------
8c555625 1029
1030 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1031 TTree *TH = gAlice->TreeH(); // pointer to the hits tree
fe4da5cc 1032 Stat_t ntracks = TH->GetEntries();
8c555625 1033
1034 if( ntracks > 0){
1035
1036 //-------------------------------------------
1037 // Only if there are any tracks...
1038 //-------------------------------------------
1039
fe4da5cc 1040
8c555625 1041 // TObjArrays for three neighouring pad-rows
1042
1043 TObjArray **rowTriplet = new TObjArray* [3];
fe4da5cc 1044
8c555625 1045 // TObjArray-s for each pad-row
1046
1047 TObjArray **row;
1048
1049 for (Int_t trip=0;trip<3;trip++){
1050 rowTriplet[trip]=new TObjArray;
fe4da5cc 1051 }
8c555625 1052
1053
fe4da5cc 1054
8c555625 1055 printf("*** Processing sector number %d ***\n",isec);
1056
1057 Int_t nrows =fTPCParam->GetNRow(isec);
1058
1059 row= new TObjArray* [nrows];
fe4da5cc 1060
8c555625 1061 MakeSector(isec,nrows,TH,ntracks,row);
1062
1063 //--------------------------------------------------------
1064 // Digitize this sector, row by row
1065 // row[i] is the pointer to the TObjArray of TVectors,
1066 // each one containing electrons accepted on this
1067 // row, assigned into tracks
1068 //--------------------------------------------------------
1069
1070 Int_t i;
1071
1072 for (i=0;i<nrows;i++){
1073
1074 // Triplets for i = 0 and i=1 are identical!
1075 // The same for i = nrows-1 and nrows!
1076
1077 if(i != 1 && i != nrows-1){
1078 MakeTriplet(i,rowTriplet,row);
1079 }
1080
1081 DigitizeRow(i,isec,rowTriplet);
1082
1083 fDigParam->Fill();
1084
1085 Int_t ndig=fDigParam->GetArray()->GetEntriesFast();
1086
1087 printf("*** Sector, row, digits %d %d %d ***\n",isec,i,ndig);
1088
1089 ResetDigits(); // reset digits for this row after storing them
1090
1091 } // end of the sector digitization
1092
1093 // delete the last triplet
1094
1095 for (i=0;i<3;i++) rowTriplet[i]->Delete();
1096
1097 delete [] row; // delete the array of pointers to TObjArray-s
1098
1099 } // ntracks >0
1100} // end of Hits2Digits
1101//_____________________________________________________________________________
1102void AliTPC::MakeTriplet(Int_t row,
1103 TObjArray **rowTriplet, TObjArray **prow)
1104{
1105 //------------------------------------------------------------------
1106 // Makes the "triplet" of the neighbouring pad-row for the
1107 // digitization including the cross-talk between the pad-rows
1108 //------------------------------------------------------------------
1109
1110 //-----------------------------------------------------------------
1111 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1112 //-----------------------------------------------------------------
1113
1114 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1115 Float_t gasgain = fTPCParam->GetGasGain();
1116 Int_t nTracks[3];
1117
1118 Int_t nElements,nElectrons;
1119
1120 TVector *pv;
1121 TVector *tv;
1122
1123 //-------------------------------------------------------------------
1124 // pv is an "old" track, i.e. label + triplets of (x,y,z)
1125 // for each electron
1126 //
1127 //-------------------------------------------------------------------
1128
1129
1130 Int_t i1,i2;
1131 Int_t nel,nt;
1132
1133 if(row == 0 || row == 1){
1134
1135 // create entire triplet for the first AND the second row
1136
1137 nTracks[0] = prow[0]->GetEntries();
1138 nTracks[1] = prow[1]->GetEntries();
1139 nTracks[2] = prow[2]->GetEntries();
1140
1141 for(i1=0;i1<3;i1++){
1142 nt = nTracks[i1]; // number of tracks for this row
1143
1144 for(i2=0;i2<nt;i2++){
1145 pv = (TVector*)prow[i1]->At(i2);
1146 TVector &v1 = *pv;
1147 nElements = pv->GetNrows();
1148 nElectrons = (nElements-1)/3;
1149
1150 tv = new TVector(4*nElectrons+1); // create TVector for a modified track
1151 TVector &v2 = *tv;
1152 v2(0)=v1(0); //track label
1153
1154 for(nel=0;nel<nElectrons;nel++){
1155 Int_t idx1 = nel*3;
1156 Int_t idx2 = nel*4;
1157 // Avalanche, including fluctuations
1158 Int_t aval = (Int_t) (-gasgain*TMath::Log(gRandom->Rndm()));
1159 v2(idx2+1)= v1(idx1+1);
1160 v2(idx2+2)= v1(idx1+2);
1161 v2(idx2+3)= v1(idx1+3);
1162 v2(idx2+4)= (Float_t)aval; // in number of electrons!
1163 } // end of loop over electrons
1164 //
1165 // Add this track to a row
1166 //
1167
1168 rowTriplet[i1]->Add(tv);
1169
1170
1171 } // end of loop over tracks for this row
1172
1173 prow[i1]->Delete(); // remove "old" tracks
1174 delete prow[i1]; // delete TObjArray for this row
1175 prow[i1]=0; // set pointer to NULL
1176
1177 } // end of loop over row triplets
1178
1179
1180 }
1181 else{
1182
1183 rowTriplet[0]->Delete(); // remove old lower row
1184
1185 nTracks[0]=rowTriplet[1]->GetEntries(); // previous middle row
1186 nTracks[1]=rowTriplet[2]->GetEntries(); // previous upper row
1187 nTracks[2]=prow[row+1]->GetEntries(); // next row
1188
1189
1190 //-------------------------------------------
1191 // shift new tracks downwards
1192 //-------------------------------------------
1193
1194 for(i1=0;i1<nTracks[0];i1++){
1195 pv=(TVector*)rowTriplet[1]->At(i1);
1196 rowTriplet[0]->Add(pv);
1197 }
1198
1199 rowTriplet[1]->Clear(); // leave tracks on the heap!!!
1200
1201 for(i1=0;i1<nTracks[1];i1++){
1202 pv=(TVector*)rowTriplet[2]->At(i1);
1203 rowTriplet[1]->Add(pv);
1204 }
1205
1206 rowTriplet[2]->Clear(); // leave tracks on the heap!!!
1207
1208 //---------------------------------------------
1209 // Create new upper row
1210 //---------------------------------------------
1211
1212
1213
1214 for(i1=0;i1<nTracks[2];i1++){
1215 pv = (TVector*)prow[row+1]->At(i1);
1216 TVector &v1 = *pv;
1217 nElements = pv->GetNrows();
1218 nElectrons = (nElements-1)/3;
1219
1220 tv = new TVector(4*nElectrons+1); // create TVector for a modified track
1221 TVector &v2 = *tv;
1222 v2(0)=v1(0); //track label
1223
1224 for(nel=0;nel<nElectrons;nel++){
1225
1226 Int_t idx1 = nel*3;
1227 Int_t idx2 = nel*4;
1228 // Avalanche, including fluctuations
1229 Int_t aval = (Int_t)
1230 (-gasgain*TMath::Log(gRandom->Rndm()));
1231
1232 v2(idx2+1)= v1(idx1+1);
1233 v2(idx2+2)= v1(idx1+2);
1234 v2(idx2+3)= v1(idx1+3);
1235 v2(idx2+4)= (Float_t)aval; // in number of electrons!
1236 } // end of loop over electrons
1237
1238 rowTriplet[2]->Add(tv);
1239
1240 } // end of loop over tracks
1241
1242 prow[row+1]->Delete(); // delete tracks for this row
1243 delete prow[row+1]; // delete TObjArray for this row
1244 prow[row+1]=0; // set a pointer to NULL
1245
1246 }
1247
1248} // end of MakeTriplet
1249//_____________________________________________________________________________
1250void AliTPC::ExB(Float_t *xyz)
1251{
1252 //------------------------------------------------
1253 // ExB at the wires and wire number calulation
1254 //------------------------------------------------
1255
1256 //-----------------------------------------------------------------
1257 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1258 //-----------------------------------------------------------------
1259 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1260
1261 Float_t x1=xyz[0];
1262 fTPCParam->GetWire(x1); //calculate nearest wire position
1263 Float_t dx=xyz[0]-x1;
1264 xyz[1]+=dx*fTPCParam->GetOmegaTau();
1265
1266} // end of ExB
1267//_____________________________________________________________________________
1268void AliTPC::DigitizeRow(Int_t irow,Int_t isec,TObjArray **rowTriplet)
1269{
1270 //-----------------------------------------------------------
1271 // Single row digitization, coupling from the neighbouring
1272 // rows taken into account
1273 //-----------------------------------------------------------
1274
1275 //-----------------------------------------------------------------
1276 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1277 //-----------------------------------------------------------------
1278
1279
1280 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1281 Float_t chipgain= fTPCParam->GetChipGain();
1282 Float_t zerosup = fTPCParam->GetZeroSup();
1283 Int_t nrows =fTPCParam->GetNRow(isec);
1284
1285 Int_t nTracks[3];
1286 Int_t n_of_pads[3];
1287 Int_t IndexRange[4];
1288 Int_t i1;
1289 Int_t iFlag;
1290
1291 //
1292 // iFlag = 0 -> inner row, iFlag = 1 -> the middle one, iFlag = 2 -> the outer one
1293 //
1294
1295 nTracks[0]=rowTriplet[0]->GetEntries(); // lower row
1296 nTracks[1]=rowTriplet[1]->GetEntries(); // middle row
1297 nTracks[2]=rowTriplet[2]->GetEntries(); // upper row
1298
1299
1300 if(irow == 0){
1301 iFlag=0;
1302 n_of_pads[0]=fTPCParam->GetNPads(isec,0);
1303 n_of_pads[1]=fTPCParam->GetNPads(isec,1);
1304 }
1305 else if(irow == nrows-1){
1306 iFlag=2;
1307 n_of_pads[1]=fTPCParam->GetNPads(isec,irow-1);
1308 n_of_pads[2]=fTPCParam->GetNPads(isec,irow);
1309 }
1310 else {
1311 iFlag=1;
1312 for(i1=0;i1<3;i1++){
1313 n_of_pads[i1]=fTPCParam->GetNPads(isec,irow-1+i1);
1314 }
1315 }
1316
1317 //
1318 // Integrated signal for this row
1319 // and a single track signal
1320 //
1321
1322 TMatrix *m1 = new TMatrix(1,n_of_pads[iFlag],1,MAXTPCTBK); // integrated
1323 TMatrix *m2 = new TMatrix(1,n_of_pads[iFlag],1,MAXTPCTBK); // single
1324
1325 //
1326
1327 TMatrix &Total = *m1;
1328
1329 // Array of pointers to the label-signal list
1330
1331 Int_t NofDigits = n_of_pads[iFlag]*MAXTPCTBK; // number of digits for this row
1332
1333 Float_t **pList = new Float_t* [NofDigits];
1334
1335 Int_t lp;
1336
1337 for(lp=0;lp<NofDigits;lp++)pList[lp]=0; // set all pointers to NULL
1338
1339 //
1340 // Straight signal and cross-talk, cross-talk is integrated over all
1341 // tracks and added to the signal at the very end
1342 //
1343
1344
1345 for (i1=0;i1<nTracks[iFlag];i1++){
1346
1347 m2->Zero(); // clear single track signal matrix
1348
1349 Float_t TrackLabel =
1350 GetSignal(rowTriplet[iFlag],i1,n_of_pads[iFlag],m2,m1,IndexRange);
1351
1352 GetList(TrackLabel,n_of_pads[iFlag],m2,IndexRange,pList);
1353
1354 }
1355
1356 //
1357 // Cross talk from the neighbouring pad-rows
1358 //
1359
1360 TMatrix *m3 = new TMatrix(1,n_of_pads[iFlag],1,MAXTPCTBK); // cross-talk
1361
1362 TMatrix &Cross = *m3;
1363
1364 if(iFlag == 0){
1365
1366 // cross-talk from the outer row only (first pad row)
1367
1368 GetCrossTalk(0,rowTriplet[1],nTracks[1],n_of_pads,m3);
1369
1370 }
1371 else if(iFlag == 2){
1372
1373 // cross-talk from the inner row only (last pad row)
1374
1375 GetCrossTalk(2,rowTriplet[1],nTracks[1],n_of_pads,m3);
1376
1377 }
1378 else{
1379
1380 // cross-talk from both inner and outer rows
1381
1382 GetCrossTalk(3,rowTriplet[0],nTracks[0],n_of_pads,m3); // inner
1383 GetCrossTalk(4,rowTriplet[2],nTracks[2],n_of_pads,m3); //outer
1384 }
1385
1386 Total += Cross; // add the cross-talk
1387
1388 //
1389 // Convert analog signal to ADC counts
1390 //
1391
1392 Int_t tracks[3];
1393 Int_t digits[5];
1394
1395
1396 for(Int_t ip=1;ip<n_of_pads[iFlag]+1;ip++){
1397 for(Int_t it=1;it<MAXTPCTBK+1;it++){
1398
1399 Float_t q = Total(ip,it);
1400
1401 Int_t gi =(it-1)*n_of_pads[iFlag]+ip-1; // global index
1402
1403 q = gRandom->Gaus(q,fTPCParam->GetNoise()); // apply noise
1404 q *= (q_el*1.e15); // convert to fC
1405 q *= chipgain; // convert to mV
1406 q *= (adc_sat/dyn_range); // convert to ADC counts
1407
1408 if(q <zerosup) continue; // do not fill zeros
1409 if(q > adc_sat) q = adc_sat; // saturation
1410
1411 //
1412 // "real" signal or electronic noise (list = -1)?
1413 //
1414
1415 for(Int_t j1=0;j1<3;j1++){
1416 tracks[j1] = (pList[gi]) ?(Int_t)(*(pList[gi]+j1)) : -1;
1417 }
1418
1419 digits[0]=isec;
1420 digits[1]=irow+1;
1421 digits[2]=ip;
1422 digits[3]=it;
1423 digits[4]= (Int_t)q;
1424
1425 // Add this digit
1426
1427 AddDigit(tracks,digits);
1428
1429 } // end of loop over time buckets
1430 } // end of lop over pads
1431
1432 //
1433 // This row has been digitized, delete nonused stuff
1434 //
1435
1436 for(lp=0;lp<NofDigits;lp++){
1437 if(pList[lp]) delete [] pList[lp];
1438 }
1439
1440 delete [] pList;
1441
1442 delete m1;
1443 delete m2;
1444 delete m3;
1445
1446} // end of DigitizeRow
1447//_____________________________________________________________________________
1448Float_t AliTPC::GetSignal(TObjArray *p1, Int_t ntr, Int_t np, TMatrix *m1, TMatrix *m2,
1449 Int_t *IndexRange)
1450{
1451
1452 //---------------------------------------------------------------
1453 // Calculates 2-D signal (pad,time) for a single track,
1454 // returns a pointer to the signal matrix and the track label
1455 // No digitization is performed at this level!!!
1456 //---------------------------------------------------------------
1457
1458 //-----------------------------------------------------------------
1459 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1460 //-----------------------------------------------------------------
1461
1462 TVector *tv;
1463 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1464 AliTPCPRF2D * fPRF2D = &(fDigParam->GetPRF2D());
1465 AliTPCRF1D * fRF = &(fDigParam->GetRF());
1466
1467 //to make the code faster we put parameters to the stack
1468
1469 Float_t zwidth = fTPCParam->GetZWidth();
7ee081c2 1470 Float_t zwidthm1 =1./zwidth;
8c555625 1471
1472 tv = (TVector*)p1->At(ntr); // pointer to a track
1473 TVector &v = *tv;
1474
1475 Float_t label = v(0);
1476
1477 Int_t CentralPad = (np+1)/2;
1478 Int_t PadNumber;
1479 Int_t nElectrons = (tv->GetNrows()-1)/4;
1480 Float_t range=((np-1)/2 + 0.5)*fTPCParam->GetPadPitchWidth(); // pad range
1481 range -= 0.5; // dead zone, 5mm from the edge, according to H.G. Fischer
1482
1483 Float_t IneffFactor = 0.5; // inefficiency in the gain close to the edge, as above
1484
1485
1486 Float_t PadSignal[7]; // signal from a single electron
1487
1488 TMatrix &signal = *m1;
1489 TMatrix &total = *m2;
1490
1491
1492 IndexRange[0]=9999; // min pad
1493 IndexRange[1]=-1; // max pad
1494 IndexRange[2]=9999; //min time
1495 IndexRange[3]=-1; // max time
1496
1497 //
1498 // Loop over all electrons
1499 //
1500
1501 for(Int_t nel=0; nel<nElectrons; nel++){
1502 Int_t idx=nel*4;
1503 Float_t xwire = v(idx+1);
1504 Float_t y = v(idx+2);
1505 Float_t z = v(idx+3);
1506
1507
1508 Float_t absy=TMath::Abs(y);
1509
1510 if(absy < 0.5*fTPCParam->GetPadPitchWidth()){
1511 PadNumber=CentralPad;
1512 }
1513 else if (absy < range){
1514 PadNumber=(Int_t) ((absy-0.5*fTPCParam->GetPadPitchWidth())/fTPCParam->GetPadPitchWidth() +1.);
1515 PadNumber=(Int_t) (TMath::Sign((Float_t)PadNumber, y)+CentralPad);
1516 }
1517 else continue; // electron out of pad-range , lost at the sector edge
1518
1519 Float_t aval = (absy<range-0.5) ? v(idx+4):v(idx+4)*IneffFactor;
1520
1521
1522 Float_t dist = y - (Float_t)(PadNumber-CentralPad)*fTPCParam->GetPadPitchWidth();
a03540ae 1523 for (Int_t i=0;i<7;i++){
8c555625 1524 PadSignal[i]=fPRF2D->GetPRF(dist+(i-3)*fTPCParam->GetPadPitchWidth(),xwire)*aval;
a03540ae 1525 PadSignal[i] *= fTPCParam->GetPadCoupling();
1526 }
8c555625 1527
1528 Int_t LeftPad = TMath::Max(1,PadNumber-3);
1529 Int_t RightPad = TMath::Min(np,PadNumber+3);
1530
1531 Int_t pmin=LeftPad-PadNumber+3; // lower index of the pad_signal vector
1532 Int_t pmax=RightPad-PadNumber+3; // upper index
1533
1534 Float_t z_drift = (z_end-z)*zwidthm1;
1535 Float_t z_offset = z_drift-(Int_t)z_drift;
1536 //distance to the centre of nearest time bin (in time bin units)
1537 Int_t FirstBucket = (Int_t)z_drift+1;
1538
1539
1540 // loop over time bins (4 bins is enough - 3 sigma truncated Gaussian)
1541 for (Int_t i2=0;i2<4;i2++){
1542 Int_t TrueTime = FirstBucket+i2; // current time bucket
1543 Float_t dz = (Float_t(i2)+z_offset)*zwidth;
1544 Float_t ampl = fRF->GetRF(dz);
1545 if( (TrueTime>MAXTPCTBK) ) break; // beyond the time range
1546
1547 IndexRange[2]=TMath::Min(IndexRange[2],TrueTime); // min time
1548 IndexRange[3]=TMath::Max(IndexRange[3],TrueTime); // max time
1549
1550 // loop over pads, from pmin to pmax
1551 for(Int_t i3=pmin;i3<=pmax;i3++){
1552 Int_t TruePad = LeftPad+i3-pmin;
1553 IndexRange[0]=TMath::Min(IndexRange[0],TruePad); // min pad
1554 IndexRange[1]=TMath::Max(IndexRange[1],TruePad); // max pad
1555 signal(TruePad,TrueTime)+=(PadSignal[i3]*ampl); // not converted to charge!!!
1556 total(TruePad,TrueTime)+=(PadSignal[i3]*ampl); // not converted to charge!!!
1557 } // end of pads loop
1558 } // end of time loop
1559 } // end of loop over electrons
1560
1561 return label; // returns track label when finished
1562}
1563
1564//_____________________________________________________________________________
1565void AliTPC::GetList(Float_t label,Int_t np,TMatrix *m,Int_t *IndexRange,
1566 Float_t **pList)
1567{
1568 //----------------------------------------------------------------------
1569 // Updates the list of tracks contributing to digits for a given row
1570 //----------------------------------------------------------------------
1571
1572 //-----------------------------------------------------------------
1573 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1574 //-----------------------------------------------------------------
1575
1576 TMatrix &signal = *m;
1577
1578 // lop over nonzero digits
1579
1580 for(Int_t it=IndexRange[2];it<IndexRange[3]+1;it++){
1581 for(Int_t ip=IndexRange[0];ip<IndexRange[1]+1;ip++){
1582
1583
1584 Int_t GlobalIndex = (it-1)*np+ip-1; // GlobalIndex starts from 0!
1585
1586 if(!pList[GlobalIndex]){
1587
1588 //
1589 // Create new list (6 elements - 3 signals and 3 labels),
1590 // but only if the signal is > 0.
1591 //
1592
1593 if(signal(ip,it)>0.){
1594
1595 pList[GlobalIndex] = new Float_t [6];
1596
1597 // set list to -1
1598
1599 *pList[GlobalIndex] = -1.;
1600 *(pList[GlobalIndex]+1) = -1.;
1601 *(pList[GlobalIndex]+2) = -1.;
1602 *(pList[GlobalIndex]+3) = -1.;
1603 *(pList[GlobalIndex]+4) = -1.;
1604 *(pList[GlobalIndex]+5) = -1.;
1605
1606
1607 *pList[GlobalIndex] = label;
1608 *(pList[GlobalIndex]+3) = signal(ip,it);}
1609 }
1610 else{
1611
1612 // check the signal magnitude
1613
1614 Float_t highest = *(pList[GlobalIndex]+3);
1615 Float_t middle = *(pList[GlobalIndex]+4);
1616 Float_t lowest = *(pList[GlobalIndex]+5);
1617
1618 //
1619 // compare the new signal with already existing list
1620 //
1621
1622 if(signal(ip,it)<lowest) continue; // neglect this track
1623
1624 //
1625
1626 if (signal(ip,it)>highest){
1627 *(pList[GlobalIndex]+5) = middle;
1628 *(pList[GlobalIndex]+4) = highest;
1629 *(pList[GlobalIndex]+3) = signal(ip,it);
1630
1631 *(pList[GlobalIndex]+2) = *(pList[GlobalIndex]+1);
1632 *(pList[GlobalIndex]+1) = *pList[GlobalIndex];
1633 *pList[GlobalIndex] = label;
1634 }
1635 else if (signal(ip,it)>middle){
1636 *(pList[GlobalIndex]+5) = middle;
1637 *(pList[GlobalIndex]+4) = signal(ip,it);
1638
1639 *(pList[GlobalIndex]+2) = *(pList[GlobalIndex]+1);
1640 *(pList[GlobalIndex]+1) = label;
1641 }
1642 else{
1643 *(pList[GlobalIndex]+5) = signal(ip,it);
1644 *(pList[GlobalIndex]+2) = label;
1645 }
1646 }
1647
1648 } // end of loop over pads
1649 } // end of loop over time bins
1650
1651
1652
1653
1654}//end of GetList
1655//___________________________________________________________________
1656void AliTPC::MakeSector(Int_t isec,Int_t nrows,TTree *TH,
1657 Stat_t ntracks,TObjArray **row)
1658{
1659
1660 //-----------------------------------------------------------------
1661 // Prepares the sector digitization, creates the vectors of
1662 // tracks for each row of this sector. The track vector
1663 // contains the track label and the position of electrons.
1664 //-----------------------------------------------------------------
1665
1666 //-----------------------------------------------------------------
1667 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1668 //-----------------------------------------------------------------
1669
1670 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1671 Int_t i;
1672 Float_t xyz[3];
1673
1674 AliTPChit *tpcHit; // pointer to a sigle TPC hit
1675
1676 //----------------------------------------------
1677 // Create TObjArray-s, one for each row,
1678 // each TObjArray will store the TVectors
1679 // of electrons, one TVector per each track.
1680 //----------------------------------------------
1681
1682 for(i=0; i<nrows; i++){
1683 row[i] = new TObjArray;
1684 }
1685 Int_t *n_of_electrons = new Int_t [nrows]; // electron counter for each row
1686 TVector **tr = new TVector* [nrows]; //pointers to the track vectors
1687
1688 //--------------------------------------------------------------------
1689 // Loop over tracks, the "track" contains the full history
1690 //--------------------------------------------------------------------
1691
1692 Int_t previousTrack,currentTrack;
1693 previousTrack = -1; // nothing to store so far!
1694
1695 for(Int_t track=0;track<ntracks;track++){
1696
1697 ResetHits();
1698
1699 TH->GetEvent(track); // get next track
1700 Int_t nhits = fHits->GetEntriesFast(); // get number of hits for this track
1701
1702 if(nhits == 0) continue; // no hits in the TPC for this track
1703
1704 //--------------------------------------------------------------
1705 // Loop over hits
1706 //--------------------------------------------------------------
1707
1708 for(Int_t hit=0;hit<nhits;hit++){
1709
1710 tpcHit = (AliTPChit*)fHits->UncheckedAt(hit); // get a pointer to a hit
1711
1712 Int_t sector=tpcHit->fSector; // sector number
1713 if(sector != isec) continue; //terminate iteration
1714
1715 currentTrack = tpcHit->fTrack; // track number
1716 if(currentTrack != previousTrack){
1717
1718 // store already filled fTrack
1719
1720 for(i=0;i<nrows;i++){
1721 if(previousTrack != -1){
1722 if(n_of_electrons[i]>0){
1723 TVector &v = *tr[i];
1724 v(0) = previousTrack;
1725 tr[i]->ResizeTo(3*n_of_electrons[i]+1); // shrink if necessary
1726 row[i]->Add(tr[i]);
1727 }
1728 else{
1729 delete tr[i]; // delete empty TVector
1730 tr[i]=0;
1731 }
1732 }
1733
1734 n_of_electrons[i]=0;
1735 tr[i] = new TVector(361); // TVectors for the next fTrack
1736
1737 } // end of loop over rows
1738
1739 previousTrack=currentTrack; // update track label
1740 }
1741
1742 Int_t QI = (Int_t) (tpcHit->fQ); // energy loss (number of electrons)
1743
1744 //---------------------------------------------------
1745 // Calculate the electron attachment probability
1746 //---------------------------------------------------
1747
1748 Float_t time = 1.e6*(z_end-TMath::Abs(tpcHit->fZ))/fTPCParam->GetDriftV();
1749 // in microseconds!
1750 Float_t AttProb = fTPCParam->GetAttCoef()*
1751 fTPCParam->GetOxyCont()*time; // fraction!
1752
1753 //-----------------------------------------------
1754 // Loop over electrons
1755 //-----------------------------------------------
1756
1757 for(Int_t nel=0;nel<QI;nel++){
1758 // skip if electron lost due to the attachment
1759 if((gRandom->Rndm(0)) < AttProb) continue; // electron lost!
1760 xyz[0]=tpcHit->fX;
1761 xyz[1]=tpcHit->fY;
1762 xyz[2]=tpcHit->fZ;
1763 ElDiff(xyz); // Appply the diffusion
1764 Int_t row_number;
1765 fTPCParam->XYZtoCRXYZ(xyz,isec,row_number,3);
1766
1767 //transform position to local coordinates
1768 //option 3 means that we calculate x position relative to
1769 //nearest pad row
1770
1771 if ((row_number<0)||row_number>=fTPCParam->GetNRow(isec)) continue;
1772 ExB(xyz); // ExB effect at the sense wires
1773 n_of_electrons[row_number]++;
1774 //----------------------------------
1775 // Expand vector if necessary
1776 //----------------------------------
fe4da5cc 1777 if(n_of_electrons[row_number]>120){
1778 Int_t range = tr[row_number]->GetNrows();
8c555625 1779 if(n_of_electrons[row_number] > (range-1)/3){
1780 tr[row_number]->ResizeTo(range+150); // Add 50 electrons
fe4da5cc 1781 }
1782 }
1783
fe4da5cc 1784 TVector &v = *tr[row_number];
8c555625 1785 Int_t idx = 3*n_of_electrons[row_number]-2;
1786
1787 v(idx)= xyz[0]; // X
1788 v(idx+1)=xyz[1]; // Y (along the pad-row)
1789 v(idx+2)=xyz[2]; // Z
1790
1791 } // end of loop over electrons
1792
1793 } // end of loop over hits
1794 } // end of loop over tracks
1795
1796 //
1797 // store remaining track (the last one) if not empty
1798 //
1799
1800 for(i=0;i<nrows;i++){
1801 if(n_of_electrons[i]>0){
1802 TVector &v = *tr[i];
1803 v(0) = previousTrack;
1804 tr[i]->ResizeTo(3*n_of_electrons[i]+1); // shrink if necessary
1805 row[i]->Add(tr[i]);
fe4da5cc 1806 }
1807 else{
8c555625 1808 delete tr[i];
1809 tr[i]=0;
1810 }
1811 }
1812
1813 delete [] tr;
1814 delete [] n_of_electrons;
1815
1816} // end of MakeSector
1817//_____________________________________________________________________________
1818void AliTPC::GetCrossTalk (Int_t iFlag,TObjArray *p,Int_t ntracks,Int_t *npads,
1819 TMatrix *m)
1820{
1821
1822 //-------------------------------------------------------------
1823 // Calculates the cross-talk from one row (inner or outer)
1824 //-------------------------------------------------------------
1825
1826 //-----------------------------------------------------------------
1827 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1828 //-----------------------------------------------------------------
1829
1830 //
1831 // iFlag=2 & 3 --> cross-talk from the inner row
1832 // iFlag=0 & 4 --> cross-talk from the outer row
1833 //
1834 AliTPCParam * fTPCParam = &(fDigParam->GetParam());
1835 AliTPCPRF2D * fPRF2D = &(fDigParam->GetPRF2D());
1836 AliTPCRF1D * fRF = &(fDigParam->GetRF());
1837
1838 //to make code faster
1839
1840 Float_t zwidth = fTPCParam->GetZWidth();
1841 Float_t zwidthm1 =1/fTPCParam->GetZWidth();
1842
1843 Int_t PadNumber;
1844 Float_t xwire;
1845
1846 Int_t nPadsSignal; // for this pads the signal is calculated
1847 Float_t range; // sense wire range
1848 Int_t nPadsDiff;
1849
1850 Float_t IneffFactor=0.5; // gain inefficiency close to the edges
1851
1852 if(iFlag == 0){
1853 // 1-->0
1854 nPadsSignal = npads[1];
1855 range = ((npads[1]-1)/2 + 0.5)*fTPCParam->GetPadPitchWidth();
1856 nPadsDiff = (npads[1]-npads[0])/2;
1857 }
1858 else if (iFlag == 2){
1859 // 1-->2
1860 nPadsSignal = npads[2];
1861 range = ((npads[1]-1)/2 + 0.5)*fTPCParam->GetPadPitchWidth();
1862 nPadsDiff = 0;
1863 }
1864 else if (iFlag == 3){
1865 // 0-->1
1866 nPadsSignal = npads[1];
1867 range = ((npads[0]-1)/2 + 0.5)*fTPCParam->GetPadPitchWidth();
1868 nPadsDiff = 0;
1869 }
1870 else{
1871 // 2-->1
1872 nPadsSignal = npads[2];
1873 range = ((npads[2]-1)/2 + 0.5)*fTPCParam->GetPadPitchWidth();
1874 nPadsDiff = (npads[2]-npads[1])/2;
1875 }
1876
1877 range-=0.5; // dead zone close to the edges
1878
1879 TVector *tv;
1880 TMatrix &signal = *m;
1881
1882 Int_t CentralPad = (nPadsSignal+1)/2;
1883 Float_t PadSignal[7]; // signal from a single electron
1884 // Loop over tracks
1885 for(Int_t nt=0;nt<ntracks;nt++){
1886 tv=(TVector*)p->At(nt); // pointer to a track
1887 TVector &v = *tv;
1888 Int_t nElectrons = (tv->GetNrows()-1)/4;
1889 // Loop over electrons
1890 for(Int_t nel=0; nel<nElectrons; nel++){
1891 Int_t idx=nel*4;
1892 xwire=v(idx+1);
1893
1894 if (iFlag==0) xwire+=fTPCParam->GetPadPitchLength();
1895 if (iFlag==2) xwire-=fTPCParam->GetPadPitchLength();
1896 if (iFlag==3) xwire-=fTPCParam->GetPadPitchLength();
1897 if (iFlag==4) xwire+=fTPCParam->GetPadPitchLength();
1898
1899 // electron acceptance for the cross-talk (only the closest wire)
1900
1901 Float_t dxMax = fTPCParam->GetPadPitchLength()*0.5+fTPCParam->GetWWPitch();
1902 if(TMath::Abs(xwire)>dxMax) continue;
1903
1904 Float_t y = v(idx+2);
1905 Float_t z = v(idx+3);
1906 Float_t absy=TMath::Abs(y);
1907
1908 if(absy < 0.5*fTPCParam->GetPadPitchWidth()){
1909 PadNumber=CentralPad;
1910 }
1911 else if (absy < range){
1912 PadNumber=(Int_t) ((absy-0.5*fTPCParam->GetPadPitchWidth())/fTPCParam->GetPadPitchWidth() +1.);
1913 PadNumber=(Int_t) (TMath::Sign((Float_t)PadNumber, y)+CentralPad);
1914 }
1915 else continue; // electron out of sense wire range, lost at the sector edge
1916
1917 Float_t aval = (absy<range-0.5) ? v(idx+4):v(idx+4)*IneffFactor;
1918
1919 Float_t dist = y - (Float_t)(PadNumber-CentralPad)*fTPCParam->GetPadPitchWidth();
1920
a03540ae 1921 for (Int_t i=0;i<7;i++){
8c555625 1922 PadSignal[i]=fPRF2D->GetPRF(dist+(3-i)*fTPCParam->GetPadPitchWidth(),xwire)*aval;
1923
a03540ae 1924 PadSignal[i] *= fTPCParam->GetPadCoupling();
1925 }
8c555625 1926 // real pad range
1927
1928 Int_t LeftPad = TMath::Max(1,PadNumber-3);
1929 Int_t RightPad = TMath::Min(nPadsSignal,PadNumber+3);
1930
1931 Int_t pmin=LeftPad-PadNumber+3; // lower index of the pad_signal vector
1932 Int_t pmax=RightPad-PadNumber+3; // upper index
1933
1934
1935 Float_t z_drift = (z_end-z)*zwidthm1;
1936 Float_t z_offset = z_drift-(Int_t)z_drift;
1937 //distance to the centre of nearest time bin (in time bin units)
1938 Int_t FirstBucket = (Int_t)z_drift+1;
1939 // MI check it --time offset
1940 for (Int_t i2=0;i2<4;i2++){
1941 Int_t TrueTime = FirstBucket+i2; // current time bucket
1942 Float_t dz = (Float_t(i2)+z_offset)*zwidth;
1943 Float_t ampl = fRF->GetRF(dz);
1944 if((TrueTime>MAXTPCTBK)) break; // beyond the time range
1945
1946
1947 // loop over pads, from pmin to pmax
1948
1949 for(Int_t i3=pmin;i3<pmax+1;i3++){
1950 Int_t TruePad = LeftPad+i3-pmin;
1951
1952 if(TruePad<nPadsDiff+1 || TruePad > nPadsSignal-nPadsDiff) continue;
1953
1954 TruePad -= nPadsDiff;
1955 signal(TruePad,TrueTime)+=(PadSignal[i3]*ampl); // not converted to charge!
1956
1957 } // end of loop over pads
1958 } // end of loop over time bins
1959
1960 } // end of loop over electrons
1961
1962 } // end of loop over tracks
1963
1964} // end of GetCrossTalk
1965
1966
fe4da5cc 1967
1968//_____________________________________________________________________________
1969void AliTPC::Init()
1970{
1971 //
1972 // Initialise TPC detector after definition of geometry
1973 //
1974 Int_t i;
1975 //
1976 printf("\n");
1977 for(i=0;i<35;i++) printf("*");
1978 printf(" TPC_INIT ");
1979 for(i=0;i<35;i++) printf("*");
1980 printf("\n");
1981 //
1982 for(i=0;i<80;i++) printf("*");
1983 printf("\n");
1984}
1985
1986//_____________________________________________________________________________
1987void AliTPC::MakeBranch(Option_t* option)
1988{
1989 //
1990 // Create Tree branches for the TPC.
1991 //
1992 Int_t buffersize = 4000;
1993 char branchname[10];
1994 sprintf(branchname,"%s",GetName());
1995
1996 AliDetector::MakeBranch(option);
1997
1998 char *D = strstr(option,"D");
1999
2000 if (fDigits && gAlice->TreeD() && D) {
2001 gAlice->TreeD()->Branch(branchname,&fDigits, buffersize);
2002 printf("Making Branch %s for digits\n",branchname);
2003 }
2004
2005 char *R = strstr(option,"R");
2006
2007 if (fClusters && gAlice->TreeR() && R) {
2008 gAlice->TreeR()->Branch(branchname,&fClusters, buffersize);
2009 printf("Making Branch %s for Clusters\n",branchname);
2010 }
2011}
2012
2013//_____________________________________________________________________________
2014void AliTPC::ResetDigits()
2015{
2016 //
2017 // Reset number of digits and the digits array for this detector
2018 // reset clusters
2019 //
2020 fNdigits = 0;
8c555625 2021 // if (fDigits) fDigits->Clear();
2022 if (fDigParam->GetArray()!=0) fDigParam->GetArray()->Clear();
fe4da5cc 2023 fNclusters = 0;
2024 if (fClusters) fClusters->Clear();
2025}
2026
2027//_____________________________________________________________________________
2028void AliTPC::SetSecAL(Int_t sec)
2029{
8c555625 2030 //---------------------------------------------------
fe4da5cc 2031 // Activate/deactivate selection for lower sectors
8c555625 2032 //---------------------------------------------------
2033
2034 //-----------------------------------------------------------------
2035 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2036 //-----------------------------------------------------------------
2037
fe4da5cc 2038 fSecAL = sec;
2039}
2040
2041//_____________________________________________________________________________
2042void AliTPC::SetSecAU(Int_t sec)
2043{
8c555625 2044 //----------------------------------------------------
fe4da5cc 2045 // Activate/deactivate selection for upper sectors
8c555625 2046 //---------------------------------------------------
2047
2048 //-----------------------------------------------------------------
2049 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2050 //-----------------------------------------------------------------
2051
fe4da5cc 2052 fSecAU = sec;
2053}
2054
2055//_____________________________________________________________________________
2056void AliTPC::SetSecLows(Int_t s1,Int_t s2,Int_t s3,Int_t s4,Int_t s5, Int_t s6)
2057{
8c555625 2058 //----------------------------------------
fe4da5cc 2059 // Select active lower sectors
8c555625 2060 //----------------------------------------
2061
2062 //-----------------------------------------------------------------
2063 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2064 //-----------------------------------------------------------------
2065
fe4da5cc 2066 fSecLows[0] = s1;
2067 fSecLows[1] = s2;
2068 fSecLows[2] = s3;
2069 fSecLows[3] = s4;
2070 fSecLows[4] = s5;
2071 fSecLows[5] = s6;
2072}
2073
2074//_____________________________________________________________________________
2075void AliTPC::SetSecUps(Int_t s1,Int_t s2,Int_t s3,Int_t s4,Int_t s5, Int_t s6,
2076 Int_t s7, Int_t s8 ,Int_t s9 ,Int_t s10,
2077 Int_t s11 , Int_t s12)
2078{
8c555625 2079 //--------------------------------
fe4da5cc 2080 // Select active upper sectors
8c555625 2081 //--------------------------------
2082
2083 //-----------------------------------------------------------------
2084 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2085 //-----------------------------------------------------------------
2086
fe4da5cc 2087 fSecUps[0] = s1;
2088 fSecUps[1] = s2;
2089 fSecUps[2] = s3;
2090 fSecUps[3] = s4;
2091 fSecUps[4] = s5;
2092 fSecUps[5] = s6;
2093 fSecUps[6] = s7;
2094 fSecUps[7] = s8;
2095 fSecUps[8] = s9;
2096 fSecUps[9] = s10;
2097 fSecUps[10] = s11;
2098 fSecUps[11] = s12;
2099}
2100
2101//_____________________________________________________________________________
2102void AliTPC::SetSens(Int_t sens)
2103{
8c555625 2104
2105 //-------------------------------------------------------------
2106 // Activates/deactivates the sensitive strips at the center of
2107 // the pad row -- this is for the space-point resolution calculations
2108 //-------------------------------------------------------------
2109
2110 //-----------------------------------------------------------------
2111 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2112 //-----------------------------------------------------------------
2113
fe4da5cc 2114 fSens = sens;
2115}
2116
2117//_____________________________________________________________________________
2118void AliTPC::Streamer(TBuffer &R__b)
2119{
2120 //
2121 // Stream an object of class AliTPC.
2122 //
2123 if (R__b.IsReading()) {
2124 Version_t R__v = R__b.ReadVersion(); if (R__v) { }
2125 AliDetector::Streamer(R__b);
2126 if (R__v < 2) return;
2127 R__b >> fNsectors;
2128 R__b >> fNclusters;
2129 R__b >> fNtracks;
2130 fClustersIndex = new Int_t[fNsectors+1];
2131 fDigitsIndex = new Int_t[fNsectors+1];
2132 } else {
2133 R__b.WriteVersion(AliTPC::IsA());
2134 AliDetector::Streamer(R__b);
2135 R__b << fNsectors;
2136 R__b << fNclusters;
2137 R__b << fNtracks;
2138 }
2139}
2140
2141ClassImp(AliTPCcluster)
2142
2143//_____________________________________________________________________________
2144AliTPCcluster::AliTPCcluster(Float_t *hits, Int_t *lab)
2145{
2146 //
2147 // Creates a simulated cluster for the TPC
2148 //
2149 fTracks[0] = lab[0];
2150 fTracks[1] = lab[1];
2151 fTracks[2] = lab[2];
2152 fSector = lab[3];
2153 fPadRow = lab[4];
2154 fY = hits[0];
2155 fZ = hits[1];
2156 fQ = hits[2];
2157 fSigmaY2 = hits[3];
2158 fSigmaZ2 = hits[4];
2159}
2160
2161//_____________________________________________________________________________
8c555625 2162void AliTPCcluster::GetXYZ(Float_t *x, const AliTPCParam *par) const
fe4da5cc 2163{
2164 //
8c555625 2165 // Transformation from local to global coordinate system
fe4da5cc 2166 //
8c555625 2167 x[0]=par->GetPadRowRadii(fSector,fPadRow-1);
2168 x[1]=fY;
2169 x[2]=fZ;
2170 par->CRXYZtoXYZ(x,fSector,fPadRow-1,1);
fe4da5cc 2171}
2172
8c555625 2173//_____________________________________________________________________________
2174Int_t AliTPCcluster::Compare(TObject * o)
2175{
2176 //
2177 // compare two clusters according y coordinata
2178 AliTPCcluster *cl= (AliTPCcluster *)o;
2179 if (fY<cl->fY) return -1;
2180 if (fY==cl->fY) return 0;
2181 return 1;
2182}
2183
2184Bool_t AliTPCcluster::IsSortable() const
2185{
2186 //
2187 //make AliTPCcluster sortabale
2188 return kTRUE;
2189}
2190
2191
2192
fe4da5cc 2193ClassImp(AliTPCdigit)
2194
2195//_____________________________________________________________________________
2196AliTPCdigit::AliTPCdigit(Int_t *tracks, Int_t *digits):
2197 AliDigit(tracks)
2198{
2199 //
2200 // Creates a TPC digit object
2201 //
2202 fSector = digits[0];
2203 fPadRow = digits[1];
2204 fPad = digits[2];
2205 fTime = digits[3];
2206 fSignal = digits[4];
2207}
2208
2209
2210ClassImp(AliTPChit)
2211
2212//_____________________________________________________________________________
2213AliTPChit::AliTPChit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits):
2214AliHit(shunt,track)
2215{
2216 //
2217 // Creates a TPC hit object
2218 //
2219 fSector = vol[0];
2220 fPadRow = vol[1];
2221 fX = hits[0];
2222 fY = hits[1];
2223 fZ = hits[2];
2224 fQ = hits[3];
2225}
2226
2227
2228ClassImp(AliTPCtrack)
2229
2230//_____________________________________________________________________________
2231AliTPCtrack::AliTPCtrack(Float_t *hits)
2232{
2233 //
2234 // Default creator for a TPC reconstructed track object
2235 //
2236 ref=hits[0]; // This is dummy code !
2237}
2238
2239AliTPCtrack::AliTPCtrack(const AliTPCcluster& c,const TVector& xx,
8c555625 2240 const TMatrix& CC, const AliTPCParam *p):
fe4da5cc 2241 x(xx),C(CC),clusters(MAX_CLUSTER)
2242{
2243 //
2244 // Standard creator for a TPC reconstructed track object
2245 //
2246 chi2=0.;
8c555625 2247 int sec=c.fSector-1, row=c.fPadRow-1;
2248 ref=p->GetPadRowRadii(sec+1,row);
2249
fe4da5cc 2250 if (sec<24) {
8c555625 2251 fAlpha=(sec%12)*alpha_low;
fe4da5cc 2252 } else {
8c555625 2253 fAlpha=(sec%24)*alpha_up;
fe4da5cc 2254 }
2255 clusters.AddLast((AliTPCcluster*)(&c));
2256}
2257
2258//_____________________________________________________________________________
2259AliTPCtrack::AliTPCtrack(const AliTPCtrack& t) : x(t.x), C(t.C),
2260 clusters(t.clusters.GetEntriesFast())
2261{
2262 //
2263 // Copy creator for a TPC reconstructed track
2264 //
2265 ref=t.ref;
2266 chi2=t.chi2;
2267 fAlpha=t.fAlpha;
2268 int n=t.clusters.GetEntriesFast();
2269 for (int i=0; i<n; i++) clusters.AddLast(t.clusters.UncheckedAt(i));
2270}
2271
2272//_____________________________________________________________________________
2273Double_t AliTPCtrack::GetY(Double_t xk) const
2274{
2275 //
2276 //
2277 //
2278 Double_t c2=x(2)*xk - x(3);
2279 if (TMath::Abs(c2) >= 0.999) {
2280 if (*this>10) cerr<<*this<<" AliTPCtrack warning: No y for this x !\n";
2281 return 0.;
2282 }
2283 Double_t c1=x(2)*ref - x(3);
2284 Double_t r1=sqrt(1.-c1*c1), r2=sqrt(1.-c2*c2);
2285 Double_t dx=xk-ref;
2286 return x(0) + dx*(c1+c2)/(r1+r2);
2287}
2288
2289//_____________________________________________________________________________
2290int AliTPCtrack::PropagateTo(Double_t xk,Double_t x0,Double_t rho,Double_t pm)
2291{
2292 //
2293 // Propagate a TPC reconstructed track
2294 //
2295 if (TMath::Abs(x(2)*xk - x(3)) >= 0.999) {
2296 if (*this>3) cerr<<*this<<" AliTPCtrack warning: Propagation failed !\n";
2297 return 0;
2298 }
8c555625 2299
fe4da5cc 2300 Double_t x1=ref, x2=x1+0.5*(xk-x1), dx=x2-x1, y1=x(0), z1=x(1);
2301 Double_t c1=x(2)*x1 - x(3), r1=sqrt(1.- c1*c1);
2302 Double_t c2=x(2)*x2 - x(3), r2=sqrt(1.- c2*c2);
2303
2304 x(0) += dx*(c1+c2)/(r1+r2);
2305 x(1) += dx*(c1+c2)/(c1*r2 + c2*r1)*x(4);
8c555625 2306
fe4da5cc 2307 TMatrix F(5,5); F.UnitMatrix();
2308 Double_t rr=r1+r2, cc=c1+c2, xx=x1+x2;
2309 F(0,2)= dx*(rr*xx + cc*(c1*x1/r1+c2*x2/r2))/(rr*rr);
2310 F(0,3)=-dx*(2*rr + cc*(c1/r1 + c2/r2))/(rr*rr);
2311 Double_t cr=c1*r2+c2*r1;
2312 F(1,2)= dx*x(4)*(cr*xx-cc*(r1*x2-c2*c1*x1/r1+r2*x1-c1*c2*x2/r2))/(cr*cr);
2313 F(1,3)=-dx*x(4)*(2*cr + cc*(c2*c1/r1-r1 + c1*c2/r2-r2))/(cr*cr);
2314 F(1,4)= dx*cc/cr;
2315 TMatrix tmp(F,TMatrix::kMult,C);
2316 C.Mult(tmp,TMatrix(TMatrix::kTransposed,F));
2317
2318 ref=x2;
2319
2320 //Multiple scattering******************
2321 Double_t ey=x(2)*ref - x(3);
2322 Double_t ex=sqrt(1-ey*ey);
2323 Double_t ez=x(4);
2324 TMatrix Q(5,5); Q=0.;
2325 Q(2,2)=ez*ez+ey*ey; Q(2,3)=-ex*ey; Q(2,4)=-ex*ez;
2326 Q(3,2)=Q(2,3); Q(3,3)= ez*ez+ex*ex; Q(3,4)=-ey*ez;
2327 Q(4,2)=Q(2,4); Q(4,3)= Q(3,4); Q(4,4)=1.;
2328
2329 F=0;
2330 F(2,2)=-x(2)*ex; F(2,3)=-x(2)*ey;
2331 F(3,2)=-ex*(x(2)*ref-ey); F(3,3)=-(1.+ x(2)*ref*ey - ey*ey);
2332 F(4,2)=-ez*ex; F(4,3)=-ez*ey; F(4,4)=1.;
2333
2334 tmp.Mult(F,Q);
2335 Q.Mult(tmp,TMatrix(TMatrix::kTransposed,F));
2336
2337 Double_t p2=GetPt()*GetPt()*(1.+x(4)*x(4));
2338 Double_t beta2=p2/(p2 + pm*pm);
2339 Double_t d=sqrt((x1-ref)*(x1-ref)+(y1-x(0))*(y1-x(0))+(z1-x(1))*(z1-x(1)));
2340 d*=2.;
2341 Double_t theta2=14.1*14.1/(beta2*p2*1e6)*d/x0*rho;
2342 Q*=theta2;
2343 C+=Q;
2344
2345 //Energy losses************************
2346 Double_t dE=0.153e-3/beta2*(log(5940*beta2/(1-beta2)) - beta2)*d*rho;
2347 if (x1 < x2) dE=-dE;
2348 x(2)*=(1.- sqrt(p2+pm*pm)/p2*dE);
8c555625 2349 //x(3)*=(1.- sqrt(p2+pm*pm)/p2*dE);
fe4da5cc 2350
2351 x1=ref; x2=xk; y1=x(0); z1=x(1);
2352 c1=x(2)*x1 - x(3); r1=sqrt(1.- c1*c1);
2353 c2=x(2)*x2 - x(3); r2=sqrt(1.- c2*c2);
2354
2355 x(0) += dx*(c1+c2)/(r1+r2);
2356 x(1) += dx*(c1+c2)/(c1*r2 + c2*r1)*x(4);
2357
2358 F.UnitMatrix();
2359 rr=r1+r2; cc=c1+c2; xx=x1+x2;
2360 F(0,2)= dx*(rr*xx + cc*(c1*x1/r1+c2*x2/r2))/(rr*rr);
2361 F(0,3)=-dx*(2*rr + cc*(c1/r1 + c2/r2))/(rr*rr);
2362 cr=c1*r2+c2*r1;
2363 F(1,2)= dx*x(4)*(cr*xx-cc*(r1*x2-c2*c1*x1/r1+r2*x1-c1*c2*x2/r2))/(cr*cr);
2364 F(1,3)=-dx*x(4)*(2*cr + cc*(c2*c1/r1-r1 + c1*c2/r2-r2))/(cr*cr);
2365 F(1,4)= dx*cc/cr;
2366 tmp.Mult(F,C);
2367 C.Mult(tmp,TMatrix(TMatrix::kTransposed,F));
2368
2369 ref=x2;
2370
2371 return 1;
2372}
2373
2374//_____________________________________________________________________________
2375void AliTPCtrack::PropagateToVertex(Double_t x0,Double_t rho,Double_t pm)
2376{
2377 //
2378 // Propagate a reconstructed track from the vertex
2379 //
2380 Double_t c=x(2)*ref - x(3);
2381 Double_t tgf=-x(3)/(x(2)*x(0) + sqrt(1-c*c));
2382 Double_t snf=tgf/sqrt(1.+ tgf*tgf);
2383 Double_t xv=(x(3)+snf)/x(2);
2384 PropagateTo(xv,x0,rho,pm);
2385}
2386
2387//_____________________________________________________________________________
2388void AliTPCtrack::Update(const AliTPCcluster *c, Double_t chisq)
2389{
2390 //
2391 // Update statistics for a reconstructed TPC track
2392 //
2393 TMatrix H(2,5); H.UnitMatrix();
2394 TMatrix Ht(TMatrix::kTransposed,H);
2395 TVector m(2); m(0)=c->fY; m(1)=c->fZ;
2396 TMatrix V(2,2); V(0,0)=c->fSigmaY2; V(0,1)=0.; V(1,0)=0.; V(1,1)=c->fSigmaZ2;
2397
2398 TMatrix tmp(H,TMatrix::kMult,C);
2399 TMatrix R(tmp,TMatrix::kMult,Ht); R+=V;
2400
2401 Double_t det=(Double_t)R(0,0)*R(1,1) - (Double_t)R(0,1)*R(1,0);
2402 R(0,1)=R(0,0); R(0,0)=R(1,1); R(1,1)=R(0,1);
2403 R(1,0)*=-1; R(0,1)=R(1,0);
2404 R*=1./det;
2405
2406 //R.Invert();
2407
2408 TMatrix K(C,TMatrix::kMult,Ht); K*=R;
2409
2410 TVector savex=x;
2411 x*=H; x-=m; x*=-1; x*=K; x+=savex;
2412 if (TMath::Abs(x(2)*ref-x(3)) >= 0.999) {
2413 if (*this>3) cerr<<*this<<" AliTPCtrack warning: Filtering failed !\n";
2414 x=savex;
2415 return;
2416 }
2417
2418 TMatrix saveC=C;
2419 C.Mult(K,tmp); C-=saveC; C*=-1;
2420
2421 clusters.AddLast((AliTPCcluster*)c);
2422 chi2 += chisq;
2423}
2424
2425//_____________________________________________________________________________
2426int AliTPCtrack::Rotate(Double_t alpha)
2427{
2428 //
2429 // Rotate a reconstructed TPC track
2430 //
2431 fAlpha += alpha;
2432
2433 Double_t x1=ref, y1=x(0);
2434 Double_t ca=cos(alpha), sa=sin(alpha);
2435 Double_t r1=x(2)*ref - x(3);
2436
2437 ref = x1*ca + y1*sa;
2438 x(0)=-x1*sa + y1*ca;
2439 x(3)=x(3)*ca + (x(2)*y1 + sqrt(1.- r1*r1))*sa;
2440
2441 Double_t r2=x(2)*ref - x(3);
2442 if (TMath::Abs(r2) >= 0.999) {
2443 if (*this>3) cerr<<*this<<" AliTPCtrack warning: Rotation failed !\n";
2444 return 0;
2445 }
2446
2447 Double_t y0=x(0) + sqrt(1.- r2*r2)/x(2);
2448 if ((x(0)-y0)*x(2) >= 0.) {
2449 if (*this>3) cerr<<*this<<" AliTPCtrack warning: Rotation failed !!!\n";
2450 return 0;
2451 }
2452
2453 TMatrix F(5,5); F.UnitMatrix();
2454 F(0,0)=ca;
2455 F(3,0)=x(2)*sa;
2456 F(3,2)=(y1 - r1*x1/sqrt(1.- r1*r1))*sa;
2457 F(3,3)= ca + sa*r1/sqrt(1.- r1*r1);
2458 TMatrix tmp(F,TMatrix::kMult,C);
2459 // Double_t dy2=C(0,0);
2460 C.Mult(tmp,TMatrix(TMatrix::kTransposed,F));
2461 // C(0,0)+=dy2*sa*sa*r1*r1/(1.- r1*r1);
2462 // C(1,1)+=dy2*sa*sa*x(4)*x(4)/(1.- r1*r1);
2463
2464 return 1;
2465}
2466
2467//_____________________________________________________________________________
2468void AliTPCtrack::UseClusters() const
2469{
2470 //
2471 //
2472 //
2473 int num_of_clusters=clusters.GetEntriesFast();
2474 for (int i=0; i<num_of_clusters; i++) {
2475 //if (i<=14) continue;
2476 AliTPCcluster *c=(AliTPCcluster*)clusters.UncheckedAt(i);
2477 c->Use();
2478 }
2479}
2480
2481//_____________________________________________________________________________
2482Double_t AliTPCtrack::GetPredictedChi2(const AliTPCcluster *c) const
2483{
2484 //
2485 // Calculate chi2 for a reconstructed TPC track
2486 //
2487 TMatrix H(2,5); H.UnitMatrix();
2488 TVector m(2); m(0)=c->fY; m(1)=c->fZ;
2489 TMatrix V(2,2); V(0,0)=c->fSigmaY2; V(0,1)=0.; V(1,0)=0.; V(1,1)=c->fSigmaZ2;
2490 TVector res=x; res*=H; res-=m; //res*=-1;
2491 TMatrix tmp(H,TMatrix::kMult,C);
2492 TMatrix R(tmp,TMatrix::kMult,TMatrix(TMatrix::kTransposed,H)); R+=V;
2493
2494 Double_t det=(Double_t)R(0,0)*R(1,1) - (Double_t)R(0,1)*R(1,0);
2495 if (TMath::Abs(det) < 1.e-10) {
2496 if (*this>3) cerr<<*this<<" AliTPCtrack warning: Singular matrix !\n";
2497 return 1e10;
2498 }
2499 R(0,1)=R(0,0); R(0,0)=R(1,1); R(1,1)=R(0,1);
2500 R(1,0)*=-1; R(0,1)=R(1,0);
2501 R*=1./det;
2502
2503 //R.Invert();
2504
2505 TVector r=res;
2506 res*=R;
2507 return r*res;
2508}
2509
2510//_____________________________________________________________________________
2511int AliTPCtrack::GetLab() const
2512{
2513 //
2514 //
2515 //
7ee081c2 2516 int lab=123456789;
fe4da5cc 2517 struct {
2518 int lab;
2519 int max;
2520 } s[MAX_CLUSTER]={{0,0}};
2521
2522 int i;
2523 int num_of_clusters=clusters.GetEntriesFast();
2524 for (i=0; i<num_of_clusters; i++) {
2525 AliTPCcluster *c=(AliTPCcluster*)clusters.UncheckedAt(i);
8c555625 2526 lab=TMath::Abs(c->fTracks[0]);
fe4da5cc 2527 int j;
2528 for (j=0; j<MAX_CLUSTER; j++)
2529 if (s[j].lab==lab || s[j].max==0) break;
2530 s[j].lab=lab;
2531 s[j].max++;
2532 }
2533
2534 int max=0;
2535 for (i=0; i<num_of_clusters; i++)
2536 if (s[i].max>max) {max=s[i].max; lab=s[i].lab;}
8c555625 2537
2538 for (i=0; i<num_of_clusters; i++) {
2539 AliTPCcluster *c=(AliTPCcluster*)clusters.UncheckedAt(i);
2540 if (TMath::Abs(c->fTracks[1]) == lab ||
2541 TMath::Abs(c->fTracks[2]) == lab ) max++;
2542 }
fe4da5cc 2543
2544 if (1.-float(max)/num_of_clusters > 0.10) return -lab;
2545
2546 if (num_of_clusters < 6) return lab;
2547
2548 max=0;
2549 for (i=1; i<=6; i++) {
2550 AliTPCcluster *c=(AliTPCcluster*)clusters.UncheckedAt(num_of_clusters-i);
8c555625 2551 if (lab == TMath::Abs(c->fTracks[0]) ||
2552 lab == TMath::Abs(c->fTracks[1]) ||
2553 lab == TMath::Abs(c->fTracks[2])) max++;
fe4da5cc 2554 }
8c555625 2555 if (max<3) return -lab;
fe4da5cc 2556
2557 return lab;
2558}
2559
2560//_____________________________________________________________________________
2561void AliTPCtrack::GetPxPyPz(Double_t& px, Double_t& py, Double_t& pz) const
2562{
2563 //
2564 // Get reconstructed TPC track momentum
2565 //
2566 Double_t pt=0.3*FIELD/TMath::Abs(x(2))/100; // GeV/c
2567 Double_t r=x(2)*ref-x(3);
2568 Double_t y0=x(0) + sqrt(1.- r*r)/x(2);
2569 px=-pt*(x(0)-y0)*x(2); //cos(phi);
2570 py=-pt*(x(3)-ref*x(2)); //sin(phi);
2571 pz=pt*x(4);
2572 Double_t tmp=px*TMath::Cos(fAlpha) - py*TMath::Sin(fAlpha);
2573 py=px*TMath::Sin(fAlpha) + py*TMath::Cos(fAlpha);
2574 px=tmp;
2575}
2576
2577//_____________________________________________________________________________
2578//
2579// Classes for internal tracking use
2580//
2581
2582//_____________________________________________________________________________
2583void AliTPCRow::InsertCluster(const AliTPCcluster* c)
2584{
2585 //
2586 // Insert a cluster in the list
2587 //
2588 if (num_of_clusters==MAX_CLUSTER_PER_ROW) {
2589 cerr<<"AliTPCRow::InsertCluster(): Too many clusters !\n"; return;
2590 }
2591 if (num_of_clusters==0) {clusters[num_of_clusters++]=c; return;}
2592 int i=Find(c->fY);
2593 memmove(clusters+i+1 ,clusters+i,(num_of_clusters-i)*sizeof(AliTPCcluster*));
2594 clusters[i]=c; num_of_clusters++;
2595}
2596
2597//_____________________________________________________________________________
2598int AliTPCRow::Find(Double_t y) const
2599{
2600 //
2601 //
2602 //
2603 if (y <= clusters[0]->fY) return 0;
2604 if (y > clusters[num_of_clusters-1]->fY) return num_of_clusters;
2605 int b=0, e=num_of_clusters-1, m=(b+e)/2;
2606 for (; b<e; m=(b+e)/2) {
2607 if (y > clusters[m]->fY) b=m+1;
2608 else e=m;
2609 }
2610 return m;
2611}
8c555625 2612