]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPC.cxx
GPS2 geometry removed
[u/mrichter/AliRoot.git] / TPC / AliTPC.cxx
CommitLineData
4c039060 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
88cb7938 16/* $Id$ */
4c039060 17
fe4da5cc 18///////////////////////////////////////////////////////////////////////////////
19// //
20// Time Projection Chamber //
21// This class contains the basic functions for the Time Projection Chamber //
22// detector. Functions specific to one particular geometry are //
23// contained in the derived classes //
24// //
25//Begin_Html
26/*
1439f98e 27<img src="picts/AliTPCClass.gif">
fe4da5cc 28*/
29//End_Html
30// //
8c555625 31// //
fe4da5cc 32///////////////////////////////////////////////////////////////////////////////
33
73042f01 34//
35
88cb7938 36#include <Riostream.h>
37#include <stdlib.h>
38
39#include <TFile.h>
40#include <TGeometry.h>
41#include <TInterpreter.h>
fe4da5cc 42#include <TMath.h>
8c555625 43#include <TMatrix.h>
fe4da5cc 44#include <TNode.h>
fe4da5cc 45#include <TObjectTable.h>
88cb7938 46#include <TParticle.h>
afc42102 47#include <TROOT.h>
88cb7938 48#include <TRandom.h>
afc42102 49#include <TSystem.h>
88cb7938 50#include <TTUBS.h>
51#include <TTree.h>
52#include <TVector.h>
53#include <TVirtualMC.h>
cc80f89e 54
88cb7938 55#include "AliArrayBranch.h"
56#include "AliClusters.h"
57#include "AliComplexCluster.h"
cc80f89e 58#include "AliDigits.h"
88cb7938 59#include "AliMagF.h"
60#include "AliPoints.h"
61#include "AliRun.h"
62#include "AliRunLoader.h"
cc80f89e 63#include "AliSimDigits.h"
88cb7938 64#include "AliTPC.h"
65#include "AliTPC.h"
66#include "AliTPCClustersArray.h"
67#include "AliTPCClustersRow.h"
68#include "AliTPCDigitsArray.h"
69#include "AliTPCLoader.h"
70#include "AliTPCPRF2D.h"
71#include "AliTPCParamSR.h"
72#include "AliTPCRF1D.h"
39c8eb58 73#include "AliTPCTrackHits.h"
792bb11c 74#include "AliTPCTrackHitsV2.h"
73042f01 75#include "AliTPCcluster.h"
88cb7938 76#include "AliTrackReference.h"
39c8eb58 77
78
fe4da5cc 79ClassImp(AliTPC)
80
de61d5d5 81//_____________________________________________________________________________
82// helper class for fast matrix and vector manipulation - no range checking
83// origin - Marian Ivanov
84
85class AliTPCFastMatrix : public TMatrix {
86public :
87 AliTPCFastMatrix(Int_t row_lwb, Int_t row_upb, Int_t col_lwb, Int_t col_upb);
88 inline Float_t & UncheckedAt(Int_t rown, Int_t coln) const {return (fIndex[coln])[rown];} //fast acces
89 inline Float_t UncheckedAtFast(Int_t rown, Int_t coln) const {return (fIndex[coln])[rown];} //fast acces
90};
91
92AliTPCFastMatrix::AliTPCFastMatrix(Int_t row_lwb, Int_t row_upb, Int_t col_lwb, Int_t col_upb):
93 TMatrix(row_lwb, row_upb,col_lwb,col_upb)
94 {
95 };
96//_____________________________________________________________________________
97class AliTPCFastVector : public TVector {
98public :
99 AliTPCFastVector(Int_t size);
b6e0d3fe 100 virtual ~AliTPCFastVector(){;}
de61d5d5 101 inline Float_t & UncheckedAt(Int_t index) const {return fElements[index];} //fast acces
b6e0d3fe 102
de61d5d5 103};
104
105AliTPCFastVector::AliTPCFastVector(Int_t size):TVector(size){
106};
107
fe4da5cc 108//_____________________________________________________________________________
109AliTPC::AliTPC()
110{
111 //
112 // Default constructor
113 //
114 fIshunt = 0;
fe4da5cc 115 fHits = 0;
116 fDigits = 0;
fe4da5cc 117 fNsectors = 0;
cc80f89e 118 fDigitsArray = 0;
119 fClustersArray = 0;
afc42102 120 fDefaults = 0;
792bb11c 121 fTrackHits = 0;
122 fTrackHitsOld = 0;
da33556f 123 fHitType = 2; //default CONTAINERS - based on ROOT structure
407ff276 124 fTPCParam = 0;
125 fNoiseTable = 0;
792bb11c 126 fActiveSectors =0;
407ff276 127
fe4da5cc 128}
129
130//_____________________________________________________________________________
131AliTPC::AliTPC(const char *name, const char *title)
132 : AliDetector(name,title)
133{
134 //
135 // Standard constructor
136 //
137
138 //
139 // Initialise arrays of hits and digits
140 fHits = new TClonesArray("AliTPChit", 176);
792bb11c 141 gAlice->AddHitList(fHits);
cc80f89e 142 fDigitsArray = 0;
143 fClustersArray= 0;
afc42102 144 fDefaults = 0;
fe4da5cc 145 //
792bb11c 146 fTrackHits = new AliTPCTrackHitsV2;
39c8eb58 147 fTrackHits->SetHitPrecision(0.002);
148 fTrackHits->SetStepPrecision(0.003);
792bb11c 149 fTrackHits->SetMaxDistance(100);
150
151 fTrackHitsOld = new AliTPCTrackHits; //MI - 13.09.2000
152 fTrackHitsOld->SetHitPrecision(0.002);
153 fTrackHitsOld->SetStepPrecision(0.003);
154 fTrackHitsOld->SetMaxDistance(100);
155
407ff276 156 fNoiseTable =0;
39c8eb58 157
da33556f 158 fHitType = 2;
792bb11c 159 fActiveSectors = 0;
39c8eb58 160 //
fe4da5cc 161 // Initialise counters
cc80f89e 162 fNsectors = 0;
cc80f89e 163
fe4da5cc 164 //
165 fIshunt = 0;
166 //
167 // Initialise color attributes
168 SetMarkerColor(kYellow);
73042f01 169
170 //
171 // Set TPC parameters
172 //
173
afc42102 174
175 if (!strcmp(title,"Default")) {
176 fTPCParam = new AliTPCParamSR;
73042f01 177 } else {
178 cerr<<"AliTPC warning: in Config.C you must set non-default parameters\n";
179 fTPCParam=0;
180 }
181
fe4da5cc 182}
183
184//_____________________________________________________________________________
185AliTPC::~AliTPC()
186{
187 //
188 // TPC destructor
189 //
73042f01 190
fe4da5cc 191 fIshunt = 0;
192 delete fHits;
193 delete fDigits;
73042f01 194 delete fTPCParam;
39c8eb58 195 delete fTrackHits; //MI 15.09.2000
792bb11c 196 delete fTrackHitsOld; //MI 10.12.2001
407ff276 197 if (fNoiseTable) delete [] fNoiseTable;
198
fe4da5cc 199}
200
fe4da5cc 201//_____________________________________________________________________________
202void AliTPC::AddHit(Int_t track, Int_t *vol, Float_t *hits)
203{
204 //
205 // Add a hit to the list
206 //
39c8eb58 207 // TClonesArray &lhits = *fHits;
208 // new(lhits[fNhits++]) AliTPChit(fIshunt,track,vol,hits);
209 if (fHitType&1){
210 TClonesArray &lhits = *fHits;
211 new(lhits[fNhits++]) AliTPChit(fIshunt,track,vol,hits);
212 }
792bb11c 213 if (fHitType>1)
39c8eb58 214 AddHit2(track,vol,hits);
fe4da5cc 215}
88cb7938 216
fe4da5cc 217//_____________________________________________________________________________
218void AliTPC::BuildGeometry()
219{
cc80f89e 220
fe4da5cc 221 //
222 // Build TPC ROOT TNode geometry for the event display
223 //
73042f01 224 TNode *nNode, *nTop;
fe4da5cc 225 TTUBS *tubs;
226 Int_t i;
227 const int kColorTPC=19;
1283eee5 228 char name[5], title[25];
fe4da5cc 229 const Double_t kDegrad=TMath::Pi()/180;
1283eee5 230 const Double_t kRaddeg=180./TMath::Pi();
231
1283eee5 232
73042f01 233 Float_t innerOpenAngle = fTPCParam->GetInnerAngle();
234 Float_t outerOpenAngle = fTPCParam->GetOuterAngle();
1283eee5 235
73042f01 236 Float_t innerAngleShift = fTPCParam->GetInnerAngleShift();
237 Float_t outerAngleShift = fTPCParam->GetOuterAngleShift();
1283eee5 238
239 Int_t nLo = fTPCParam->GetNInnerSector()/2;
240 Int_t nHi = fTPCParam->GetNOuterSector()/2;
241
73042f01 242 const Double_t kloAng = (Double_t)TMath::Nint(innerOpenAngle*kRaddeg);
243 const Double_t khiAng = (Double_t)TMath::Nint(outerOpenAngle*kRaddeg);
244 const Double_t kloAngSh = (Double_t)TMath::Nint(innerAngleShift*kRaddeg);
245 const Double_t khiAngSh = (Double_t)TMath::Nint(outerAngleShift*kRaddeg);
1283eee5 246
247
73042f01 248 const Double_t kloCorr = 1/TMath::Cos(0.5*kloAng*kDegrad);
249 const Double_t khiCorr = 1/TMath::Cos(0.5*khiAng*kDegrad);
1283eee5 250
251 Double_t rl,ru;
252
253
fe4da5cc 254 //
255 // Get ALICE top node
fe4da5cc 256 //
1283eee5 257
73042f01 258 nTop=gAlice->GetGeometry()->GetNode("alice");
1283eee5 259
260 // inner sectors
261
cc80f89e 262 rl = fTPCParam->GetInnerRadiusLow();
263 ru = fTPCParam->GetInnerRadiusUp();
1283eee5 264
265
fe4da5cc 266 for(i=0;i<nLo;i++) {
267 sprintf(name,"LS%2.2d",i);
1283eee5 268 name[4]='\0';
269 sprintf(title,"TPC low sector %3d",i);
270 title[24]='\0';
271
73042f01 272 tubs = new TTUBS(name,title,"void",rl*kloCorr,ru*kloCorr,250.,
273 kloAng*(i-0.5)+kloAngSh,kloAng*(i+0.5)+kloAngSh);
fe4da5cc 274 tubs->SetNumberOfDivisions(1);
73042f01 275 nTop->cd();
276 nNode = new TNode(name,title,name,0,0,0,"");
277 nNode->SetLineColor(kColorTPC);
278 fNodes->Add(nNode);
fe4da5cc 279 }
1283eee5 280
fe4da5cc 281 // Outer sectors
1283eee5 282
cc80f89e 283 rl = fTPCParam->GetOuterRadiusLow();
284 ru = fTPCParam->GetOuterRadiusUp();
1283eee5 285
fe4da5cc 286 for(i=0;i<nHi;i++) {
287 sprintf(name,"US%2.2d",i);
1283eee5 288 name[4]='\0';
fe4da5cc 289 sprintf(title,"TPC upper sector %d",i);
1283eee5 290 title[24]='\0';
73042f01 291 tubs = new TTUBS(name,title,"void",rl*khiCorr,ru*khiCorr,250,
292 khiAng*(i-0.5)+khiAngSh,khiAng*(i+0.5)+khiAngSh);
fe4da5cc 293 tubs->SetNumberOfDivisions(1);
73042f01 294 nTop->cd();
295 nNode = new TNode(name,title,name,0,0,0,"");
296 nNode->SetLineColor(kColorTPC);
297 fNodes->Add(nNode);
fe4da5cc 298 }
cc80f89e 299
73042f01 300}
1283eee5 301
fe4da5cc 302//_____________________________________________________________________________
303Int_t AliTPC::DistancetoPrimitive(Int_t , Int_t )
304{
305 //
306 // Calculate distance from TPC to mouse on the display
307 // Dummy procedure
308 //
309 return 9999;
310}
311
88cb7938 312void AliTPC::Clusters2Tracks()
313 {
3c0f9266 314 //-----------------------------------------------------------------
315 // This is a track finder.
3c0f9266 316 //-----------------------------------------------------------------
c630aafd 317 Error("Clusters2Tracks",
318 "Dummy function ! Call AliTPCtracker::Clusters2Tracks(...) instead !");
88cb7938 319 }
fe4da5cc 320
321//_____________________________________________________________________________
322void AliTPC::CreateMaterials()
323{
8c555625 324 //-----------------------------------------------
37831078 325 // Create Materials for for TPC simulations
8c555625 326 //-----------------------------------------------
327
328 //-----------------------------------------------------------------
329 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
330 //-----------------------------------------------------------------
1283eee5 331
73042f01 332 Int_t iSXFLD=gAlice->Field()->Integ();
333 Float_t sXMGMX=gAlice->Field()->Max();
1283eee5 334
335 Float_t amat[5]; // atomic numbers
336 Float_t zmat[5]; // z
337 Float_t wmat[5]; // proportions
338
339 Float_t density;
37831078 340 Float_t apure[2];
1283eee5 341
1283eee5 342
37831078 343 //***************** Gases *************************
344
345 //-------------------------------------------------
1283eee5 346 // pure gases
37831078 347 //-------------------------------------------------
1283eee5 348
37831078 349 // Neon
1283eee5 350
351
37831078 352 amat[0]= 20.18;
353 zmat[0]= 10.;
1283eee5 354 density = 0.0009;
37831078 355
356 apure[0]=amat[0];
1283eee5 357
37831078 358 AliMaterial(20,"Ne",amat[0],zmat[0],density,999.,999.);
1283eee5 359
37831078 360 // Argon
1283eee5 361
37831078 362 amat[0]= 39.948;
363 zmat[0]= 18.;
364 density = 0.001782;
1283eee5 365
37831078 366 apure[1]=amat[0];
1283eee5 367
37831078 368 AliMaterial(21,"Ar",amat[0],zmat[0],density,999.,999.);
369
1283eee5 370
371 //--------------------------------------------------------------
372 // gases - compounds
373 //--------------------------------------------------------------
374
375 Float_t amol[3];
376
37831078 377 // CO2
1283eee5 378
379 amat[0]=12.011;
380 amat[1]=15.9994;
381
382 zmat[0]=6.;
383 zmat[1]=8.;
384
385 wmat[0]=1.;
386 wmat[1]=2.;
387
388 density=0.001977;
389
390 amol[0] = amat[0]*wmat[0]+amat[1]*wmat[1];
391
392 AliMixture(10,"CO2",amat,zmat,density,-2,wmat);
37831078 393
1283eee5 394 // CF4
395
396 amat[0]=12.011;
397 amat[1]=18.998;
398
399 zmat[0]=6.;
400 zmat[1]=9.;
401
402 wmat[0]=1.;
403 wmat[1]=4.;
404
405 density=0.003034;
406
407 amol[1] = amat[0]*wmat[0]+amat[1]*wmat[1];
408
409 AliMixture(11,"CF4",amat,zmat,density,-2,wmat);
410
37831078 411
1283eee5 412 // CH4
413
414 amat[0]=12.011;
415 amat[1]=1.;
416
417 zmat[0]=6.;
418 zmat[1]=1.;
419
420 wmat[0]=1.;
421 wmat[1]=4.;
422
423 density=0.000717;
424
425 amol[2] = amat[0]*wmat[0]+amat[1]*wmat[1];
426
427 AliMixture(12,"CH4",amat,zmat,density,-2,wmat);
428
429 //----------------------------------------------------------------
430 // gases - mixtures, ID >= 20 pure gases, <= 10 ID < 20 -compounds
431 //----------------------------------------------------------------
37831078 432
00d6d986 433 char namate[21]="";
1283eee5 434 density = 0.;
435 Float_t am=0;
436 Int_t nc;
37831078 437 Float_t rho,absl,X0,buf[1];
1283eee5 438 Int_t nbuf;
37831078 439 Float_t a,z;
1283eee5 440
441 for(nc = 0;nc<fNoComp;nc++)
442 {
443
444 // retrive material constants
445
37831078 446 gMC->Gfmate((*fIdmate)[fMixtComp[nc]],namate,a,z,rho,X0,absl,buf,nbuf);
1283eee5 447
448 amat[nc] = a;
449 zmat[nc] = z;
450
451 Int_t nnc = (fMixtComp[nc]>=20) ? fMixtComp[nc]%20 : fMixtComp[nc]%10;
452
37831078 453 am += fMixtProp[nc]*((fMixtComp[nc]>=20) ? apure[nnc] : amol[nnc]);
1283eee5 454 density += fMixtProp[nc]*rho; // density of the mixture
455
456 }
457
458 // mixture proportions by weight!
459
460 for(nc = 0;nc<fNoComp;nc++)
461 {
462
463 Int_t nnc = (fMixtComp[nc]>=20) ? fMixtComp[nc]%20 : fMixtComp[nc]%10;
464
37831078 465 wmat[nc] = fMixtProp[nc]*((fMixtComp[nc]>=20) ?
466 apure[nnc] : amol[nnc])/am;
467
468 }
469
470 // Drift gases 1 - nonsensitive, 2 - sensitive
1283eee5 471
1283eee5 472 AliMixture(31,"Drift gas 1",amat,zmat,density,fNoComp,wmat);
473 AliMixture(32,"Drift gas 2",amat,zmat,density,fNoComp,wmat);
1283eee5 474
1283eee5 475
37831078 476 // Air
477
478 amat[0] = 14.61;
479 zmat[0] = 7.3;
480 density = 0.001205;
1283eee5 481
37831078 482 AliMaterial(24,"Air",amat[0],zmat[0],density,999.,999.);
1283eee5 483
1283eee5 484
485 //----------------------------------------------------------------------
486 // solid materials
487 //----------------------------------------------------------------------
488
1283eee5 489
37831078 490 // Kevlar C14H22O2N2
1283eee5 491
37831078 492 amat[0] = 12.011;
493 amat[1] = 1.;
494 amat[2] = 15.999;
495 amat[3] = 14.006;
1283eee5 496
37831078 497 zmat[0] = 6.;
498 zmat[1] = 1.;
499 zmat[2] = 8.;
500 zmat[3] = 7.;
501
502 wmat[0] = 14.;
503 wmat[1] = 22.;
504 wmat[2] = 2.;
505 wmat[3] = 2.;
506
507 density = 1.45;
508
509 AliMixture(34,"Kevlar",amat,zmat,density,-4,wmat);
510
511 // NOMEX
1283eee5 512
37831078 513 amat[0] = 12.011;
514 amat[1] = 1.;
515 amat[2] = 15.999;
516 amat[3] = 14.006;
517
518 zmat[0] = 6.;
519 zmat[1] = 1.;
520 zmat[2] = 8.;
521 zmat[3] = 7.;
522
523 wmat[0] = 14.;
524 wmat[1] = 22.;
525 wmat[2] = 2.;
526 wmat[3] = 2.;
527
528 density = 0.03;
1283eee5 529
fe4da5cc 530
37831078 531 AliMixture(35,"NOMEX",amat,zmat,density,-4,wmat);
532
533 // Makrolon C16H18O3
534
535 amat[0] = 12.011;
536 amat[1] = 1.;
537 amat[2] = 15.999;
1283eee5 538
37831078 539 zmat[0] = 6.;
540 zmat[1] = 1.;
541 zmat[2] = 8.;
542
543 wmat[0] = 16.;
544 wmat[1] = 18.;
545 wmat[2] = 3.;
546
547 density = 1.2;
548
549 AliMixture(36,"Makrolon",amat,zmat,density,-3,wmat);
550
1283eee5 551 // Mylar C5H4O2
552
553 amat[0]=12.011;
554 amat[1]=1.;
555 amat[2]=15.9994;
556
557 zmat[0]=6.;
558 zmat[1]=1.;
559 zmat[2]=8.;
560
561 wmat[0]=5.;
562 wmat[1]=4.;
563 wmat[2]=2.;
564
565 density = 1.39;
fe4da5cc 566
37831078 567 AliMixture(37, "Mylar",amat,zmat,density,-3,wmat);
1283eee5 568
ba1d05f9 569 // SiO2 - used later for the glass fiber
1283eee5 570
37831078 571 amat[0]=28.086;
572 amat[1]=15.9994;
1283eee5 573
37831078 574 zmat[0]=14.;
575 zmat[1]=8.;
1283eee5 576
37831078 577 wmat[0]=1.;
578 wmat[1]=2.;
1283eee5 579
1283eee5 580
ba1d05f9 581 AliMixture(38,"SiO2",amat,zmat,2.2,-2,wmat); //SiO2 - quartz (rho=2.2)
1283eee5 582
37831078 583 // Al
1283eee5 584
37831078 585 amat[0] = 26.98;
586 zmat[0] = 13.;
1283eee5 587
37831078 588 density = 2.7;
1283eee5 589
37831078 590 AliMaterial(40,"Al",amat[0],zmat[0],density,999.,999.);
1283eee5 591
37831078 592 // Si
1283eee5 593
37831078 594 amat[0] = 28.086;
9a3667bd 595 zmat[0] = 14.;
1283eee5 596
37831078 597 density = 2.33;
1283eee5 598
37831078 599 AliMaterial(41,"Si",amat[0],zmat[0],density,999.,999.);
1283eee5 600
37831078 601 // Cu
1283eee5 602
37831078 603 amat[0] = 63.546;
604 zmat[0] = 29.;
1283eee5 605
37831078 606 density = 8.96;
1283eee5 607
37831078 608 AliMaterial(42,"Cu",amat[0],zmat[0],density,999.,999.);
1283eee5 609
37831078 610 // Tedlar C2H3F
1283eee5 611
37831078 612 amat[0] = 12.011;
613 amat[1] = 1.;
614 amat[2] = 18.998;
1283eee5 615
37831078 616 zmat[0] = 6.;
617 zmat[1] = 1.;
618 zmat[2] = 9.;
1283eee5 619
37831078 620 wmat[0] = 2.;
621 wmat[1] = 3.;
622 wmat[2] = 1.;
1283eee5 623
37831078 624 density = 1.71;
1283eee5 625
37831078 626 AliMixture(43, "Tedlar",amat,zmat,density,-3,wmat);
1283eee5 627
1283eee5 628
37831078 629 // Plexiglas C5H8O2
1283eee5 630
37831078 631 amat[0]=12.011;
632 amat[1]=1.;
633 amat[2]=15.9994;
1283eee5 634
37831078 635 zmat[0]=6.;
636 zmat[1]=1.;
637 zmat[2]=8.;
1283eee5 638
37831078 639 wmat[0]=5.;
640 wmat[1]=8.;
641 wmat[2]=2.;
1283eee5 642
37831078 643 density=1.18;
1283eee5 644
37831078 645 AliMixture(44,"Plexiglas",amat,zmat,density,-3,wmat);
1283eee5 646
ba1d05f9 647 // Epoxy - C14 H20 O3
1283eee5 648
5a28a08f 649
650 amat[0]=12.011;
651 amat[1]=1.;
652 amat[2]=15.9994;
653
654 zmat[0]=6.;
655 zmat[1]=1.;
656 zmat[2]=8.;
657
ba1d05f9 658 wmat[0]=14.;
659 wmat[1]=20.;
5a28a08f 660 wmat[2]=3.;
661
ba1d05f9 662 density=1.25;
5a28a08f 663
664 AliMixture(45,"Epoxy",amat,zmat,density,-3,wmat);
37831078 665
ba1d05f9 666 // Carbon
667
668 amat[0]=12.011;
669 zmat[0]=6.;
670 density= 2.265;
671
672 AliMaterial(46,"C",amat[0],zmat[0],density,999.,999.);
673
674 // get epoxy
675
676 gMC->Gfmate((*fIdmate)[45],namate,amat[1],zmat[1],rho,X0,absl,buf,nbuf);
677
678 // Carbon fiber
679
680 wmat[0]=0.644; // by weight!
681 wmat[1]=0.356;
682
683 density=0.5*(1.25+2.265);
684
685 AliMixture(47,"Cfiber",amat,zmat,density,2,wmat);
686
687 // get SiO2
688
689 gMC->Gfmate((*fIdmate)[38],namate,amat[0],zmat[0],rho,X0,absl,buf,nbuf);
690
691 wmat[0]=0.725; // by weight!
692 wmat[1]=0.275;
693
694 density=1.7;
695
696 AliMixture(39,"G10",amat,zmat,density,2,wmat);
697
698
699
700
37831078 701 //----------------------------------------------------------
702 // tracking media for gases
703 //----------------------------------------------------------
704
705 AliMedium(0, "Air", 24, 0, iSXFLD, sXMGMX, 10., 999., .1, .01, .1);
706 AliMedium(1, "Drift gas 1", 31, 0, iSXFLD, sXMGMX, 10., 999.,.1,.001, .001);
707 AliMedium(2, "Drift gas 2", 32, 1, iSXFLD, sXMGMX, 10., 999.,.1,.001, .001);
708 AliMedium(3,"CO2",10,0, iSXFLD, sXMGMX, 10., 999.,.1, .001, .001);
709
710 //-----------------------------------------------------------
711 // tracking media for solids
712 //-----------------------------------------------------------
713
714 AliMedium(4,"Al",40,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
715 AliMedium(5,"Kevlar",34,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
716 AliMedium(6,"Nomex",35,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
717 AliMedium(7,"Makrolon",36,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
718 AliMedium(8,"Mylar",37,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
719 AliMedium(9,"Tedlar",43,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
720 AliMedium(10,"Cu",42,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
721 AliMedium(11,"Si",41,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
722 AliMedium(12,"G10",39,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
723 AliMedium(13,"Plexiglas",44,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
5a28a08f 724 AliMedium(14,"Epoxy",45,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
ba1d05f9 725 AliMedium(15,"Cfiber",47,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
1283eee5 726
fe4da5cc 727}
728
407ff276 729void AliTPC::GenerNoise(Int_t tablesize)
730{
731 //
732 //Generate table with noise
733 //
734 if (fTPCParam==0) {
735 // error message
736 fNoiseDepth=0;
737 return;
738 }
739 if (fNoiseTable) delete[] fNoiseTable;
740 fNoiseTable = new Float_t[tablesize];
741 fNoiseDepth = tablesize;
742 fCurrentNoise =0; //!index of the noise in the noise table
743
744 Float_t norm = fTPCParam->GetNoise()*fTPCParam->GetNoiseNormFac();
745 for (Int_t i=0;i<tablesize;i++) fNoiseTable[i]= gRandom->Gaus(0,norm);
746}
747
748Float_t AliTPC::GetNoise()
749{
750 // get noise from table
751 // if ((fCurrentNoise%10)==0)
752 // fCurrentNoise= gRandom->Rndm()*fNoiseDepth;
753 if (fCurrentNoise>=fNoiseDepth) fCurrentNoise=0;
754 return fNoiseTable[fCurrentNoise++];
755 //gRandom->Gaus(0, fTPCParam->GetNoise()*fTPCParam->GetNoiseNormFac());
756}
757
758
792bb11c 759Bool_t AliTPC::IsSectorActive(Int_t sec)
760{
761 //
762 // check if the sector is active
763 if (!fActiveSectors) return kTRUE;
764 else return fActiveSectors[sec];
765}
766
767void AliTPC::SetActiveSectors(Int_t * sectors, Int_t n)
768{
769 // activate interesting sectors
88cb7938 770 SetTreeAddress();//just for security
792bb11c 771 if (fActiveSectors) delete [] fActiveSectors;
772 fActiveSectors = new Bool_t[fTPCParam->GetNSector()];
773 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kFALSE;
774 for (Int_t i=0;i<n;i++)
775 if ((sectors[i]>=0) && sectors[i]<fTPCParam->GetNSector()) fActiveSectors[sectors[i]]=kTRUE;
776
777}
778
12d8d654 779void AliTPC::SetActiveSectors(Int_t flag)
792bb11c 780{
781 //
782 // activate sectors which were hitted by tracks
783 //loop over tracks
88cb7938 784 SetTreeAddress();//just for security
792bb11c 785 if (fHitType==0) return; // if Clones hit - not short volume ID information
786 if (fActiveSectors) delete [] fActiveSectors;
787 fActiveSectors = new Bool_t[fTPCParam->GetNSector()];
12d8d654 788 if (flag) {
789 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kTRUE;
790 return;
791 }
792bb11c 792 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kFALSE;
793 TBranch * branch=0;
88cb7938 794 if (TreeH() == 0x0)
795 {
796 Fatal("SetActiveSectors","Can not find TreeH in folder");
797 return;
798 }
799 if (fHitType>1) branch = TreeH()->GetBranch("TPC2");
800 else branch = TreeH()->GetBranch("TPC");
801 Stat_t ntracks = TreeH()->GetEntries();
792bb11c 802 // loop over all hits
88cb7938 803 cout<<"\nAliTPC::SetActiveSectors(): Got "<<ntracks<<" tracks\n";
804
805 for(Int_t track=0;track<ntracks;track++)
806 {
792bb11c 807 ResetHits();
808 //
809 if (fTrackHits && fHitType&4) {
88cb7938 810 TBranch * br1 = TreeH()->GetBranch("fVolumes");
811 TBranch * br2 = TreeH()->GetBranch("fNVolumes");
792bb11c 812 br1->GetEvent(track);
813 br2->GetEvent(track);
814 Int_t *volumes = fTrackHits->GetVolumes();
815 for (Int_t j=0;j<fTrackHits->GetNVolumes(); j++)
816 fActiveSectors[volumes[j]]=kTRUE;
817 }
818
819 //
820 if (fTrackHitsOld && fHitType&2) {
88cb7938 821 TBranch * br = TreeH()->GetBranch("fTrackHitsInfo");
792bb11c 822 br->GetEvent(track);
823 AliObjectArray * ar = fTrackHitsOld->fTrackHitsInfo;
824 for (UInt_t j=0;j<ar->GetSize();j++){
825 fActiveSectors[((AliTrackHitsInfo*)ar->At(j))->fVolumeID] =kTRUE;
826 }
827 }
828 }
829
830}
831
832
833
fe4da5cc 834
88cb7938 835void AliTPC::Digits2Clusters(Int_t eventnumber)
fe4da5cc 836{
3c0f9266 837 //-----------------------------------------------------------------
838 // This is a simple cluster finder.
3c0f9266 839 //-----------------------------------------------------------------
c630aafd 840 Error("Digits2Clusters",
841 "Dummy function ! Call AliTPCclusterer::Digits2Clusters(...) instead !");
fe4da5cc 842}
843
73042f01 844extern Double_t SigmaY2(Double_t, Double_t, Double_t);
845extern Double_t SigmaZ2(Double_t, Double_t);
fe4da5cc 846//_____________________________________________________________________________
c630aafd 847void AliTPC::Hits2Clusters(Int_t eventn)
fe4da5cc 848{
8c555625 849 //--------------------------------------------------------
fe4da5cc 850 // TPC simple cluster generator from hits
851 // obtained from the TPC Fast Simulator
8c555625 852 // The point errors are taken from the parametrization
853 //--------------------------------------------------------
854
855 //-----------------------------------------------------------------
856 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
857 //-----------------------------------------------------------------
73042f01 858 // Adopted to Marian's cluster data structure by I.Belikov, CERN,
859 // Jouri.Belikov@cern.ch
860 //----------------------------------------------------------------
861
862 /////////////////////////////////////////////////////////////////////////////
863 //
864 //---------------------------------------------------------------------
865 // ALICE TPC Cluster Parameters
866 //--------------------------------------------------------------------
867
868
869
870 // Cluster width in rphi
871 const Float_t kACrphi=0.18322;
872 const Float_t kBCrphi=0.59551e-3;
873 const Float_t kCCrphi=0.60952e-1;
874 // Cluster width in z
875 const Float_t kACz=0.19081;
876 const Float_t kBCz=0.55938e-3;
877 const Float_t kCCz=0.30428;
878
73042f01 879
88cb7938 880 if (!fLoader) {
73042f01 881 cerr<<"AliTPC::Hits2Clusters(): output file not open !\n";
882 return;
883 }
3c0f9266 884
afc42102 885 //if(fDefaults == 0) SetDefaults();
cc80f89e 886
73042f01 887 Float_t sigmaRphi,sigmaZ,clRphi,clZ;
fe4da5cc 888 //
1578254f 889 TParticle *particle; // pointer to a given particle
fe4da5cc 890 AliTPChit *tpcHit; // pointer to a sigle TPC hit
39c8eb58 891 Int_t sector;
fe4da5cc 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
88cb7938 901 TTree *tH = TreeH();
902 if (tH == 0x0)
903 {
904 Fatal("Hits2Clusters","Can not find TreeH in folder");
905 return;
906 }
907 SetTreeAddress();
908
73042f01 909 Stat_t ntracks = tH->GetEntries();
73042f01 910
911 //Switch to the output file
88cb7938 912
913 if (fLoader->TreeR() == 0x0) fLoader->MakeTree("R");
914
915 cout<<"fTPCParam->GetTitle() = "<<fTPCParam->GetTitle()<<endl;
916
917 AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::fgkRunLoaderName);
918 rl->CdGAFile();
c630aafd 919 //fTPCParam->Write(fTPCParam->GetTitle());
88cb7938 920
73042f01 921 AliTPCClustersArray carray;
922 carray.Setup(fTPCParam);
923 carray.SetClusterType("AliTPCcluster");
88cb7938 924 carray.MakeTree(fLoader->TreeR());
73042f01 925
926 Int_t nclusters=0; //cluster counter
fe4da5cc 927
928 //------------------------------------------------------------
cc80f89e 929 // Loop over all sectors (72 sectors for 20 deg
930 // segmentation for both lower and upper sectors)
931 // Sectors 0-35 are lower sectors, 0-17 z>0, 17-35 z<0
3c0f9266 932 // Sectors 36-71 are upper sectors, 36-53 z>0, 54-71 z<0
fe4da5cc 933 //
3c0f9266 934 // First cluster for sector 0 starts at "0"
fe4da5cc 935 //------------------------------------------------------------
cc80f89e 936
937 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++){
8c555625 938 //MI change
cc80f89e 939 fTPCParam->AdjustCosSin(isec,cph,sph);
fe4da5cc 940
941 //------------------------------------------------------------
942 // Loop over tracks
943 //------------------------------------------------------------
944
945 for(Int_t track=0;track<ntracks;track++){
946 ResetHits();
73042f01 947 tH->GetEvent(track);
fe4da5cc 948 //
73042f01 949 // Get number of the TPC hits
792bb11c 950 //
39c8eb58 951 tpcHit = (AliTPChit*)FirstHit(-1);
952
fe4da5cc 953 // Loop over hits
954 //
39c8eb58 955 while(tpcHit){
956
957 if (tpcHit->fQ == 0.) {
958 tpcHit = (AliTPChit*) NextHit();
959 continue; //information about track (I.Belikov)
960 }
fe4da5cc 961 sector=tpcHit->fSector; // sector number
39c8eb58 962
39c8eb58 963 if(sector != isec){
964 tpcHit = (AliTPChit*) NextHit();
965 continue;
966 }
94de3818 967 ipart=tpcHit->Track();
2ab0c725 968 particle=gAlice->Particle(ipart);
1578254f 969 pl=particle->Pz();
970 pt=particle->Pt();
fe4da5cc 971 if(pt < 1.e-9) pt=1.e-9;
972 tanth=pl/pt;
973 tanth = TMath::Abs(tanth);
94de3818 974 rpad=TMath::Sqrt(tpcHit->X()*tpcHit->X() + tpcHit->Y()*tpcHit->Y());
fe4da5cc 975 ratio=0.001*rpad/pt; // pt must be in MeV/c - historical reason
73042f01 976
fe4da5cc 977 // space-point resolutions
978
73042f01 979 sigmaRphi=SigmaY2(rpad,tanth,pt);
980 sigmaZ =SigmaZ2(rpad,tanth );
fe4da5cc 981
982 // cluster widths
983
73042f01 984 clRphi=kACrphi-kBCrphi*rpad*tanth+kCCrphi*ratio*ratio;
985 clZ=kACz-kBCz*rpad*tanth+kCCz*tanth*tanth;
fe4da5cc 986
987 // temporary protection
988
73042f01 989 if(sigmaRphi < 0.) sigmaRphi=0.4e-3;
990 if(sigmaZ < 0.) sigmaZ=0.4e-3;
991 if(clRphi < 0.) clRphi=2.5e-3;
992 if(clZ < 0.) clZ=2.5e-5;
fe4da5cc 993
994 //
cc80f89e 995
996 //
997 // smearing --> rotate to the 1 (13) or to the 25 (49) sector,
fe4da5cc 998 // then the inaccuracy in a X-Y plane is only along Y (pad row)!
999 //
94de3818 1000 Float_t xprim= tpcHit->X()*cph + tpcHit->Y()*sph;
1001 Float_t yprim=-tpcHit->X()*sph + tpcHit->Y()*cph;
73042f01 1002 xyz[0]=gRandom->Gaus(yprim,TMath::Sqrt(sigmaRphi)); // y
1003 Float_t alpha=(isec < fTPCParam->GetNInnerSector()) ?
1004 fTPCParam->GetInnerAngle() : fTPCParam->GetOuterAngle();
1005 Float_t ymax=xprim*TMath::Tan(0.5*alpha);
1006 if (TMath::Abs(xyz[0])>ymax) xyz[0]=yprim;
94de3818 1007 xyz[1]=gRandom->Gaus(tpcHit->Z(),TMath::Sqrt(sigmaZ)); // z
1008 if (TMath::Abs(xyz[1])>fTPCParam->GetZLength()) xyz[1]=tpcHit->Z();
39c8eb58 1009 xyz[2]=sigmaRphi; // fSigmaY2
1010 xyz[3]=sigmaZ; // fSigmaZ2
1011 xyz[4]=tpcHit->fQ; // q
73042f01 1012
1013 AliTPCClustersRow *clrow=carray.GetRow(sector,tpcHit->fPadRow);
1014 if (!clrow) clrow=carray.CreateRow(sector,tpcHit->fPadRow);
1015
94de3818 1016 Int_t tracks[3]={tpcHit->Track(), -1, -1};
39c8eb58 1017 AliTPCcluster cluster(tracks,xyz);
73042f01 1018
1019 clrow->InsertCluster(&cluster); nclusters++;
1020
39c8eb58 1021 tpcHit = (AliTPChit*)NextHit();
1022
1023
fe4da5cc 1024 } // end of loop over hits
73042f01 1025
1026 } // end of loop over tracks
1027
1028 Int_t nrows=fTPCParam->GetNRow(isec);
1029 for (Int_t irow=0; irow<nrows; irow++) {
1030 AliTPCClustersRow *clrow=carray.GetRow(isec,irow);
1031 if (!clrow) continue;
1032 carray.StoreRow(isec,irow);
1033 carray.ClearRow(isec,irow);
1034 }
1035
cc80f89e 1036 } // end of loop over sectors
73042f01 1037
1038 cerr<<"Number of made clusters : "<<nclusters<<" \n";
88cb7938 1039 fLoader->WriteRecPoints("OVERWRITE");
1040
cc80f89e 1041
1042} // end of function
1043
1044//_________________________________________________________________
1045void AliTPC::Hits2ExactClustersSector(Int_t isec)
1046{
1047 //--------------------------------------------------------
1048 //calculate exact cross point of track and given pad row
1049 //resulting values are expressed in "digit" coordinata
1050 //--------------------------------------------------------
1051
1052 //-----------------------------------------------------------------
1053 // Origin: Marian Ivanov GSI Darmstadt, m.ivanov@gsi.de
1054 //-----------------------------------------------------------------
1055 //
1056 if (fClustersArray==0){
1057 return;
1058 }
1059 //
1060 TParticle *particle; // pointer to a given particle
1061 AliTPChit *tpcHit; // pointer to a sigle TPC hit
5f16d237 1062 // Int_t sector,nhits;
cc80f89e 1063 Int_t ipart;
73042f01 1064 const Int_t kcmaxhits=30000;
de61d5d5 1065 AliTPCFastVector * xxxx = new AliTPCFastVector(kcmaxhits*4);
1066 AliTPCFastVector & xxx = *xxxx;
73042f01 1067 Int_t maxhits = kcmaxhits;
cc80f89e 1068 //construct array for each padrow
1069 for (Int_t i=0; i<fTPCParam->GetNRow(isec);i++)
1070 fClustersArray->CreateRow(isec,i);
fe4da5cc 1071
cc80f89e 1072 //---------------------------------------------------------------
1073 // Get the access to the tracks
1074 //---------------------------------------------------------------
1075
88cb7938 1076 TTree *tH = TreeH();
1077 if (tH == 0x0)
1078 {
1079 Fatal("Hits2Clusters","Can not find TreeH in folder");
1080 return;
1081 }
1082 SetTreeAddress();
1083
73042f01 1084 Stat_t ntracks = tH->GetEntries();
2ab0c725 1085 Int_t npart = gAlice->GetNtrack();
5f16d237 1086 //MI change
1087 TBranch * branch=0;
792bb11c 1088 if (fHitType>1) branch = tH->GetBranch("TPC2");
5f16d237 1089 else branch = tH->GetBranch("TPC");
1090
cc80f89e 1091 //------------------------------------------------------------
1092 // Loop over tracks
1093 //------------------------------------------------------------
792bb11c 1094
5f16d237 1095 for(Int_t track=0;track<ntracks;track++){
1096 Bool_t isInSector=kTRUE;
cc80f89e 1097 ResetHits();
792bb11c 1098 isInSector = TrackInVolume(isec,track);
5f16d237 1099 if (!isInSector) continue;
1100 //MI change
1101 branch->GetEntry(track); // get next track
cc80f89e 1102 //
1103 // Get number of the TPC hits and a pointer
1104 // to the particles
cc80f89e 1105 // Loop over hits
1106 //
1107 Int_t currentIndex=0;
1108 Int_t lastrow=-1; //last writen row
5f16d237 1109
1110 //M.I. changes
1111
1112 tpcHit = (AliTPChit*)FirstHit(-1);
1113 while(tpcHit){
1114
1115 Int_t sector=tpcHit->fSector; // sector number
1116 if(sector != isec){
1117 tpcHit = (AliTPChit*) NextHit();
1118 continue;
1119 }
1120
94de3818 1121 ipart=tpcHit->Track();
2ab0c725 1122 if (ipart<npart) particle=gAlice->Particle(ipart);
cc80f89e 1123
1124 //find row number
1125
94de3818 1126 Float_t x[3]={tpcHit->X(),tpcHit->Y(),tpcHit->Z()};
cc80f89e 1127 Int_t index[3]={1,isec,0};
1128 Int_t currentrow = fTPCParam->GetPadRow(x,index) ;
5f16d237 1129 if (currentrow<0) {tpcHit = (AliTPChit*)NextHit(); continue;}
cc80f89e 1130 if (lastrow<0) lastrow=currentrow;
1131 if (currentrow==lastrow){
1132 if ( currentIndex>=maxhits){
73042f01 1133 maxhits+=kcmaxhits;
cc80f89e 1134 xxx.ResizeTo(4*maxhits);
1135 }
1136 xxx(currentIndex*4)=x[0];
1137 xxx(currentIndex*4+1)=x[1];
1138 xxx(currentIndex*4+2)=x[2];
1139 xxx(currentIndex*4+3)=tpcHit->fQ;
1140 currentIndex++;
1141 }
1142 else
1143 if (currentIndex>2){
1144 Float_t sumx=0;
1145 Float_t sumx2=0;
1146 Float_t sumx3=0;
1147 Float_t sumx4=0;
1148 Float_t sumy=0;
1149 Float_t sumxy=0;
1150 Float_t sumx2y=0;
1151 Float_t sumz=0;
1152 Float_t sumxz=0;
1153 Float_t sumx2z=0;
1154 Float_t sumq=0;
1155 for (Int_t index=0;index<currentIndex;index++){
1156 Float_t x,x2,x3,x4;
1157 x=x2=x3=x4=xxx(index*4);
1158 x2*=x;
1159 x3*=x2;
1160 x4*=x3;
1161 sumx+=x;
1162 sumx2+=x2;
1163 sumx3+=x3;
1164 sumx4+=x4;
1165 sumy+=xxx(index*4+1);
1166 sumxy+=xxx(index*4+1)*x;
1167 sumx2y+=xxx(index*4+1)*x2;
1168 sumz+=xxx(index*4+2);
1169 sumxz+=xxx(index*4+2)*x;
1170 sumx2z+=xxx(index*4+2)*x2;
1171 sumq+=xxx(index*4+3);
1172 }
73042f01 1173 Float_t centralPad = (fTPCParam->GetNPads(isec,lastrow)-1)/2;
cc80f89e 1174 Float_t det=currentIndex*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumx*sumx4-sumx2*sumx3)+
1175 sumx2*(sumx*sumx3-sumx2*sumx2);
1176
1177 Float_t detay=sumy*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumxy*sumx4-sumx2y*sumx3)+
1178 sumx2*(sumxy*sumx3-sumx2y*sumx2);
1179 Float_t detaz=sumz*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumxz*sumx4-sumx2z*sumx3)+
1180 sumx2*(sumxz*sumx3-sumx2z*sumx2);
1181
1182 Float_t detby=currentIndex*(sumxy*sumx4-sumx2y*sumx3)-sumy*(sumx*sumx4-sumx2*sumx3)+
1183 sumx2*(sumx*sumx2y-sumx2*sumxy);
1184 Float_t detbz=currentIndex*(sumxz*sumx4-sumx2z*sumx3)-sumz*(sumx*sumx4-sumx2*sumx3)+
1185 sumx2*(sumx*sumx2z-sumx2*sumxz);
1186
da33556f 1187 if (TMath::Abs(det)<0.00001){
1188 tpcHit = (AliTPChit*)NextHit();
1189 continue;
1190 }
1191
73042f01 1192 Float_t y=detay/det+centralPad;
cc80f89e 1193 Float_t z=detaz/det;
1194 Float_t by=detby/det; //y angle
1195 Float_t bz=detbz/det; //z angle
1196 sumy/=Float_t(currentIndex);
1197 sumz/=Float_t(currentIndex);
5f16d237 1198
cc80f89e 1199 AliTPCClustersRow * row = (fClustersArray->GetRow(isec,lastrow));
5f16d237 1200 if (row!=0) {
1201 AliComplexCluster* cl = new((AliComplexCluster*)row->Append()) AliComplexCluster ;
1202 // AliComplexCluster cl;
1203 cl->fX=z;
1204 cl->fY=y;
1205 cl->fQ=sumq;
1206 cl->fSigmaX2=bz;
1207 cl->fSigmaY2=by;
1208 cl->fTracks[0]=ipart;
1209 }
cc80f89e 1210 currentIndex=0;
1211 lastrow=currentrow;
1212 } //end of calculating cluster for given row
1213
1214
5f16d237 1215 tpcHit = (AliTPChit*)NextHit();
cc80f89e 1216 } // end of loop over hits
1217 } // end of loop over tracks
1218 //write padrows to tree
1219 for (Int_t ii=0; ii<fTPCParam->GetNRow(isec);ii++) {
1220 fClustersArray->StoreRow(isec,ii);
1221 fClustersArray->ClearRow(isec,ii);
1222 }
1223 xxxx->Delete();
1224
fe4da5cc 1225}
0a61bf9d 1226
1227
1228
1229//__
1230void AliTPC::SDigits2Digits2(Int_t eventnumber)
1231{
1232 //create digits from summable digits
407ff276 1233 GenerNoise(500000); //create teble with noise
0a61bf9d 1234
1235 //conect tree with sSDigits
88cb7938 1236 TTree *t = fLoader->TreeS();
1237
1238 if (t == 0x0)
1239 {
1240 fLoader->LoadSDigits("READ");
1241 t = fLoader->TreeS();
1242 if (t == 0x0)
1243 {
1244 Error("SDigits2Digits2","Can not get input TreeS");
1245 return;
1246 }
1247 }
1248
1249 if (fLoader->TreeD() == 0x0) fLoader->MakeTree("D");
1250
0a61bf9d 1251 AliSimDigits digarr, *dummy=&digarr;
88cb7938 1252 TBranch* sdb = t->GetBranch("Segment");
1253 if (sdb == 0x0)
1254 {
1255 Error("SDigits2Digits2","Can not find branch with segments in TreeS.");
1256 return;
1257 }
1258
1259 sdb->SetAddress(&dummy);
1260
0a61bf9d 1261 Stat_t nentries = t->GetEntries();
1262
5f16d237 1263 // set zero suppression
1264
1265 fTPCParam->SetZeroSup(2);
1266
1267 // get zero suppression
1268
1269 Int_t zerosup = fTPCParam->GetZeroSup();
1270
1271 //make tree with digits
1272
0a61bf9d 1273 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1274 arr->SetClass("AliSimDigits");
1275 arr->Setup(fTPCParam);
88cb7938 1276 arr->MakeTree(fLoader->TreeD());
0a61bf9d 1277
88cb7938 1278 AliTPCParam * par = fTPCParam;
5f16d237 1279
0a61bf9d 1280 //Loop over segments of the TPC
5f16d237 1281
0a61bf9d 1282 for (Int_t n=0; n<nentries; n++) {
1283 t->GetEvent(n);
1284 Int_t sec, row;
1285 if (!par->AdjustSectorRow(digarr.GetID(),sec,row)) {
1286 cerr<<"AliTPC warning: invalid segment ID ! "<<digarr.GetID()<<endl;
1287 continue;
1288 }
88cb7938 1289 if (!IsSectorActive(sec))
1290 {
1291// cout<<n<<" NOT Active \n";
1292 continue;
1293 }
1294 else
1295 {
1296// cout<<n<<" Active \n";
1297 }
0a61bf9d 1298 AliSimDigits * digrow =(AliSimDigits*) arr->CreateRow(sec,row);
1299 Int_t nrows = digrow->GetNRows();
1300 Int_t ncols = digrow->GetNCols();
1301
1302 digrow->ExpandBuffer();
1303 digarr.ExpandBuffer();
1304 digrow->ExpandTrackBuffer();
1305 digarr.ExpandTrackBuffer();
1306
5f16d237 1307
407ff276 1308 Short_t * pamp0 = digarr.GetDigits();
1309 Int_t * ptracks0 = digarr.GetTracks();
1310 Short_t * pamp1 = digrow->GetDigits();
1311 Int_t * ptracks1 = digrow->GetTracks();
1312 Int_t nelems =nrows*ncols;
1313 Int_t saturation = fTPCParam->GetADCSat();
1314 //use internal structure of the AliDigits - for speed reason
1315 //if you cahnge implementation
1316 //of the Alidigits - it must be rewriten -
1317 for (Int_t i= 0; i<nelems; i++){
1318 // Float_t q = *pamp0;
1319 //q/=16.; //conversion faktor
1320 //Float_t noise= GetNoise();
1321 //q+=noise;
1322 //q= TMath::Nint(q);
1323 Float_t q = TMath::Nint(Float_t(*pamp0)/16.+GetNoise());
1324 if (q>zerosup){
1325 if (q>saturation) q=saturation;
1326 *pamp1=(Short_t)q;
1327 //if (ptracks0[0]==0)
1328 // ptracks1[0]=1;
1329 //else
1330 ptracks1[0]=ptracks0[0];
1331 ptracks1[nelems]=ptracks0[nelems];
1332 ptracks1[2*nelems]=ptracks0[2*nelems];
1333 }
1334 pamp0++;
1335 pamp1++;
1336 ptracks0++;
1337 ptracks1++;
1338 }
5f16d237 1339
5f16d237 1340 arr->StoreRow(sec,row);
1341 arr->ClearRow(sec,row);
9fe90376 1342 // cerr<<sec<<"\t"<<row<<"\n";
5f16d237 1343 }
0a61bf9d 1344
0a61bf9d 1345
5f16d237 1346 //write results
88cb7938 1347 fLoader->WriteDigits("OVERWRITE");
5f16d237 1348
88cb7938 1349 delete arr;
afc42102 1350}
1351//__________________________________________________________________
1352void AliTPC::SetDefaults(){
1353
1354
1355 cerr<<"Setting default parameters...\n";
1356
1357 // Set response functions
1358
88cb7938 1359 //
1360 AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::fgkRunLoaderName);
1361 rl->CdGAFile();
2ab0c725 1362 AliTPCParamSR *param=(AliTPCParamSR*)gDirectory->Get("75x40_100x60");
7a09f434 1363 if(param){
1364 printf("You are using 2 pad-length geom hits with 3 pad-lenght geom digits...\n");
1365 delete param;
1366 param = new AliTPCParamSR();
1367 }
1368 else {
1369 param=(AliTPCParamSR*)gDirectory->Get("75x40_100x60_150x60");
1370 }
1371 if(!param){
1372 printf("No TPC parameters found\n");
1373 exit(4);
1374 }
1375
1376
2ab0c725 1377 AliTPCPRF2D * prfinner = new AliTPCPRF2D;
f03e3423 1378 AliTPCPRF2D * prfouter1 = new AliTPCPRF2D;
1379 AliTPCPRF2D * prfouter2 = new AliTPCPRF2D;
2ab0c725 1380 AliTPCRF1D * rf = new AliTPCRF1D(kTRUE);
2ab0c725 1381 rf->SetGauss(param->GetZSigma(),param->GetZWidth(),1.);
1382 rf->SetOffset(3*param->GetZSigma());
1383 rf->Update();
afc42102 1384
1385 TDirectory *savedir=gDirectory;
2ab0c725 1386 TFile *f=TFile::Open("$ALICE_ROOT/TPC/AliTPCprf2d.root");
1387 if (!f->IsOpen()) {
afc42102 1388 cerr<<"Can't open $ALICE_ROOT/TPC/AliTPCprf2d.root !\n" ;
2ab0c725 1389 exit(3);
1390 }
1391 prfinner->Read("prf_07504_Gati_056068_d02");
f03e3423 1392 prfouter1->Read("prf_10006_Gati_047051_d03");
1393 prfouter2->Read("prf_15006_Gati_047051_d03");
2ab0c725 1394 f->Close();
afc42102 1395 savedir->cd();
1396
2ab0c725 1397 param->SetInnerPRF(prfinner);
f03e3423 1398 param->SetOuter1PRF(prfouter1);
1399 param->SetOuter2PRF(prfouter2);
2ab0c725 1400 param->SetTimeRF(rf);
1401
afc42102 1402 // set fTPCParam
1403
2ab0c725 1404 SetParam(param);
1405
afc42102 1406
1407 fDefaults = 1;
1408
1409}
1410//__________________________________________________________________
1411void AliTPC::Hits2Digits(Int_t eventnumber)
1412{
1413 //----------------------------------------------------
1414 // Loop over all sectors for a single event
1415 //----------------------------------------------------
88cb7938 1416 AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::fgkRunLoaderName);
1417 rl->GetEvent(eventnumber);
1418 if (fLoader->TreeH() == 0x0)
1419 {
1420 if(fLoader->LoadHits())
1421 {
1422 Error("Hits2Digits","Can not load hits.");
1423 }
1424 }
1425 SetTreeAddress();
1426
1427 if (fLoader->TreeD() == 0x0 )
1428 {
1429 fLoader->MakeTree("D");
1430 if (fLoader->TreeD() == 0x0 )
1431 {
1432 Error("Hits2Digits","Can not get TreeD");
1433 return;
1434 }
1435 }
afc42102 1436
1437 if(fDefaults == 0) SetDefaults(); // check if the parameters are set
407ff276 1438 GenerNoise(500000); //create teble with noise
2ab0c725 1439
1440 //setup TPCDigitsArray
afc42102 1441
1442 if(GetDigitsArray()) delete GetDigitsArray();
1443
2ab0c725 1444 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1445 arr->SetClass("AliSimDigits");
afc42102 1446 arr->Setup(fTPCParam);
88cb7938 1447
1448 arr->MakeTree(fLoader->TreeD());
2ab0c725 1449 SetDigitsArray(arr);
1450
afc42102 1451 fDigitsSwitch=0; // standard digits
2ab0c725 1452
0a9b058d 1453 cerr<<"Digitizing TPC -- normal digits...\n";
fe4da5cc 1454
88cb7938 1455 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++)
1456 if (IsSectorActive(isec))
1457 {
f2a509af 1458 if (fDebug) Info("Hits2Digits","Sector %d is active.",isec);
88cb7938 1459 Hits2DigitsSector(isec);
1460 }
1461 else
1462 {
f2a509af 1463 if (fDebug) Info("Hits2Digits","Sector %d is NOT active.",isec);
88cb7938 1464 }
cc80f89e 1465
88cb7938 1466 fLoader->WriteDigits("OVERWRITE");
f2a509af 1467
1468//this line prevents the crash in the similar one
1469//on the beginning of this method
1470//destructor attempts to reset the tree, which is deleted by the loader
1471//need to be redesign
1472 if(GetDigitsArray()) delete GetDigitsArray();
1473 SetDigitsArray(0x0);
1474
8c555625 1475}
1476
f8cf550c 1477//__________________________________________________________________
0a61bf9d 1478void AliTPC::Hits2SDigits2(Int_t eventnumber)
f8cf550c 1479{
1480
1481 //-----------------------------------------------------------
1482 // summable digits - 16 bit "ADC", no noise, no saturation
1483 //-----------------------------------------------------------
1484
1485 //----------------------------------------------------
afc42102 1486 // Loop over all sectors for a single event
f8cf550c 1487 //----------------------------------------------------
88cb7938 1488// AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::fgkRunLoaderName);
1489
1490 AliRunLoader* rl = fLoader->GetRunLoader();
1491
1492 rl->GetEvent(eventnumber);
1493 if (fLoader->TreeH() == 0x0)
1494 {
1495 if(fLoader->LoadHits())
1496 {
1497 Error("Hits2Digits","Can not load hits.");
1498 return;
1499 }
1500 }
1501 SetTreeAddress();
f8cf550c 1502
afc42102 1503
88cb7938 1504 if (fLoader->TreeS() == 0x0 )
1505 {
1506 fLoader->MakeTree("S");
1507 }
1508
afc42102 1509 if(fDefaults == 0) SetDefaults();
88cb7938 1510
407ff276 1511 GenerNoise(500000); //create table with noise
afc42102 1512 //setup TPCDigitsArray
1513
1514 if(GetDigitsArray()) delete GetDigitsArray();
1515
88cb7938 1516
afc42102 1517 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1518 arr->SetClass("AliSimDigits");
1519 arr->Setup(fTPCParam);
88cb7938 1520 arr->MakeTree(fLoader->TreeS());
1521
afc42102 1522 SetDigitsArray(arr);
1523
0a9b058d 1524 cerr<<"Digitizing TPC -- summable digits...\n";
afc42102 1525
1526 fDigitsSwitch=1; // summable digits
5f16d237 1527
1528 // set zero suppression to "0"
1529
1530 fTPCParam->SetZeroSup(0);
f8cf550c 1531
88cb7938 1532 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++)
1533 if (IsSectorActive(isec))
1534 {
1535// cout<<"Sector "<<isec<<" is active\n";
1536 Hits2DigitsSector(isec);
1537 }
1538
1539 fLoader->WriteSDigits("OVERWRITE");
1540
1541//this line prevents the crash in the similar one
1542//on the beginning of this method
1543//destructor attempts to reset the tree, which is deleted by the loader
1544//need to be redesign
1545 if(GetDigitsArray()) delete GetDigitsArray();
1546 SetDigitsArray(0x0);
f8cf550c 1547}
0a61bf9d 1548//__________________________________________________________________
88cb7938 1549
0a61bf9d 1550void AliTPC::Hits2SDigits()
1551{
1552
1553 //-----------------------------------------------------------
1554 // summable digits - 16 bit "ADC", no noise, no saturation
1555 //-----------------------------------------------------------
1556
1557 //----------------------------------------------------
1558 // Loop over all sectors for a single event
1559 //----------------------------------------------------
1560 //MI change - for pp run
88cb7938 1561// Int_t eventnumber = gAlice->GetEvNumber();
1562// AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::fgkRunLoaderName);
1563// rl->GetEvent(eventnumber);
1564// 12/05/2003 This method is obsolete and not used. It should be redesingned
1565// M.Kowalski
1566
1567 if (fLoader->TreeH() == 0x0)
1568 {
1569 if(fLoader->LoadHits())
1570 {
1571 Error("Hits2Digits","Can not load hits.");
1572 }
1573 }
1574 SetTreeAddress();
0a61bf9d 1575
1576 if(fDefaults == 0) SetDefaults();
180f4872 1577 GenerNoise(500000); //create table with noise
0a61bf9d 1578
1579 //setup TPCDigitsArray
1580
1581 if(GetDigitsArray()) delete GetDigitsArray();
1582
88cb7938 1583 if (fLoader->TreeS() == 0x0 )
1584 {
1585 fLoader->MakeTree("S");
1586 }
1587
0a61bf9d 1588 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1589 arr->SetClass("AliSimDigits");
1590 arr->Setup(fTPCParam);
88cb7938 1591 arr->MakeTree(fLoader->TreeS());
0a61bf9d 1592 SetDigitsArray(arr);
1593
0a9b058d 1594 cerr<<"Digitizing TPC -- summable digits...\n";
0a61bf9d 1595
1596 // fDigitsSwitch=1; // summable digits -for the moment direct
1597
792bb11c 1598 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++) if (IsSectorActive(isec)) Hits2DigitsSector(isec);
0a61bf9d 1599
0a61bf9d 1600 // write results
88cb7938 1601 //
1602 cout<<"Why method TPC::Hits2SDigits writes digits and not sdigits? skowron\n";
1603 fLoader->WriteDigits("OVERWRITE");
0a61bf9d 1604}
fe4da5cc 1605//_____________________________________________________________________________
88cb7938 1606
8c555625 1607void AliTPC::Hits2DigitsSector(Int_t isec)
fe4da5cc 1608{
8c555625 1609 //-------------------------------------------------------------------
fe4da5cc 1610 // TPC conversion from hits to digits.
8c555625 1611 //-------------------------------------------------------------------
1612
1613 //-----------------------------------------------------------------
1614 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1615 //-----------------------------------------------------------------
1616
fe4da5cc 1617 //-------------------------------------------------------
8c555625 1618 // Get the access to the track hits
fe4da5cc 1619 //-------------------------------------------------------
8c555625 1620
afc42102 1621 // check if the parameters are set - important if one calls this method
1622 // directly, not from the Hits2Digits
1623
1624 if(fDefaults == 0) SetDefaults();
cc80f89e 1625
88cb7938 1626 TTree *tH = TreeH(); // pointer to the hits tree
1627 if (tH == 0x0)
1628 {
1629 Fatal("Hits2DigitsSector","Can not find TreeH in folder");
1630 return;
1631 }
1632
73042f01 1633 Stat_t ntracks = tH->GetEntries();
8c555625 1634
1635 if( ntracks > 0){
1636
1637 //-------------------------------------------
1638 // Only if there are any tracks...
1639 //-------------------------------------------
1640
8c555625 1641 TObjArray **row;
fe4da5cc 1642
a62d28a2 1643 //printf("*** Processing sector number %d ***\n",isec);
8c555625 1644
1645 Int_t nrows =fTPCParam->GetNRow(isec);
1646
b584c7dd 1647 row= new TObjArray* [nrows+2]; // 2 extra rows for cross talk
fe4da5cc 1648
73042f01 1649 MakeSector(isec,nrows,tH,ntracks,row);
8c555625 1650
1651 //--------------------------------------------------------
1652 // Digitize this sector, row by row
de61d5d5 1653 // row[i] is the pointer to the TObjArray of AliTPCFastVectors,
8c555625 1654 // each one containing electrons accepted on this
1655 // row, assigned into tracks
1656 //--------------------------------------------------------
1657
1658 Int_t i;
1659
88cb7938 1660 if (fDigitsArray->GetTree()==0)
1661 {
1662 Fatal("Hits2DigitsSector","Tree not set in fDigitsArray");
1663 }
8c555625 1664
cc80f89e 1665 for (i=0;i<nrows;i++){
8c555625 1666
afc42102 1667 AliDigits * dig = fDigitsArray->CreateRow(isec,i);
8c555625 1668
cc80f89e 1669 DigitizeRow(i,isec,row);
8c555625 1670
cc80f89e 1671 fDigitsArray->StoreRow(isec,i);
8c555625 1672
792bb11c 1673 Int_t ndig = dig->GetDigitSize();
88cb7938 1674
1675 if (gDebug > 10)
1676 printf("*** Sector, row, compressed digits %d %d %d ***\n",isec,i,ndig);
792bb11c 1677
cc80f89e 1678 fDigitsArray->ClearRow(isec,i);
8c555625 1679
cc80f89e 1680
8c555625 1681 } // end of the sector digitization
8c555625 1682
df32adf9 1683 for(i=0;i<nrows+2;i++){
39c8eb58 1684 row[i]->Delete();
1685 delete row[i];
cc80f89e 1686 }
1687
8c555625 1688 delete [] row; // delete the array of pointers to TObjArray-s
1689
1690 } // ntracks >0
8c555625 1691
cc80f89e 1692} // end of Hits2DigitsSector
8c555625 1693
8c555625 1694
8c555625 1695//_____________________________________________________________________________
cc80f89e 1696void AliTPC::DigitizeRow(Int_t irow,Int_t isec,TObjArray **rows)
8c555625 1697{
1698 //-----------------------------------------------------------
1699 // Single row digitization, coupling from the neighbouring
1700 // rows taken into account
1701 //-----------------------------------------------------------
1702
1703 //-----------------------------------------------------------------
1704 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
cc80f89e 1705 // Modified: Marian Ivanov GSI Darmstadt, m.ivanov@gsi.de
8c555625 1706 //-----------------------------------------------------------------
1707
1708
8c555625 1709 Float_t zerosup = fTPCParam->GetZeroSup();
b584c7dd 1710 // Int_t nrows =fTPCParam->GetNRow(isec);
cc80f89e 1711 fCurrentIndex[1]= isec;
8c555625 1712
8c555625 1713
73042f01 1714 Int_t nofPads = fTPCParam->GetNPads(isec,irow);
1715 Int_t nofTbins = fTPCParam->GetMaxTBin();
1716 Int_t indexRange[4];
8c555625 1717 //
1718 // Integrated signal for this row
1719 // and a single track signal
cc80f89e 1720 //
de61d5d5 1721
1722 AliTPCFastMatrix *m1 = new AliTPCFastMatrix(0,nofPads,0,nofTbins); // integrated
1723 AliTPCFastMatrix *m2 = new AliTPCFastMatrix(0,nofPads,0,nofTbins); // single
8c555625 1724 //
de61d5d5 1725 AliTPCFastMatrix &total = *m1;
8c555625 1726
1727 // Array of pointers to the label-signal list
1728
73042f01 1729 Int_t nofDigits = nofPads*nofTbins; // number of digits for this row
1730 Float_t **pList = new Float_t* [nofDigits];
8c555625 1731
1732 Int_t lp;
cc80f89e 1733 Int_t i1;
73042f01 1734 for(lp=0;lp<nofDigits;lp++)pList[lp]=0; // set all pointers to NULL
8c555625 1735 //
cc80f89e 1736 //calculate signal
1737 //
b584c7dd 1738 //Int_t row1 = TMath::Max(irow-fTPCParam->GetNCrossRows(),0);
1739 //Int_t row2 = TMath::Min(irow+fTPCParam->GetNCrossRows(),nrows-1);
1740 Int_t row1=irow;
1741 Int_t row2=irow+2;
cc80f89e 1742 for (Int_t row= row1;row<=row2;row++){
1743 Int_t nTracks= rows[row]->GetEntries();
1744 for (i1=0;i1<nTracks;i1++){
1745 fCurrentIndex[2]= row;
b584c7dd 1746 fCurrentIndex[3]=irow+1;
1747 if (row==irow+1){
cc80f89e 1748 m2->Zero(); // clear single track signal matrix
73042f01 1749 Float_t trackLabel = GetSignal(rows[row],i1,m2,m1,indexRange);
1750 GetList(trackLabel,nofPads,m2,indexRange,pList);
cc80f89e 1751 }
73042f01 1752 else GetSignal(rows[row],i1,0,m1,indexRange);
cc80f89e 1753 }
8c555625 1754 }
cc80f89e 1755
8c555625 1756 Int_t tracks[3];
8c555625 1757
cc80f89e 1758 AliDigits *dig = fDigitsArray->GetRow(isec,irow);
de61d5d5 1759 Int_t gi=-1;
1760 Float_t fzerosup = zerosup+0.5;
1761 for(Int_t it=0;it<nofTbins;it++){
1762 Float_t *pq = &(total.UncheckedAt(0,it));
1763 for(Int_t ip=0;ip<nofPads;ip++){
1764 gi++;
1765 Float_t q=*pq;
1766 pq++;
f8cf550c 1767 if(fDigitsSwitch == 0){
407ff276 1768 q+=GetNoise();
de61d5d5 1769 if(q <=fzerosup) continue; // do not fill zeros
68771f83 1770 q = TMath::Nint(q);
f8cf550c 1771 if(q > fTPCParam->GetADCSat()) q = fTPCParam->GetADCSat(); // saturation
cc80f89e 1772
f8cf550c 1773 }
1774
1775 else {
5f16d237 1776 if(q <= 0.) continue; // do not fill zeros
68771f83 1777 if(q>2000.) q=2000.;
f8cf550c 1778 q *= 16.;
68771f83 1779 q = TMath::Nint(q);
f8cf550c 1780 }
8c555625 1781
1782 //
1783 // "real" signal or electronic noise (list = -1)?
1784 //
1785
1786 for(Int_t j1=0;j1<3;j1++){
407ff276 1787 tracks[j1] = (pList[gi]) ?(Int_t)(*(pList[gi]+j1)) : -2;
8c555625 1788 }
1789
cc80f89e 1790//Begin_Html
1791/*
1792 <A NAME="AliDigits"></A>
1793 using of AliDigits object
1794*/
1795//End_Html
1796 dig->SetDigitFast((Short_t)q,it,ip);
1797 if (fDigitsArray->IsSimulated())
1798 {
1799 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[0],it,ip,0);
1800 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[1],it,ip,1);
1801 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[2],it,ip,2);
1802 }
1803
8c555625 1804
1805 } // end of loop over time buckets
1806 } // end of lop over pads
1807
1808 //
1809 // This row has been digitized, delete nonused stuff
1810 //
1811
73042f01 1812 for(lp=0;lp<nofDigits;lp++){
8c555625 1813 if(pList[lp]) delete [] pList[lp];
1814 }
1815
1816 delete [] pList;
1817
1818 delete m1;
1819 delete m2;
cc80f89e 1820 // delete m3;
8c555625 1821
1822} // end of DigitizeRow
cc80f89e 1823
8c555625 1824//_____________________________________________________________________________
cc80f89e 1825
de61d5d5 1826Float_t AliTPC::GetSignal(TObjArray *p1, Int_t ntr,
1827 AliTPCFastMatrix *m1, AliTPCFastMatrix *m2,Int_t *indexRange)
8c555625 1828{
1829
1830 //---------------------------------------------------------------
1831 // Calculates 2-D signal (pad,time) for a single track,
1832 // returns a pointer to the signal matrix and the track label
1833 // No digitization is performed at this level!!!
1834 //---------------------------------------------------------------
1835
1836 //-----------------------------------------------------------------
1837 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
cc80f89e 1838 // Modified: Marian Ivanov
8c555625 1839 //-----------------------------------------------------------------
1840
de61d5d5 1841 AliTPCFastVector *tv;
1842
1843 tv = (AliTPCFastVector*)p1->At(ntr); // pointer to a track
1844 AliTPCFastVector &v = *tv;
8c555625 1845
1846 Float_t label = v(0);
b584c7dd 1847 Int_t centralPad = (fTPCParam->GetNPads(fCurrentIndex[1],fCurrentIndex[3]-1)-1)/2;
8c555625 1848
8c555625 1849 Int_t nElectrons = (tv->GetNrows()-1)/4;
73042f01 1850 indexRange[0]=9999; // min pad
1851 indexRange[1]=-1; // max pad
1852 indexRange[2]=9999; //min time
1853 indexRange[3]=-1; // max time
8c555625 1854
de61d5d5 1855 AliTPCFastMatrix &signal = *m1;
1856 AliTPCFastMatrix &total = *m2;
8c555625 1857 //
1858 // Loop over all electrons
1859 //
8c555625 1860 for(Int_t nel=0; nel<nElectrons; nel++){
cc80f89e 1861 Int_t idx=nel*4;
1862 Float_t aval = v(idx+4);
1863 Float_t eltoadcfac=aval*fTPCParam->GetTotalNormFac();
1864 Float_t xyz[3]={v(idx+1),v(idx+2),v(idx+3)};
de61d5d5 1865 Int_t n = ((AliTPCParamSR*)fTPCParam)->CalcResponseFast(xyz,fCurrentIndex,fCurrentIndex[3]);
1866
1867 Int_t *index = fTPCParam->GetResBin(0);
1868 Float_t *weight = & (fTPCParam->GetResWeight(0));
1869
1870 if (n>0) for (Int_t i =0; i<n; i++){
73042f01 1871 Int_t pad=index[1]+centralPad; //in digit coordinates central pad has coordinate 0
de61d5d5 1872
1873 if (pad>=0){
cc80f89e 1874 Int_t time=index[2];
de61d5d5 1875 Float_t qweight = *(weight)*eltoadcfac;
cc80f89e 1876
de61d5d5 1877 if (m1!=0) signal.UncheckedAt(pad,time)+=qweight;
1878 total.UncheckedAt(pad,time)+=qweight;
1879 if (indexRange[0]>pad) indexRange[0]=pad;
1880 if (indexRange[1]<pad) indexRange[1]=pad;
1881 if (indexRange[2]>time) indexRange[2]=time;
1882 if (indexRange[3]<time) indexRange[3]=time;
1883
1884 index+=3;
1885 weight++;
1886
cc80f89e 1887 }
1888 }
8c555625 1889 } // end of loop over electrons
cc80f89e 1890
8c555625 1891 return label; // returns track label when finished
1892}
1893
1894//_____________________________________________________________________________
de61d5d5 1895void AliTPC::GetList(Float_t label,Int_t np,AliTPCFastMatrix *m,
1896 Int_t *indexRange, Float_t **pList)
8c555625 1897{
1898 //----------------------------------------------------------------------
1899 // Updates the list of tracks contributing to digits for a given row
1900 //----------------------------------------------------------------------
1901
1902 //-----------------------------------------------------------------
1903 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1904 //-----------------------------------------------------------------
1905
de61d5d5 1906 AliTPCFastMatrix &signal = *m;
8c555625 1907
1908 // lop over nonzero digits
1909
73042f01 1910 for(Int_t it=indexRange[2];it<indexRange[3]+1;it++){
1911 for(Int_t ip=indexRange[0];ip<indexRange[1]+1;ip++){
8c555625 1912
1913
921bf71a 1914 // accept only the contribution larger than 500 electrons (1/2 s_noise)
1915
cc80f89e 1916 if(signal(ip,it)<0.5) continue;
921bf71a 1917
1918
73042f01 1919 Int_t globalIndex = it*np+ip; // globalIndex starts from 0!
8c555625 1920
73042f01 1921 if(!pList[globalIndex]){
8c555625 1922
1923 //
1924 // Create new list (6 elements - 3 signals and 3 labels),
8c555625 1925 //
1926
73042f01 1927 pList[globalIndex] = new Float_t [6];
8c555625 1928
1929 // set list to -1
1930
73042f01 1931 *pList[globalIndex] = -1.;
1932 *(pList[globalIndex]+1) = -1.;
1933 *(pList[globalIndex]+2) = -1.;
1934 *(pList[globalIndex]+3) = -1.;
1935 *(pList[globalIndex]+4) = -1.;
1936 *(pList[globalIndex]+5) = -1.;
8c555625 1937
1938
73042f01 1939 *pList[globalIndex] = label;
1940 *(pList[globalIndex]+3) = signal(ip,it);
8c555625 1941 }
1942 else{
1943
1944 // check the signal magnitude
1945
73042f01 1946 Float_t highest = *(pList[globalIndex]+3);
1947 Float_t middle = *(pList[globalIndex]+4);
1948 Float_t lowest = *(pList[globalIndex]+5);
8c555625 1949
1950 //
1951 // compare the new signal with already existing list
1952 //
1953
1954 if(signal(ip,it)<lowest) continue; // neglect this track
1955
1956 //
1957
1958 if (signal(ip,it)>highest){
73042f01 1959 *(pList[globalIndex]+5) = middle;
1960 *(pList[globalIndex]+4) = highest;
1961 *(pList[globalIndex]+3) = signal(ip,it);
8c555625 1962
73042f01 1963 *(pList[globalIndex]+2) = *(pList[globalIndex]+1);
1964 *(pList[globalIndex]+1) = *pList[globalIndex];
1965 *pList[globalIndex] = label;
8c555625 1966 }
1967 else if (signal(ip,it)>middle){
73042f01 1968 *(pList[globalIndex]+5) = middle;
1969 *(pList[globalIndex]+4) = signal(ip,it);
8c555625 1970
73042f01 1971 *(pList[globalIndex]+2) = *(pList[globalIndex]+1);
1972 *(pList[globalIndex]+1) = label;
8c555625 1973 }
1974 else{
73042f01 1975 *(pList[globalIndex]+5) = signal(ip,it);
1976 *(pList[globalIndex]+2) = label;
8c555625 1977 }
1978 }
1979
1980 } // end of loop over pads
1981 } // end of loop over time bins
1982
1983
1984
8c555625 1985}//end of GetList
1986//___________________________________________________________________
1987void AliTPC::MakeSector(Int_t isec,Int_t nrows,TTree *TH,
1988 Stat_t ntracks,TObjArray **row)
1989{
1990
1991 //-----------------------------------------------------------------
1992 // Prepares the sector digitization, creates the vectors of
1993 // tracks for each row of this sector. The track vector
1994 // contains the track label and the position of electrons.
1995 //-----------------------------------------------------------------
1996
1997 //-----------------------------------------------------------------
1998 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1999 //-----------------------------------------------------------------
2000
cc80f89e 2001 Float_t gasgain = fTPCParam->GetGasGain();
8c555625 2002 Int_t i;
cc80f89e 2003 Float_t xyz[4];
8c555625 2004
2005 AliTPChit *tpcHit; // pointer to a sigle TPC hit
39c8eb58 2006 //MI change
2007 TBranch * branch=0;
792bb11c 2008 if (fHitType>1) branch = TH->GetBranch("TPC2");
39c8eb58 2009 else branch = TH->GetBranch("TPC");
2010
8c555625 2011
2012 //----------------------------------------------
2013 // Create TObjArray-s, one for each row,
de61d5d5 2014 // each TObjArray will store the AliTPCFastVectors
2015 // of electrons, one AliTPCFastVectors per each track.
8c555625 2016 //----------------------------------------------
2017
b584c7dd 2018 Int_t *nofElectrons = new Int_t [nrows+2]; // electron counter for each row
2019 AliTPCFastVector **tracks = new AliTPCFastVector* [nrows+2]; //pointers to the track vectors
de61d5d5 2020
b584c7dd 2021 for(i=0; i<nrows+2; i++){
8c555625 2022 row[i] = new TObjArray;
f74bb6f5 2023 nofElectrons[i]=0;
2024 tracks[i]=0;
8c555625 2025 }
8c555625 2026
37831078 2027
2028
8c555625 2029 //--------------------------------------------------------------------
2030 // Loop over tracks, the "track" contains the full history
2031 //--------------------------------------------------------------------
2032
2033 Int_t previousTrack,currentTrack;
2034 previousTrack = -1; // nothing to store so far!
2035
2036 for(Int_t track=0;track<ntracks;track++){
39c8eb58 2037 Bool_t isInSector=kTRUE;
8c555625 2038 ResetHits();
792bb11c 2039 isInSector = TrackInVolume(isec,track);
39c8eb58 2040 if (!isInSector) continue;
2041 //MI change
2042 branch->GetEntry(track); // get next track
2043
2044 //M.I. changes
8c555625 2045
39c8eb58 2046 tpcHit = (AliTPChit*)FirstHit(-1);
8c555625 2047
2048 //--------------------------------------------------------------
2049 // Loop over hits
2050 //--------------------------------------------------------------
2051
8c555625 2052
39c8eb58 2053 while(tpcHit){
8c555625 2054
2055 Int_t sector=tpcHit->fSector; // sector number
39c8eb58 2056 if(sector != isec){
2057 tpcHit = (AliTPChit*) NextHit();
2058 continue;
2059 }
8c555625 2060
94de3818 2061 currentTrack = tpcHit->Track(); // track number
39c8eb58 2062
2063
8c555625 2064 if(currentTrack != previousTrack){
2065
2066 // store already filled fTrack
2067
b584c7dd 2068 for(i=0;i<nrows+2;i++){
8c555625 2069 if(previousTrack != -1){
73042f01 2070 if(nofElectrons[i]>0){
de61d5d5 2071 AliTPCFastVector &v = *tracks[i];
8c555625 2072 v(0) = previousTrack;
73042f01 2073 tracks[i]->ResizeTo(4*nofElectrons[i]+1); // shrink if necessary
cc80f89e 2074 row[i]->Add(tracks[i]);
8c555625 2075 }
2076 else{
de61d5d5 2077 delete tracks[i]; // delete empty AliTPCFastVector
cc80f89e 2078 tracks[i]=0;
8c555625 2079 }
2080 }
2081
73042f01 2082 nofElectrons[i]=0;
de61d5d5 2083 tracks[i] = new AliTPCFastVector(481); // AliTPCFastVectors for the next fTrack
8c555625 2084
2085 } // end of loop over rows
2086
2087 previousTrack=currentTrack; // update track label
2088 }
2089
73042f01 2090 Int_t qI = (Int_t) (tpcHit->fQ); // energy loss (number of electrons)
8c555625 2091
2092 //---------------------------------------------------
2093 // Calculate the electron attachment probability
2094 //---------------------------------------------------
2095
cc80f89e 2096
94de3818 2097 Float_t time = 1.e6*(fTPCParam->GetZLength()-TMath::Abs(tpcHit->Z()))
cc80f89e 2098 /fTPCParam->GetDriftV();
8c555625 2099 // in microseconds!
73042f01 2100 Float_t attProb = fTPCParam->GetAttCoef()*
8c555625 2101 fTPCParam->GetOxyCont()*time; // fraction!
2102
2103 //-----------------------------------------------
2104 // Loop over electrons
2105 //-----------------------------------------------
cc80f89e 2106 Int_t index[3];
2107 index[1]=isec;
73042f01 2108 for(Int_t nel=0;nel<qI;nel++){
8c555625 2109 // skip if electron lost due to the attachment
73042f01 2110 if((gRandom->Rndm(0)) < attProb) continue; // electron lost!
94de3818 2111 xyz[0]=tpcHit->X();
2112 xyz[1]=tpcHit->Y();
1705494b 2113 xyz[2]=tpcHit->Z();
2114 //
2115 // protection for the nonphysical avalanche size (10**6 maximum)
2116 //
710dacf5 2117 Double_t rn=TMath::Max(gRandom->Rndm(0),1.93e-22);
2118 xyz[3]= (Float_t) (-gasgain*TMath::Log(rn));
cc80f89e 2119 index[0]=1;
2120
b584c7dd 2121 TransportElectron(xyz,index);
73042f01 2122 Int_t rowNumber;
b584c7dd 2123 fTPCParam->GetPadRow(xyz,index);
2124 // row 0 - cross talk from the innermost row
2125 // row fNRow+1 cross talk from the outermost row
2126 rowNumber = index[2]+1;
cc80f89e 2127 //transform position to local digit coordinates
2128 //relative to nearest pad row
b584c7dd 2129 if ((rowNumber<0)||rowNumber>fTPCParam->GetNRow(isec)+1) continue;
2130 Float_t x1,y1;
f03e3423 2131 if (isec <fTPCParam->GetNInnerSector()) {
2132 x1 = xyz[1]*fTPCParam->GetInnerPadPitchWidth();
2133 y1 = fTPCParam->GetYInner(rowNumber);
2134 }
2135 else{
2136 x1=xyz[1]*fTPCParam->GetOuterPadPitchWidth();
2137 y1 = fTPCParam->GetYOuter(rowNumber);
2138 }
e8f678d7 2139 // gain inefficiency at the wires edges - linear
f03e3423 2140 x1=TMath::Abs(x1);
e8f678d7 2141 y1-=1.;
2142 if(x1>y1) xyz[3]*=TMath::Max(1.e-6,(y1-x1+1.));
2143
73042f01 2144 nofElectrons[rowNumber]++;
8c555625 2145 //----------------------------------
2146 // Expand vector if necessary
2147 //----------------------------------
73042f01 2148 if(nofElectrons[rowNumber]>120){
2149 Int_t range = tracks[rowNumber]->GetNrows();
2150 if((nofElectrons[rowNumber])>(range-1)/4){
cc80f89e 2151
73042f01 2152 tracks[rowNumber]->ResizeTo(range+400); // Add 100 electrons
fe4da5cc 2153 }
2154 }
2155
de61d5d5 2156 AliTPCFastVector &v = *tracks[rowNumber];
73042f01 2157 Int_t idx = 4*nofElectrons[rowNumber]-3;
de61d5d5 2158 Real_t * position = &(((AliTPCFastVector&)v).UncheckedAt(idx)); //make code faster
2159 memcpy(position,xyz,4*sizeof(Float_t));
2160
8c555625 2161 } // end of loop over electrons
39c8eb58 2162
2163 tpcHit = (AliTPChit*)NextHit();
8c555625 2164
2165 } // end of loop over hits
2166 } // end of loop over tracks
2167
2168 //
2169 // store remaining track (the last one) if not empty
2170 //
2171
b584c7dd 2172 for(i=0;i<nrows+2;i++){
73042f01 2173 if(nofElectrons[i]>0){
de61d5d5 2174 AliTPCFastVector &v = *tracks[i];
8c555625 2175 v(0) = previousTrack;
73042f01 2176 tracks[i]->ResizeTo(4*nofElectrons[i]+1); // shrink if necessary
cc80f89e 2177 row[i]->Add(tracks[i]);
fe4da5cc 2178 }
2179 else{
cc80f89e 2180 delete tracks[i];
2181 tracks[i]=0;
8c555625 2182 }
2183 }
2184
cc80f89e 2185 delete [] tracks;
73042f01 2186 delete [] nofElectrons;
8c555625 2187
8c555625 2188
cc80f89e 2189} // end of MakeSector
8c555625 2190
fe4da5cc 2191
2192//_____________________________________________________________________________
2193void AliTPC::Init()
2194{
2195 //
2196 // Initialise TPC detector after definition of geometry
2197 //
2198 Int_t i;
2199 //
9e1a0ddb 2200 if(fDebug) {
2201 printf("\n%s: ",ClassName());
2202 for(i=0;i<35;i++) printf("*");
2203 printf(" TPC_INIT ");
2204 for(i=0;i<35;i++) printf("*");
2205 printf("\n%s: ",ClassName());
2206 //
2207 for(i=0;i<80;i++) printf("*");
2208 printf("\n");
2209 }
fe4da5cc 2210}
2211
2212//_____________________________________________________________________________
88cb7938 2213void AliTPC::MakeBranch(Option_t* option)
fe4da5cc 2214{
2215 //
2216 // Create Tree branches for the TPC.
2217 //
88cb7938 2218 if(GetDebug()) Info("MakeBranch","");
fe4da5cc 2219 Int_t buffersize = 4000;
2220 char branchname[10];
2221 sprintf(branchname,"%s",GetName());
88cb7938 2222
2223 const char *h = strstr(option,"H");
fe4da5cc 2224
88cb7938 2225 if ( h && (fHitType<=1) && (fHits == 0x0)) fHits = new TClonesArray("AliTPChit", 176);//skowron 20.06.03
2226
2227 AliDetector::MakeBranch(option);
fe4da5cc 2228
5cf7bbad 2229 const char *d = strstr(option,"D");
88cb7938 2230
2231 if (fDigits && fLoader->TreeD() && d)
2232 {
2233 MakeBranchInTree(gAlice->TreeD(), branchname, &fDigits, buffersize, 0);
2234 }
fe4da5cc 2235
88cb7938 2236 if (fHitType>1) MakeBranch2(option,0); // MI change 14.09.2000
fe4da5cc 2237}
2238
2239//_____________________________________________________________________________
2240void AliTPC::ResetDigits()
2241{
2242 //
2243 // Reset number of digits and the digits array for this detector
fe4da5cc 2244 //
2245 fNdigits = 0;
cc80f89e 2246 if (fDigits) fDigits->Clear();
fe4da5cc 2247}
2248
2249//_____________________________________________________________________________
2250void AliTPC::SetSecAL(Int_t sec)
2251{
8c555625 2252 //---------------------------------------------------
fe4da5cc 2253 // Activate/deactivate selection for lower sectors
8c555625 2254 //---------------------------------------------------
2255
2256 //-----------------------------------------------------------------
2257 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2258 //-----------------------------------------------------------------
fe4da5cc 2259 fSecAL = sec;
2260}
2261
2262//_____________________________________________________________________________
2263void AliTPC::SetSecAU(Int_t sec)
2264{
8c555625 2265 //----------------------------------------------------
fe4da5cc 2266 // Activate/deactivate selection for upper sectors
8c555625 2267 //---------------------------------------------------
2268
2269 //-----------------------------------------------------------------
2270 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2271 //-----------------------------------------------------------------
fe4da5cc 2272 fSecAU = sec;
2273}
2274
2275//_____________________________________________________________________________
2276void AliTPC::SetSecLows(Int_t s1,Int_t s2,Int_t s3,Int_t s4,Int_t s5, Int_t s6)
2277{
8c555625 2278 //----------------------------------------
fe4da5cc 2279 // Select active lower sectors
8c555625 2280 //----------------------------------------
2281
2282 //-----------------------------------------------------------------
2283 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2284 //-----------------------------------------------------------------
2285
fe4da5cc 2286 fSecLows[0] = s1;
2287 fSecLows[1] = s2;
2288 fSecLows[2] = s3;
2289 fSecLows[3] = s4;
2290 fSecLows[4] = s5;
2291 fSecLows[5] = s6;
2292}
2293
2294//_____________________________________________________________________________
2295void AliTPC::SetSecUps(Int_t s1,Int_t s2,Int_t s3,Int_t s4,Int_t s5, Int_t s6,
2296 Int_t s7, Int_t s8 ,Int_t s9 ,Int_t s10,
2297 Int_t s11 , Int_t s12)
2298{
8c555625 2299 //--------------------------------
fe4da5cc 2300 // Select active upper sectors
8c555625 2301 //--------------------------------
2302
2303 //-----------------------------------------------------------------
2304 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2305 //-----------------------------------------------------------------
2306
fe4da5cc 2307 fSecUps[0] = s1;
2308 fSecUps[1] = s2;
2309 fSecUps[2] = s3;
2310 fSecUps[3] = s4;
2311 fSecUps[4] = s5;
2312 fSecUps[5] = s6;
2313 fSecUps[6] = s7;
2314 fSecUps[7] = s8;
2315 fSecUps[8] = s9;
2316 fSecUps[9] = s10;
2317 fSecUps[10] = s11;
2318 fSecUps[11] = s12;
2319}
2320
2321//_____________________________________________________________________________
2322void AliTPC::SetSens(Int_t sens)
2323{
8c555625 2324
2325 //-------------------------------------------------------------
2326 // Activates/deactivates the sensitive strips at the center of
2327 // the pad row -- this is for the space-point resolution calculations
2328 //-------------------------------------------------------------
2329
2330 //-----------------------------------------------------------------
2331 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2332 //-----------------------------------------------------------------
2333
fe4da5cc 2334 fSens = sens;
2335}
2b06d5c3 2336
4b0fdcad 2337
73042f01 2338void AliTPC::SetSide(Float_t side=0.)
4b0fdcad 2339{
73042f01 2340 // choice of the TPC side
2341
4b0fdcad 2342 fSide = side;
2343
2344}
1283eee5 2345//____________________________________________________________________________
2346void AliTPC::SetGasMixt(Int_t nc,Int_t c1,Int_t c2,Int_t c3,Float_t p1,
2347 Float_t p2,Float_t p3)
2348{
fe4da5cc 2349
73042f01 2350 // gax mixture definition
2351
1283eee5 2352 fNoComp = nc;
2353
2354 fMixtComp[0]=c1;
2355 fMixtComp[1]=c2;
2356 fMixtComp[2]=c3;
2357
2358 fMixtProp[0]=p1;
2359 fMixtProp[1]=p2;
2360 fMixtProp[2]=p3;
2361
2362
cc80f89e 2363}
2364//_____________________________________________________________________________
2365
2366void AliTPC::TransportElectron(Float_t *xyz, Int_t *index)
2367{
2368 //
2369 // electron transport taking into account:
2370 // 1. diffusion,
2371 // 2.ExB at the wires
2372 // 3. nonisochronity
2373 //
2374 // xyz and index must be already transformed to system 1
2375 //
2376
2377 fTPCParam->Transform1to2(xyz,index);
2378
2379 //add diffusion
2380 Float_t driftl=xyz[2];
2381 if(driftl<0.01) driftl=0.01;
2382 driftl=TMath::Sqrt(driftl);
73042f01 2383 Float_t sigT = driftl*(fTPCParam->GetDiffT());
2384 Float_t sigL = driftl*(fTPCParam->GetDiffL());
2385 xyz[0]=gRandom->Gaus(xyz[0],sigT);
2386 xyz[1]=gRandom->Gaus(xyz[1],sigT);
2387 xyz[2]=gRandom->Gaus(xyz[2],sigL);
cc80f89e 2388
2389 // ExB
2390
2391 if (fTPCParam->GetMWPCReadout()==kTRUE){
b584c7dd 2392 Float_t dx = fTPCParam->Transform2to2NearestWire(xyz,index);
cc80f89e 2393 xyz[1]+=dx*(fTPCParam->GetOmegaTau());
2394 }
b584c7dd 2395 //add nonisochronity (not implemented yet)
1283eee5 2396}
fe4da5cc 2397
fe4da5cc 2398ClassImp(AliTPCdigit)
2399
2400//_____________________________________________________________________________
2401AliTPCdigit::AliTPCdigit(Int_t *tracks, Int_t *digits):
2402 AliDigit(tracks)
2403{
2404 //
2405 // Creates a TPC digit object
2406 //
2407 fSector = digits[0];
2408 fPadRow = digits[1];
2409 fPad = digits[2];
2410 fTime = digits[3];
2411 fSignal = digits[4];
2412}
2413
2414
2415ClassImp(AliTPChit)
2416
2417//_____________________________________________________________________________
2418AliTPChit::AliTPChit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits):
2419AliHit(shunt,track)
2420{
2421 //
2422 // Creates a TPC hit object
2423 //
2424 fSector = vol[0];
2425 fPadRow = vol[1];
2426 fX = hits[0];
2427 fY = hits[1];
2428 fZ = hits[2];
2429 fQ = hits[3];
2430}
2431
39c8eb58 2432//________________________________________________________________________
792bb11c 2433// Additional code because of the AliTPCTrackHitsV2
39c8eb58 2434
9e1a0ddb 2435void AliTPC::MakeBranch2(Option_t *option,const char *file)
39c8eb58 2436{
2437 //
2438 // Create a new branch in the current Root Tree
2439 // The branch of fHits is automatically split
2440 // MI change 14.09.2000
88cb7938 2441 if(GetDebug()) Info("MakeBranch2","");
792bb11c 2442 if (fHitType<2) return;
39c8eb58 2443 char branchname[10];
2444 sprintf(branchname,"%s2",GetName());
2445 //
2446 // Get the pointer to the header
5cf7bbad 2447 const char *cH = strstr(option,"H");
39c8eb58 2448 //
88cb7938 2449 if (fTrackHits && TreeH() && cH && fHitType&4)
2450 {
2451 if(GetDebug()) Info("MakeBranch2","Making branch for Type 4 Hits");
2452 TreeH()->Branch(branchname,"AliTPCTrackHitsV2",&fTrackHits,fBufferSize,99);
2453 }
792bb11c 2454
88cb7938 2455 if (fTrackHitsOld && TreeH() && cH && fHitType&2)
2456 {
2457 if(GetDebug()) Info("MakeBranch2","Making branch for Type 2 Hits");
792bb11c 2458 AliObjectBranch * branch = new AliObjectBranch(branchname,"AliTPCTrackHits",&fTrackHitsOld,
88cb7938 2459 TreeH(),fBufferSize,99);
2460 TreeH()->GetListOfBranches()->Add(branch);
2461 }
39c8eb58 2462}
2463
2464void AliTPC::SetTreeAddress()
2465{
88cb7938 2466//Sets tree address for hits
2467 if (fHitType<=1)
2468 {
2469 if (fHits == 0x0 ) fHits = new TClonesArray("AliTPChit", 176);//skowron 20.06.03
2470 AliDetector::SetTreeAddress();
2471 }
792bb11c 2472 if (fHitType>1) SetTreeAddress2();
39c8eb58 2473}
2474
2475void AliTPC::SetTreeAddress2()
2476{
2477 //
2478 // Set branch address for the TrackHits Tree
2479 //
88cb7938 2480 if(GetDebug()) Info("SetTreeAddress2","");
2481
39c8eb58 2482 TBranch *branch;
2483 char branchname[20];
2484 sprintf(branchname,"%s2",GetName());
2485 //
2486 // Branch address for hit tree
88cb7938 2487 TTree *treeH = TreeH();
792bb11c 2488 if ((treeH)&&(fHitType&4)) {
39c8eb58 2489 branch = treeH->GetBranch(branchname);
88cb7938 2490 if (branch)
2491 {
2492 branch->SetAddress(&fTrackHits);
f2a509af 2493 if (GetDebug()) Info("SetTreeAddress2","fHitType&4 Setting");
88cb7938 2494 }
f2a509af 2495 else
2496 if (GetDebug()) Info("SetTreeAddress2","fHitType&4 Failed (can not find branch)");
2497
39c8eb58 2498 }
792bb11c 2499 if ((treeH)&&(fHitType&2)) {
2500 branch = treeH->GetBranch(branchname);
88cb7938 2501 if (branch)
2502 {
2503 branch->SetAddress(&fTrackHitsOld);
f2a509af 2504 if (GetDebug()) Info("SetTreeAddress2","fHitType&2 Setting");
88cb7938 2505 }
f2a509af 2506 else if (GetDebug())
2507 Info("SetTreeAddress2","fHitType&2 Failed (can not find branch)");
792bb11c 2508 }
b6e0d3fe 2509 //set address to TREETR
88cb7938 2510
2511 TTree *treeTR = TreeTR();
b6e0d3fe 2512 if (treeTR && fTrackReferences) {
2513 branch = treeTR->GetBranch(GetName());
2514 if (branch) branch->SetAddress(&fTrackReferences);
2515 }
2516
39c8eb58 2517}
2518
2519void AliTPC::FinishPrimary()
2520{
792bb11c 2521 if (fTrackHits &&fHitType&4) fTrackHits->FlushHitStack();
2522 if (fTrackHitsOld && fHitType&2) fTrackHitsOld->FlushHitStack();
39c8eb58 2523}
2524
2525
2526void AliTPC::AddHit2(Int_t track, Int_t *vol, Float_t *hits)
2527{
2528 //
2529 // add hit to the list
39c8eb58 2530 Int_t rtrack;
2531 if (fIshunt) {
2532 int primary = gAlice->GetPrimary(track);
2ab0c725 2533 gAlice->Particle(primary)->SetBit(kKeepBit);
39c8eb58 2534 rtrack=primary;
2535 } else {
2536 rtrack=track;
2537 gAlice->FlagTrack(track);
2538 }
2539 //AliTPChit *hit = (AliTPChit*)fHits->UncheckedAt(fNhits-1);
2540 //if (hit->fTrack!=rtrack)
2541 // cout<<"bad track number\n";
792bb11c 2542 if (fTrackHits && fHitType&4)
39c8eb58 2543 fTrackHits->AddHitKartez(vol[0],rtrack, hits[0],
88cb7938 2544 hits[1],hits[2],(Int_t)hits[3]);
792bb11c 2545 if (fTrackHitsOld &&fHitType&2 )
2546 fTrackHitsOld->AddHitKartez(vol[0],rtrack, hits[0],
88cb7938 2547 hits[1],hits[2],(Int_t)hits[3]);
792bb11c 2548
39c8eb58 2549}
2550
2551void AliTPC::ResetHits()
88cb7938 2552{
39c8eb58 2553 if (fHitType&1) AliDetector::ResetHits();
792bb11c 2554 if (fHitType>1) ResetHits2();
39c8eb58 2555}
2556
2557void AliTPC::ResetHits2()
2558{
2559 //
2560 //reset hits
792bb11c 2561 if (fTrackHits && fHitType&4) fTrackHits->Clear();
2562 if (fTrackHitsOld && fHitType&2) fTrackHitsOld->Clear();
2563
39c8eb58 2564}
2565
2566AliHit* AliTPC::FirstHit(Int_t track)
2567{
792bb11c 2568 if (fHitType>1) return FirstHit2(track);
39c8eb58 2569 return AliDetector::FirstHit(track);
2570}
2571AliHit* AliTPC::NextHit()
2572{
792bb11c 2573 if (fHitType>1) return NextHit2();
2574
39c8eb58 2575 return AliDetector::NextHit();
2576}
2577
2578AliHit* AliTPC::FirstHit2(Int_t track)
2579{
2580 //
2581 // Initialise the hit iterator
2582 // Return the address of the first hit for track
2583 // If track>=0 the track is read from disk
2584 // while if track<0 the first hit of the current
2585 // track is returned
2586 //
2587 if(track>=0) {
2588 gAlice->ResetHits();
88cb7938 2589 TreeH()->GetEvent(track);
39c8eb58 2590 }
2591 //
792bb11c 2592 if (fTrackHits && fHitType&4) {
39c8eb58 2593 fTrackHits->First();
2594 return fTrackHits->GetHit();
2595 }
792bb11c 2596 if (fTrackHitsOld && fHitType&2) {
2597 fTrackHitsOld->First();
2598 return fTrackHitsOld->GetHit();
2599 }
2600
39c8eb58 2601 else return 0;
2602}
2603
2604AliHit* AliTPC::NextHit2()
2605{
2606 //
2607 //Return the next hit for the current track
2608
792bb11c 2609
2610 if (fTrackHitsOld && fHitType&2) {
2611 fTrackHitsOld->Next();
2612 return fTrackHitsOld->GetHit();
2613 }
39c8eb58 2614 if (fTrackHits) {
2615 fTrackHits->Next();
2616 return fTrackHits->GetHit();
2617 }
2618 else
2619 return 0;
2620}
2621
2622void AliTPC::LoadPoints(Int_t)
2623{
2624 //
2625 Int_t a = 0;
f2e8b846 2626 /* if(fHitType==1) return AliDetector::LoadPoints(a);
39c8eb58 2627 LoadPoints2(a);
f2e8b846 2628 */
2629 if(fHitType==1) AliDetector::LoadPoints(a);
2630 else LoadPoints2(a);
2631
39c8eb58 2632 // LoadPoints3(a);
2633
2634}
2635
2636
2637void AliTPC::RemapTrackHitIDs(Int_t *map)
2638{
2639 if (!fTrackHits) return;
39c8eb58 2640
792bb11c 2641 if (fTrackHitsOld && fHitType&2){
2642 AliObjectArray * arr = fTrackHitsOld->fTrackHitsInfo;
2643 for (UInt_t i=0;i<arr->GetSize();i++){
2644 AliTrackHitsInfo * info = (AliTrackHitsInfo *)(arr->At(i));
2645 info->fTrackID = map[info->fTrackID];
2646 }
2647 }
2648 if (fTrackHitsOld && fHitType&4){
2649 TClonesArray * arr = fTrackHits->GetArray();;
2650 for (Int_t i=0;i<arr->GetEntriesFast();i++){
2651 AliTrackHitsParamV2 * info = (AliTrackHitsParamV2 *)(arr->At(i));
2652 info->fTrackID = map[info->fTrackID];
2653 }
2654 }
39c8eb58 2655}
2656
792bb11c 2657Bool_t AliTPC::TrackInVolume(Int_t id,Int_t track)
2658{
2659 //return bool information - is track in given volume
2660 //load only part of the track information
2661 //return true if current track is in volume
2662 //
2663 // return kTRUE;
2664 if (fTrackHitsOld && fHitType&2) {
88cb7938 2665 TBranch * br = TreeH()->GetBranch("fTrackHitsInfo");
792bb11c 2666 br->GetEvent(track);
2667 AliObjectArray * ar = fTrackHitsOld->fTrackHitsInfo;
2668 for (UInt_t j=0;j<ar->GetSize();j++){
2669 if ( ((AliTrackHitsInfo*)ar->At(j))->fVolumeID==id) return kTRUE;
2670 }
2671 }
2672
2673 if (fTrackHits && fHitType&4) {
88cb7938 2674 TBranch * br1 = TreeH()->GetBranch("fVolumes");
2675 TBranch * br2 = TreeH()->GetBranch("fNVolumes");
792bb11c 2676 br2->GetEvent(track);
2677 br1->GetEvent(track);
2678 Int_t *volumes = fTrackHits->GetVolumes();
2679 Int_t nvolumes = fTrackHits->GetNVolumes();
2680 if (!volumes && nvolumes>0) {
2681 printf("Problematic track\t%d\t%d",track,nvolumes);
2682 return kFALSE;
2683 }
2684 for (Int_t j=0;j<nvolumes; j++)
2685 if (volumes[j]==id) return kTRUE;
2686 }
2687
2688 if (fHitType&1) {
88cb7938 2689 TBranch * br = TreeH()->GetBranch("fSector");
792bb11c 2690 br->GetEvent(track);
2691 for (Int_t j=0;j<fHits->GetEntriesFast();j++){
2692 if ( ((AliTPChit*)fHits->At(j))->fSector==id) return kTRUE;
2693 }
2694 }
2695 return kFALSE;
2696
2697}
39c8eb58 2698
2699//_____________________________________________________________________________
2700void AliTPC::LoadPoints2(Int_t)
2701{
2702 //
2703 // Store x, y, z of all hits in memory
2704 //
792bb11c 2705 if (fTrackHits == 0 && fTrackHitsOld==0) return;
39c8eb58 2706 //
792bb11c 2707 Int_t nhits =0;
2708 if (fHitType&4) nhits = fTrackHits->GetEntriesFast();
2709 if (fHitType&2) nhits = fTrackHitsOld->GetEntriesFast();
2710
39c8eb58 2711 if (nhits == 0) return;
2712 Int_t tracks = gAlice->GetNtrack();
2713 if (fPoints == 0) fPoints = new TObjArray(tracks);
2714 AliHit *ahit;
2715 //
2716 Int_t *ntrk=new Int_t[tracks];
2717 Int_t *limi=new Int_t[tracks];
2718 Float_t **coor=new Float_t*[tracks];
2719 for(Int_t i=0;i<tracks;i++) {
2720 ntrk[i]=0;
2721 coor[i]=0;
2722 limi[i]=0;
2723 }
2724 //
2725 AliPoints *points = 0;
2726 Float_t *fp=0;
2727 Int_t trk;
2728 Int_t chunk=nhits/4+1;
2729 //
2730 // Loop over all the hits and store their position
2731 //
2732 ahit = FirstHit2(-1);
39c8eb58 2733 while (ahit){
39c8eb58 2734 trk=ahit->GetTrack();
2735 if(ntrk[trk]==limi[trk]) {
2736 //
2737 // Initialise a new track
2738 fp=new Float_t[3*(limi[trk]+chunk)];
2739 if(coor[trk]) {
2740 memcpy(fp,coor[trk],sizeof(Float_t)*3*limi[trk]);
2741 delete [] coor[trk];
2742 }
2743 limi[trk]+=chunk;
2744 coor[trk] = fp;
2745 } else {
2746 fp = coor[trk];
2747 }
2748 fp[3*ntrk[trk] ] = ahit->X();
2749 fp[3*ntrk[trk]+1] = ahit->Y();
2750 fp[3*ntrk[trk]+2] = ahit->Z();
2751 ntrk[trk]++;
2752 ahit = NextHit2();
2753 }
792bb11c 2754
2755
2756
39c8eb58 2757 //
2758 for(trk=0; trk<tracks; ++trk) {
2759 if(ntrk[trk]) {
2760 points = new AliPoints();
2761 points->SetMarkerColor(GetMarkerColor());
2762 points->SetMarkerSize(GetMarkerSize());
2763 points->SetDetector(this);
2764 points->SetParticle(trk);
2765 points->SetPolyMarker(ntrk[trk],coor[trk],GetMarkerStyle());
2766 fPoints->AddAt(points,trk);
2767 delete [] coor[trk];
2768 coor[trk]=0;
2769 }
2770 }
2771 delete [] coor;
2772 delete [] ntrk;
2773 delete [] limi;
2774}
2775
2776
2777//_____________________________________________________________________________
2778void AliTPC::LoadPoints3(Int_t)
2779{
2780 //
2781 // Store x, y, z of all hits in memory
2782 // - only intersection point with pad row
2783 if (fTrackHits == 0) return;
2784 //
2785 Int_t nhits = fTrackHits->GetEntriesFast();
2786 if (nhits == 0) return;
2787 Int_t tracks = gAlice->GetNtrack();
2788 if (fPoints == 0) fPoints = new TObjArray(2*tracks);
2789 fPoints->Expand(2*tracks);
2790 AliHit *ahit;
2791 //
2792 Int_t *ntrk=new Int_t[tracks];
2793 Int_t *limi=new Int_t[tracks];
2794 Float_t **coor=new Float_t*[tracks];
2795 for(Int_t i=0;i<tracks;i++) {
2796 ntrk[i]=0;
2797 coor[i]=0;
2798 limi[i]=0;
2799 }
2800 //
2801 AliPoints *points = 0;
2802 Float_t *fp=0;
2803 Int_t trk;
2804 Int_t chunk=nhits/4+1;
2805 //
2806 // Loop over all the hits and store their position
2807 //
2808 ahit = FirstHit2(-1);
2809 //for (Int_t hit=0;hit<nhits;hit++) {
2810
2811 Int_t lastrow = -1;
2812 while (ahit){
2813 // ahit = (AliHit*)fHits->UncheckedAt(hit);
2814 trk=ahit->GetTrack();
2815 Float_t x[3]={ahit->X(),ahit->Y(),ahit->Z()};
2816 Int_t index[3]={1,((AliTPChit*)ahit)->fSector,0};
2817 Int_t currentrow = fTPCParam->GetPadRow(x,index) ;
2818 if (currentrow!=lastrow){
2819 lastrow = currentrow;
2820 //later calculate intersection point
2821 if(ntrk[trk]==limi[trk]) {
2822 //
2823 // Initialise a new track
2824 fp=new Float_t[3*(limi[trk]+chunk)];
2825 if(coor[trk]) {
2826 memcpy(fp,coor[trk],sizeof(Float_t)*3*limi[trk]);
2827 delete [] coor[trk];
2828 }
2829 limi[trk]+=chunk;
2830 coor[trk] = fp;
2831 } else {
2832 fp = coor[trk];
2833 }
2834 fp[3*ntrk[trk] ] = ahit->X();
2835 fp[3*ntrk[trk]+1] = ahit->Y();
2836 fp[3*ntrk[trk]+2] = ahit->Z();
2837 ntrk[trk]++;
2838 }
2839 ahit = NextHit2();
2840 }
2841
2842 //
2843 for(trk=0; trk<tracks; ++trk) {
2844 if(ntrk[trk]) {
2845 points = new AliPoints();
2846 points->SetMarkerColor(GetMarkerColor()+1);
2847 points->SetMarkerStyle(5);
2848 points->SetMarkerSize(0.2);
2849 points->SetDetector(this);
2850 points->SetParticle(trk);
2851 // points->SetPolyMarker(ntrk[trk],coor[trk],GetMarkerStyle()20);
2852 points->SetPolyMarker(ntrk[trk],coor[trk],30);
2853 fPoints->AddAt(points,tracks+trk);
2854 delete [] coor[trk];
2855 coor[trk]=0;
2856 }
2857 }
2858 delete [] coor;
2859 delete [] ntrk;
2860 delete [] limi;
2861}
2862
2863
2864
2865void AliTPC::FindTrackHitsIntersection(TClonesArray * arr)
2866{
2867
2868 //
2869 //fill clones array with intersection of current point with the
2870 //middle of the row
2871 Int_t sector;
2872 Int_t ipart;
2873
2874 const Int_t kcmaxhits=30000;
de61d5d5 2875 AliTPCFastVector * xxxx = new AliTPCFastVector(kcmaxhits*4);
2876 AliTPCFastVector & xxx = *xxxx;
39c8eb58 2877 Int_t maxhits = kcmaxhits;
2878
2879 //
2880 AliTPChit * tpcHit=0;
2881 tpcHit = (AliTPChit*)FirstHit2(-1);
2882 Int_t currentIndex=0;
2883 Int_t lastrow=-1; //last writen row
2884
2885 while (tpcHit){
2886 if (tpcHit==0) continue;
2887 sector=tpcHit->fSector; // sector number
2888 ipart=tpcHit->Track();
2889
2890 //find row number
2891
2892 Float_t x[3]={tpcHit->X(),tpcHit->Y(),tpcHit->Z()};
2893 Int_t index[3]={1,sector,0};
2894 Int_t currentrow = fTPCParam->GetPadRow(x,index) ;
2895 if (currentrow<0) continue;
2896 if (lastrow<0) lastrow=currentrow;
2897 if (currentrow==lastrow){
2898 if ( currentIndex>=maxhits){
2899 maxhits+=kcmaxhits;
2900 xxx.ResizeTo(4*maxhits);
2901 }
2902 xxx(currentIndex*4)=x[0];
2903 xxx(currentIndex*4+1)=x[1];
2904 xxx(currentIndex*4+2)=x[2];
2905 xxx(currentIndex*4+3)=tpcHit->fQ;
2906 currentIndex++;
2907 }
2908 else
2909 if (currentIndex>2){
2910 Float_t sumx=0;
2911 Float_t sumx2=0;
2912 Float_t sumx3=0;
2913 Float_t sumx4=0;
2914 Float_t sumy=0;
2915 Float_t sumxy=0;
2916 Float_t sumx2y=0;
2917 Float_t sumz=0;
2918 Float_t sumxz=0;
2919 Float_t sumx2z=0;
2920 Float_t sumq=0;
2921 for (Int_t index=0;index<currentIndex;index++){
2922 Float_t x,x2,x3,x4;
2923 x=x2=x3=x4=xxx(index*4);
2924 x2*=x;
2925 x3*=x2;
2926 x4*=x3;
2927 sumx+=x;
2928 sumx2+=x2;
2929 sumx3+=x3;
2930 sumx4+=x4;
2931 sumy+=xxx(index*4+1);
2932 sumxy+=xxx(index*4+1)*x;
2933 sumx2y+=xxx(index*4+1)*x2;
2934 sumz+=xxx(index*4+2);
2935 sumxz+=xxx(index*4+2)*x;
2936 sumx2z+=xxx(index*4+2)*x2;
2937 sumq+=xxx(index*4+3);
2938 }
2939 Float_t centralPad = (fTPCParam->GetNPads(sector,lastrow)-1)/2;
2940 Float_t det=currentIndex*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumx*sumx4-sumx2*sumx3)+
2941 sumx2*(sumx*sumx3-sumx2*sumx2);
2942
2943 Float_t detay=sumy*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumxy*sumx4-sumx2y*sumx3)+
2944 sumx2*(sumxy*sumx3-sumx2y*sumx2);
2945 Float_t detaz=sumz*(sumx2*sumx4-sumx3*sumx3)-sumx*(sumxz*sumx4-sumx2z*sumx3)+
2946 sumx2*(sumxz*sumx3-sumx2z*sumx2);
2947
2948 Float_t detby=currentIndex*(sumxy*sumx4-sumx2y*sumx3)-sumy*(sumx*sumx4-sumx2*sumx3)+
2949 sumx2*(sumx*sumx2y-sumx2*sumxy);
2950 Float_t detbz=currentIndex*(sumxz*sumx4-sumx2z*sumx3)-sumz*(sumx*sumx4-sumx2*sumx3)+
2951 sumx2*(sumx*sumx2z-sumx2*sumxz);
2952
2953 Float_t y=detay/det+centralPad;
2954 Float_t z=detaz/det;
2955 Float_t by=detby/det; //y angle
2956 Float_t bz=detbz/det; //z angle
2957 sumy/=Float_t(currentIndex);
2958 sumz/=Float_t(currentIndex);
2959
2960 AliComplexCluster cl;
2961 cl.fX=z;
2962 cl.fY=y;
2963 cl.fQ=sumq;
2964 cl.fSigmaX2=bz;
2965 cl.fSigmaY2=by;
2966 cl.fTracks[0]=ipart;
2967
2968 AliTPCClustersRow * row = (fClustersArray->GetRow(sector,lastrow));
2969 if (row!=0) row->InsertCluster(&cl);
2970 currentIndex=0;
2971 lastrow=currentrow;
2972 } //end of calculating cluster for given row
2973
2974 } // end of loop over hits
2975 xxxx->Delete();
39c8eb58 2976
2977}
afc42102 2978//_______________________________________________________________________________
a62d28a2 2979void AliTPC::Digits2Reco(Int_t firstevent,Int_t lastevent)
afc42102 2980{
a62d28a2 2981 // produces rec points from digits and writes them on the root file
2982 // AliTPCclusters.root
2983
2984 TDirectory *cwd = gDirectory;
2985
2986
7a09f434 2987 AliTPCParamSR *dig=(AliTPCParamSR *)gDirectory->Get("75x40_100x60");
2988 if(dig){
2989 printf("You are running 2 pad-length geom hits with 3 pad-length geom digits\n");
2990 delete dig;
2991 dig = new AliTPCParamSR();
2992 }
2993 else
2994 {
2995 dig=(AliTPCParamSR *)gDirectory->Get("75x40_100x60_150x60");
2996 }
2997 if(!dig){
2998 printf("No TPC parameters found\n");
2999 exit(3);
3000 }
3001
a62d28a2 3002 SetParam(dig);
3003 cout<<"AliTPC::Digits2Reco: TPC parameteres have been set"<<endl;
3004 TFile *out;
3005 if(!gSystem->Getenv("CONFIG_FILE")){
3006 out=TFile::Open("AliTPCclusters.root","recreate");
3007 }
3008 else {
3009 const char *tmp1;
3010 const char *tmp2;
3011 char tmp3[80];
3012 tmp1=gSystem->Getenv("CONFIG_FILE_PREFIX");
3013 tmp2=gSystem->Getenv("CONFIG_OUTDIR");
3014 sprintf(tmp3,"%s%s/AliTPCclusters.root",tmp1,tmp2);
3015 out=TFile::Open(tmp3,"recreate");
3016 }
3017
3018 TStopwatch timer;
3019 cout<<"AliTPC::Digits2Reco - determination of rec points begins"<<endl;
3020 timer.Start();
3021 cwd->cd();
3022 for(Int_t iev=firstevent;iev<lastevent+1;iev++){
3023
3024 printf("Processing event %d\n",iev);
88cb7938 3025 Digits2Clusters(iev);
a62d28a2 3026 }
3027 cout<<"AliTPC::Digits2Reco - determination of rec points ended"<<endl;
3028 timer.Stop();
3029 timer.Print();
3030 out->Close();
3031 cwd->cd();
3032
3033
afc42102 3034}
42157e55 3035
88cb7938 3036AliLoader* AliTPC::MakeLoader(const char* topfoldername)
3037{
f2a509af 3038//Makes TPC loader
88cb7938 3039 fLoader = new AliTPCLoader(GetName(),topfoldername);
88cb7938 3040 return fLoader;
3041}
3042
42157e55 3043////////////////////////////////////////////////////////////////////////
3044AliTPCParam* AliTPC::LoadTPCParam(TFile *file) {
3045//
3046// load TPC paarmeters from a given file or create new if the object
3047// is not found there
88cb7938 3048// 12/05/2003 This method should be moved to the AliTPCLoader
3049// and one has to decide where to store the TPC parameters
3050// M.Kowalski
42157e55 3051 char paramName[50];
3052 sprintf(paramName,"75x40_100x60_150x60");
3053 AliTPCParam *paramTPC=(AliTPCParam*)file->Get(paramName);
3054 if (paramTPC) {
3055 cout<<"TPC parameters "<<paramName<<" found."<<endl;
3056 } else {
3057 cerr<<"TPC parameters not found. Create new (they may be incorrect)."
3058 <<endl;
3059 paramTPC = new AliTPCParamSR;
3060 }
3061 return paramTPC;
3062
3063// the older version of parameters can be accessed with this code.
3064// In some cases, we have old parameters saved in the file but
3065// digits were created with new parameters, it can be distinguish
3066// by the name of TPC TreeD. The code here is just for the case
3067// we would need to compare with old data, uncomment it if needed.
3068//
3069// char paramName[50];
3070// sprintf(paramName,"75x40_100x60");
3071// AliTPCParam *paramTPC=(AliTPCParam*)in->Get(paramName);
3072// if (paramTPC) {
3073// cout<<"TPC parameters "<<paramName<<" found."<<endl;
3074// } else {
3075// sprintf(paramName,"75x40_100x60_150x60");
3076// paramTPC=(AliTPCParam*)in->Get(paramName);
3077// if (paramTPC) {
3078// cout<<"TPC parameters "<<paramName<<" found."<<endl;
3079// } else {
3080// cerr<<"TPC parameters not found. Create new (they may be incorrect)."
3081// <<endl;
3082// paramTPC = new AliTPCParamSR;
3083// }
3084// }
3085// return paramTPC;
3086
3087}
3088