1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 ///////////////////////////////////////////////////////////////////////////////
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 //
27 <img src="picts/AliTPCClass.gif">
32 ///////////////////////////////////////////////////////////////////////////////
36 #include <Riostream.h>
41 #include <TGeoGlobalMagField.h>
42 #include <TInterpreter.h>
45 #include <TObjectTable.h>
46 #include <TParticle.h>
49 #include <TStopwatch.h>
54 #include <TVirtualMC.h>
55 #include <TParameter.h>
57 #include "AliDigits.h"
60 #include "AliRunLoader.h"
61 #include "AliSimDigits.h"
64 #include "AliTPCDigitsArray.h"
65 #include "AliTPCLoader.h"
66 #include "AliTPCPRF2D.h"
67 #include "AliTPCParamSR.h"
68 #include "AliTPCRF1D.h"
69 #include "AliTPCTrackHitsV2.h"
70 #include "AliTrackReference.h"
73 #include "AliTPCDigitizer.h"
74 #include "AliTPCBuffer.h"
75 #include "AliTPCDDLRawData.h"
77 #include "AliTPCcalibDB.h"
78 #include "AliTPCCalPad.h"
79 #include "AliTPCCalROC.h"
80 #include "AliTPCExB.h"
81 #include "AliRawReader.h"
82 #include "AliTPCRawStreamV3.h"
83 #include "TTreeStream.h"
86 //_____________________________________________________________________________
87 AliTPC::AliTPC():AliDetector(),
97 fPrimaryIonisation(0),
108 // Default constructor
111 for(Int_t i=0;i<4;i++) fCurrentIndex[i]=0;
113 // fTrackHitsOld = 0;
114 #if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,1)
115 fHitType = 4; // ROOT containers
117 fHitType = 2; //default CONTAINERS - based on ROOT structure
121 //_____________________________________________________________________________
122 AliTPC::AliTPC(const char *name, const char *title)
123 : AliDetector(name,title),
133 fPrimaryIonisation(0),
144 // Standard constructor
148 // Initialise arrays of hits and digits
149 fHits = new TClonesArray("AliTPChit", 176);
150 gAlice->GetMCApp()->AddHitList(fHits);
152 fTrackHits = new AliTPCTrackHitsV2;
153 fTrackHits->SetHitPrecision(0.002);
154 fTrackHits->SetStepPrecision(0.003);
155 fTrackHits->SetMaxDistance(100);
157 //fTrackHitsOld = new AliTPCTrackHits; //MI - 13.09.2000
158 //fTrackHitsOld->SetHitPrecision(0.002);
159 //fTrackHitsOld->SetStepPrecision(0.003);
160 //fTrackHitsOld->SetMaxDistance(100);
163 #if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,1)
164 fHitType = 4; // ROOT containers
169 for(Int_t i=0;i<4;i++) fCurrentIndex[i]=0;
174 // Initialise color attributes
175 //PH SetMarkerColor(kYellow);
178 // Set TPC parameters
182 if (!strcmp(title,"Default")) {
183 //fTPCParam = new AliTPCParamSR;
184 fTPCParam = AliTPCcalibDB::Instance()->GetParameters();
186 AliWarning("In Config.C you must set non-default parameters.");
191 void AliTPC::CreateDebugStremer(){
193 // Create Debug streamer to check simulation
195 fDebugStreamer = new TTreeSRedirector("TPCSimdebug.root");
197 //_____________________________________________________________________________
208 delete fTrackHits; //MI 15.09.2000
209 // delete fTrackHitsOld; //MI 10.12.2001
212 delete [] fNoiseTable;
213 delete [] fActiveSectors;
214 if (fDebugStreamer) delete fDebugStreamer;
217 //_____________________________________________________________________________
218 void AliTPC::AddHit(Int_t track, Int_t *vol, Float_t *hits)
221 // Add a hit to the list
224 TClonesArray &lhits = *fHits;
225 new(lhits[fNhits++]) AliTPChit(fIshunt,track,vol,hits);
228 AddHit2(track,vol,hits);
231 //_____________________________________________________________________________
232 void AliTPC::CreateMaterials()
234 //-----------------------------------------------
235 // Create Materials for for TPC simulations
236 //-----------------------------------------------
238 //-----------------------------------------------------------------
239 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
240 //-----------------------------------------------------------------
242 Int_t iSXFLD=((AliMagF*)TGeoGlobalMagField::Instance()->GetField())->Integ();
243 Float_t sXMGMX=((AliMagF*)TGeoGlobalMagField::Instance()->GetField())->Max();
245 Float_t amat[5]; // atomic numbers
246 Float_t zmat[5]; // z
247 Float_t wmat[5]; // proportions
253 //***************** Gases *************************
256 //--------------------------------------------------------------
257 // gases - air and CO2
258 //--------------------------------------------------------------
274 AliMixture(10,"CO2",amat,zmat,density,2,wmat);
289 AliMixture(11,"Air",amat,zmat,density,2,wmat);
291 //----------------------------------------------------------------
293 //----------------------------------------------------------------
296 // Drift gases 1 - nonsensitive, 2 - sensitive
297 // Ne-CO2 (90-10) (volume) values at 20deg and 1 atm.
298 // rho(Ne) = 0.839 g/cm^3, rho(CO2) = 1.842 g/cm^3
311 //wmat[0]=0.756992632;
313 //wmat[1]=0.056235789;
315 //wmat[2]=0.128469474;
317 // wmat[3]=0.058395789;
321 AliMixture(12,"Ne-CO2-1",amat,zmat,density,3,wmat);
322 AliMixture(13,"Ne-CO2-2",amat,zmat,density,3,wmat);
323 AliMixture(35,"Ne-CO2-3",amat,zmat,density,3,wmat);
324 //----------------------------------------------------------------------
326 //----------------------------------------------------------------------
348 AliMixture(14,"Kevlar",amat,zmat,density,-4,wmat);
369 AliMixture(15,"NOMEX",amat,zmat,density,-4,wmat);
387 AliMixture(16,"Makrolon",amat,zmat,density,-3,wmat);
405 AliMixture(17, "Tedlar",amat,zmat,density,-3,wmat);
423 AliMixture(18, "Mylar",amat,zmat,density,-3,wmat);
424 // material for "prepregs"
425 // Epoxy - C14 H20 O3
428 // prepreg1 60% C-fiber, 40% epoxy (vol)
443 AliMixture(19, "Prepreg1",amat,zmat,density,3,wmat);
445 //prepreg2 60% glass-fiber, 40% epoxy
464 AliMixture(20, "Prepreg2",amat,zmat,density,4,wmat);
466 //prepreg3 50% glass-fiber, 50% epoxy
485 AliMixture(21, "Prepreg3",amat,zmat,density,4,wmat);
487 // G10 60% SiO2 40% epoxy
506 AliMixture(22, "G10",amat,zmat,density,4,wmat);
515 AliMaterial(23,"Al",amat[0],zmat[0],density,999.,999.);
517 // Si (for electronics
524 AliMaterial(24,"Si",amat[0],zmat[0],density,999.,999.);
533 AliMaterial(25,"Cu",amat[0],zmat[0],density,999.,999.);
551 AliMixture(33,"Brass",amat,zmat,density,2,wmat);
553 // Epoxy - C14 H20 O3
569 AliMixture(26,"Epoxy",amat,zmat,density,-3,wmat);
571 // epoxy film - 90% epoxy, 10% glass fiber
591 AliMixture(34, "Epoxy-film",amat,zmat,density,4,wmat);
609 AliMixture(27,"Plexiglas",amat,zmat,density,-3,wmat);
617 AliMaterial(28,"C",amat[0],zmat[0],density,999.,999.);
619 // Fe (steel for the inner heat screen)
627 AliMaterial(29,"Fe",amat[0],zmat[0],density,999.,999.);
629 // Peek - (C6H4-O-OC6H4-O-C6H4-CO)n
644 AliMixture(30,"Peek",amat,zmat,density,-3,wmat);
659 AliMixture(31,"Alumina",amat,zmat,density,-2,wmat);
678 AliMixture(32,"Water",amat,zmat,density,-2,wmat);
681 //----------------------------------------------------------
682 // tracking media for gases
683 //----------------------------------------------------------
685 AliMedium(0, "Air", 11, 0, iSXFLD, sXMGMX, 10., 999., .1, .01, .1);
686 AliMedium(1, "Ne-CO2-1", 12, 0, iSXFLD, sXMGMX, 10., 999.,.1,.001, .001);
687 AliMedium(2, "Ne-CO2-2", 13, 1, iSXFLD, sXMGMX, 10., 999.,.1,.001, .001);
688 AliMedium(3,"CO2",10,0, iSXFLD, sXMGMX, 10., 999.,.1, .001, .001);
689 AliMedium(20, "Ne-CO2-3", 35, 1, iSXFLD, sXMGMX, 10., 999.,.1,.001, .001);
690 //-----------------------------------------------------------
691 // tracking media for solids
692 //-----------------------------------------------------------
694 AliMedium(4,"Al",23,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
695 AliMedium(5,"Kevlar",14,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
696 AliMedium(6,"Nomex",15,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
697 AliMedium(7,"Makrolon",16,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
698 AliMedium(8,"Mylar",18,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
699 AliMedium(9,"Tedlar",17,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
701 AliMedium(10,"Prepreg1",19,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
702 AliMedium(11,"Prepreg2",20,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
703 AliMedium(12,"Prepreg3",21,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
704 AliMedium(13,"Epoxy",26,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
706 AliMedium(14,"Cu",25,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
707 AliMedium(15,"Si",24,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
708 AliMedium(16,"G10",22,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
709 AliMedium(17,"Plexiglas",27,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
710 AliMedium(18,"Steel",29,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
711 AliMedium(19,"Peek",30,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
712 AliMedium(21,"Alumina",31,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
713 AliMedium(22,"Water",32,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
714 AliMedium(23,"Brass",33,0, iSXFLD, sXMGMX, 10., 999., .1, .001, .001);
715 AliMedium(24,"Epoxyfm",34,0, iSXFLD, sXMGMX, 10., 999., .1, .0005, .001);
718 void AliTPC::GenerNoise(Int_t tablesize)
721 //Generate table with noise
728 if (fNoiseTable) delete[] fNoiseTable;
729 fNoiseTable = new Float_t[tablesize];
730 fNoiseDepth = tablesize;
731 fCurrentNoise =0; //!index of the noise in the noise table
733 Float_t norm = fTPCParam->GetNoise()*fTPCParam->GetNoiseNormFac();
734 for (Int_t i=0;i<tablesize;i++) fNoiseTable[i]= gRandom->Gaus(0,norm);
737 Float_t AliTPC::GetNoise()
739 // get noise from table
740 // if ((fCurrentNoise%10)==0)
741 // fCurrentNoise= gRandom->Rndm()*fNoiseDepth;
742 if (fCurrentNoise>=fNoiseDepth) fCurrentNoise=0;
743 return fNoiseTable[fCurrentNoise++];
744 //gRandom->Gaus(0, fTPCParam->GetNoise()*fTPCParam->GetNoiseNormFac());
748 Bool_t AliTPC::IsSectorActive(Int_t sec) const
751 // check if the sector is active
752 if (!fActiveSectors) return kTRUE;
753 else return fActiveSectors[sec];
756 void AliTPC::SetActiveSectors(Int_t * sectors, Int_t n)
758 // activate interesting sectors
759 SetTreeAddress();//just for security
760 if (!fActiveSectors) fActiveSectors = new Bool_t[fTPCParam->GetNSector()];
761 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kFALSE;
762 for (Int_t i=0;i<n;i++)
763 if ((sectors[i]>=0) && sectors[i]<fTPCParam->GetNSector()) fActiveSectors[sectors[i]]=kTRUE;
767 void AliTPC::SetActiveSectors(Int_t flag)
770 // activate sectors which were hitted by tracks
772 SetTreeAddress();//just for security
773 if (fHitType==0) return; // if Clones hit - not short volume ID information
774 if (!fActiveSectors) fActiveSectors = new Bool_t[fTPCParam->GetNSector()];
776 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kTRUE;
779 for (Int_t i=0;i<fTPCParam->GetNSector();i++) fActiveSectors[i]=kFALSE;
780 //TBranch * branch=0;
781 if (fLoader->TreeH() == 0x0)
783 AliFatal("Can not find TreeH in folder");
786 //if (fHitType>1) branch = fLoader->TreeH()->GetBranch("TPC2");
787 if (fHitType>1) fLoader->TreeH()->GetBranch("TPC2");
788 //else branch = fLoader->TreeH()->GetBranch("TPC");
789 else fLoader->TreeH()->GetBranch("TPC");
790 Stat_t ntracks = fLoader->TreeH()->GetEntries();
791 // loop over all hits
792 AliDebug(1,Form("Got %d tracks", (Int_t) ntracks));
794 for(Int_t track=0;track<ntracks;track++) {
797 if (fTrackHits && fHitType&4) {
798 TBranch * br1 = fLoader->TreeH()->GetBranch("fVolumes");
799 TBranch * br2 = fLoader->TreeH()->GetBranch("fNVolumes");
800 br1->GetEvent(track);
801 br2->GetEvent(track);
802 Int_t *volumes = fTrackHits->GetVolumes();
803 for (Int_t j=0;j<fTrackHits->GetNVolumes(); j++) {
804 if (volumes[j]>-1 && volumes[j]<fTPCParam->GetNSector()) {
805 fActiveSectors[volumes[j]]=kTRUE;
808 AliError(Form("Volume %d -> sector number %d is outside (0..%d)",
811 fTPCParam->GetNSector()));
817 // if (fTrackHitsOld && fHitType&2) {
818 // TBranch * br = fLoader->TreeH()->GetBranch("fTrackHitsInfo");
819 // br->GetEvent(track);
820 // AliObjectArray * ar = fTrackHitsOld->fTrackHitsInfo;
821 // for (UInt_t j=0;j<ar->GetSize();j++){
822 // fActiveSectors[((AliTrackHitsInfo*)ar->At(j))->fVolumeID] =kTRUE;
831 //_____________________________________________________________________________
832 void AliTPC::Digits2Raw()
834 // convert digits of the current event to raw data
836 static const Int_t kThreshold = 0;
838 fLoader->LoadDigits();
839 TTree* digits = fLoader->TreeD();
841 AliError("No digits tree");
847 AliSimDigits* digrow = &digarr;
848 digits->GetBranch("Segment")->SetAddress(&digrow);
850 const char* fileName = "AliTPCDDL.dat";
851 AliTPCBuffer* buffer = new AliTPCBuffer(fileName);
855 // 2: txt files with digits
856 //BE CAREFUL, verbose level 2 MUST be used only for debugging and
857 //it is highly suggested to use this mode only for debugging digits files
858 //reasonably small, because otherwise the size of the txt files can reach
859 //quickly several MB wasting time and disk space.
860 buffer->SetVerbose(0);
862 Int_t nEntries = Int_t(digits->GetEntries());
863 Int_t previousSector = -1;
865 for (Int_t i = 0; i < nEntries; i++) {
868 fTPCParam->AdjustSectorRow(digarr.GetID(), sector, row);
869 if(previousSector != sector) {
871 previousSector = sector;
874 if (sector < 36) { //inner sector [0;35]
876 //the whole row is written into the output file
877 buffer->WriteRowBinary(kThreshold, digrow, 0, 0, 0,
878 sector, subSector, row);
880 //only the pads in the range [37;48] are written into the output file
881 buffer->WriteRowBinary(kThreshold, digrow, 37, 48, 1,
882 sector, subSector, row);
884 //only the pads outside the range [37;48] are written into the output file
885 buffer->WriteRowBinary(kThreshold, digrow, 37, 48, 2,
886 sector, subSector, row);
889 } else { //outer sector [36;71]
890 if (row == 54) subSector = 2;
891 if ((row != 27) && (row != 76)) {
892 buffer->WriteRowBinary(kThreshold, digrow, 0, 0, 0,
893 sector, subSector, row);
894 } else if (row == 27) {
895 //only the pads outside the range [43;46] are written into the output file
896 buffer->WriteRowBinary(kThreshold, digrow, 43, 46, 2,
897 sector, subSector, row);
899 //only the pads in the range [43;46] are written into the output file
900 buffer->WriteRowBinary(kThreshold, digrow, 43, 46, 1,
901 sector, subSector, row);
902 } else if (row == 76) {
903 //only the pads outside the range [33;88] are written into the output file
904 buffer->WriteRowBinary(kThreshold, digrow, 33, 88, 2,
905 sector, subSector, row);
907 //only the pads in the range [33;88] are written into the output file
908 buffer->WriteRowBinary(kThreshold, digrow, 33, 88, 1,
909 sector, subSector, row);
915 fLoader->UnloadDigits();
917 AliTPCDDLRawData rawWriter;
918 rawWriter.SetVerbose(0);
920 rawWriter.RawData(fileName);
921 gSystem->Unlink(fileName);
926 //_____________________________________________________________________________
927 Bool_t AliTPC::Raw2SDigits(AliRawReader* rawReader){
928 // Converts the TPC raw data into summable digits
929 // The method is used for merging simulated and
931 if (fLoader->TreeS() == 0x0 ) {
932 fLoader->MakeTree("S");
935 if(fDefaults == 0) SetDefaults(); // check if the parameters are set
937 //setup TPCDigitsArray
938 if(GetDigitsArray()) delete GetDigitsArray();
940 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
941 arr->SetClass("AliSimDigits");
942 arr->Setup(fTPCParam);
943 arr->MakeTree(fLoader->TreeS());
947 // set zero suppression to "0"
948 fTPCParam->SetZeroSup(0);
951 const Int_t kmaxTime = fTPCParam->GetMaxTBin();
952 const Int_t kNIS = fTPCParam->GetNInnerSector();
953 const Int_t kNOS = fTPCParam->GetNOuterSector();
954 const Int_t kNS = kNIS + kNOS;
957 AliTPCROC * roc = AliTPCROC::Instance();
958 Int_t nRowsMax = roc->GetNRows(roc->GetNSector()-1);
959 Int_t nPadsMax = roc->GetNPads(roc->GetNSector()-1,nRowsMax-1);
960 Short_t** allBins = new Short_t*[nRowsMax];
961 for (Int_t iRow = 0; iRow < nRowsMax; iRow++) {
962 Int_t maxBin = kmaxTime*nPadsMax;
963 allBins[iRow] = new Short_t[maxBin];
964 memset(allBins[iRow],0,sizeof(Short_t)*maxBin);
967 for(Int_t iSector = 0; iSector < kNS; iSector++) {
969 Int_t nRows = fTPCParam->GetNRow(iSector);
970 Int_t nDDLs = 0, indexDDL = 0;
971 if (iSector < kNIS) {
973 indexDDL = iSector * 2;
977 indexDDL = (iSector-kNIS) * 4 + kNIS * 2;
980 // Load the raw data for corresponding DDLs
983 AliTPCAltroMapping** mapping =AliTPCcalibDB::Instance()->GetMapping();
984 AliTPCRawStreamV3 input(rawReader,(AliAltroMapping**)mapping);
985 rawReader->Select("TPC",indexDDL,indexDDL+nDDLs-1);
988 for (Int_t iRow = 0; iRow < nRowsMax; iRow++) {
989 Int_t maxBin = kmaxTime*nPadsMax;
990 memset(allBins[iRow],0,sizeof(Short_t)*maxBin);
993 // Begin loop over altro data
994 while (input.NextDDL()) {
996 if (input.GetSector() != iSector)
997 AliFatal(Form("Sector index mismatch ! Expected (%d), but got (%d) !",iSector,input.GetSector()));
1000 while ( input.NextChannel() ) {
1002 Int_t iRow = input.GetRow();
1003 if (iRow < 0 || iRow >= nRows)
1004 AliFatal(Form("Pad-row index (%d) outside the range (%d -> %d) !",
1005 iRow, 0, nRows -1));
1006 Int_t iPad = input.GetPad();
1008 Int_t maxPad = fTPCParam->GetNPads(iSector,iRow);
1010 if (iPad < 0 || iPad >= maxPad)
1011 AliFatal(Form("Pad index (%d) outside the range (%d -> %d) !",
1012 iPad, 0, maxPad -1));
1015 while ( input.NextBunch() ){
1016 Int_t startTbin = (Int_t)input.GetStartTimeBin();
1017 Int_t bunchlength = (Int_t)input.GetBunchLength();
1018 const UShort_t *sig = input.GetSignals();
1019 for (Int_t iTime = 0; iTime<bunchlength; iTime++){
1020 Int_t iTimeBin=startTbin-iTime;
1021 if ( iTimeBin < 0 || iTimeBin >= kmaxTime) {
1023 //AliFatal(Form("Timebin index (%d) outside the range (%d -> %d) !",
1024 // iTimeBin, 0, kmaxTime -1));
1027 Int_t maxBin = kmaxTime*maxPad;
1028 if (((iPad*kmaxTime+iTimeBin) >= maxBin) ||
1029 ((iPad*kmaxTime+iTimeBin) < 0))
1030 AliFatal(Form("Index outside the allowed range"
1031 " Sector=%d Row=%d Pad=%d Timebin=%d"
1032 " (Max.index=%d)",iSector,iRow,iPad,iTimeBin,maxBin));
1033 allBins[iRow][iPad*kmaxTime+iTimeBin] = sig[iTime];
1036 } // End loop over altro data
1039 // Now fill the digits array
1040 if (fDigitsArray->GetTree()==0) {
1041 AliFatal("Tree not set in fDigitsArray");
1044 for (Int_t iRow = 0; iRow < nRows; iRow++) {
1045 AliDigits * dig = fDigitsArray->CreateRow(iSector,iRow);
1046 Int_t maxPad = fTPCParam->GetNPads(iSector,iRow);
1047 for(Int_t iPad = 0; iPad < maxPad; iPad++) {
1048 for(Int_t iTimeBin = 0; iTimeBin < kmaxTime; iTimeBin++) {
1049 Short_t q = allBins[iRow][iPad*kmaxTime + iTimeBin];
1050 if (q <= 0) continue;
1052 dig->SetDigitFast((Short_t)q,iTimeBin,iPad);
1055 fDigitsArray->StoreRow(iSector,iRow);
1056 Int_t ndig = dig->GetDigitSize();
1059 Form("*** Sector, row, compressed digits %d %d %d ***\n",
1060 iSector,iRow,ndig));
1062 fDigitsArray->ClearRow(iSector,iRow);
1064 } // end of the sector digitization
1066 // get LHC clock phase from the digits tree
1068 TParameter<float> *ph;
1070 TTree *digtree = fLoader->TreeD();
1072 if(digtree){ // if TreeD exists
1073 ph = (TParameter<float>*)digtree->GetUserInfo()->FindObject("lhcphase0");
1074 phase = ph->GetVal();
1076 else{ //TreeD does not exist
1080 // store lhc clock phase in S-digits tree
1082 fLoader->TreeS()->GetUserInfo()->Add(new TParameter<float>("lhcphase0",phase));
1084 fLoader->WriteSDigits("OVERWRITE");
1086 if(GetDigitsArray()) delete GetDigitsArray();
1087 SetDigitsArray(0x0);
1090 for (Int_t iRow = 0; iRow < nRowsMax; iRow++)
1091 delete [] allBins[iRow];
1097 //______________________________________________________________________
1098 AliDigitizer* AliTPC::CreateDigitizer(AliDigitizationInput* digInput) const
1100 return new AliTPCDigitizer(digInput);
1103 void AliTPC::SDigits2Digits2(Int_t /*eventnumber*/)
1105 //create digits from summable digits
1106 GenerNoise(500000); //create teble with noise
1108 //conect tree with sSDigits
1109 TTree *t = fLoader->TreeS();
1112 fLoader->LoadSDigits("READ");
1113 t = fLoader->TreeS();
1115 AliError("Can not get input TreeS");
1120 if (fLoader->TreeD() == 0x0) fLoader->MakeTree("D");
1122 AliSimDigits digarr, *dummy=&digarr;
1123 TBranch* sdb = t->GetBranch("Segment");
1125 AliError("Can not find branch with segments in TreeS.");
1129 sdb->SetAddress(&dummy);
1131 Stat_t nentries = t->GetEntries();
1133 // set zero suppression
1135 fTPCParam->SetZeroSup(2);
1137 // get zero suppression
1139 Int_t zerosup = fTPCParam->GetZeroSup();
1141 //make tree with digits
1143 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1144 arr->SetClass("AliSimDigits");
1145 arr->Setup(fTPCParam);
1146 arr->MakeTree(fLoader->TreeD());
1148 AliTPCParam * par = fTPCParam;
1150 //Loop over segments of the TPC
1152 for (Int_t n=0; n<nentries; n++) {
1155 if (!par->AdjustSectorRow(digarr.GetID(),sec,row)) {
1156 AliWarning(Form("Invalid segment ID ! %d",digarr.GetID()));
1159 if (!IsSectorActive(sec)) continue;
1161 AliSimDigits * digrow =(AliSimDigits*) arr->CreateRow(sec,row);
1162 Int_t nrows = digrow->GetNRows();
1163 Int_t ncols = digrow->GetNCols();
1165 digrow->ExpandBuffer();
1166 digarr.ExpandBuffer();
1167 digrow->ExpandTrackBuffer();
1168 digarr.ExpandTrackBuffer();
1171 Short_t * pamp0 = digarr.GetDigits();
1172 Int_t * ptracks0 = digarr.GetTracks();
1173 Short_t * pamp1 = digrow->GetDigits();
1174 Int_t * ptracks1 = digrow->GetTracks();
1175 Int_t nelems =nrows*ncols;
1176 Int_t saturation = fTPCParam->GetADCSat() - 1;
1177 //use internal structure of the AliDigits - for speed reason
1178 //if you cahnge implementation
1179 //of the Alidigits - it must be rewriten -
1180 for (Int_t i= 0; i<nelems; i++){
1181 Float_t q = TMath::Nint(Float_t(*pamp0)/16.+GetNoise());
1183 if (q>saturation) q=saturation;
1186 ptracks1[0]=ptracks0[0];
1187 ptracks1[nelems]=ptracks0[nelems];
1188 ptracks1[2*nelems]=ptracks0[2*nelems];
1196 arr->StoreRow(sec,row);
1197 arr->ClearRow(sec,row);
1202 fLoader->WriteDigits("OVERWRITE");
1206 //__________________________________________________________________
1207 void AliTPC::SetDefaults(){
1209 // setting the defaults
1212 // Set response functions
1215 AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::GetRunLoaderName());
1217 //AliTPCParamSR *param=(AliTPCParamSR*)gDirectory->Get("75x40_100x60");
1218 //gDirectory->Get("75x40_100x60");
1219 AliTPCParamSR *param = (AliTPCParamSR*)AliTPCcalibDB::Instance()->GetParameters();
1221 AliFatal("No TPC parameters found");
1224 if (!param->IsGeoRead()){
1226 // read transformation matrices for gGeoManager
1228 param->ReadGeoMatrices();
1233 AliTPCPRF2D * prfinner = new AliTPCPRF2D;
1234 AliTPCPRF2D * prfouter1 = new AliTPCPRF2D;
1235 AliTPCPRF2D * prfouter2 = new AliTPCPRF2D;
1238 //AliTPCRF1D * rf = new AliTPCRF1D(kTRUE);
1239 //rf->SetGauss(param->GetZSigma(),param->GetZWidth(),1.);
1240 //rf->SetOffset(3*param->GetZSigma());
1245 char strgamma4[1000];
1246 //sprintf(strgamma4,"AliTPCRF1D::Gamma4((x-0.135+%f)*%f,55,160)",3*param->GetZSigma(), 1000000000*param->GetTSample()/param->GetZWidth());
1248 snprintf(strgamma4,1000,"AliTPCRF1D::Gamma4((x-0.135+%f)*%f,55,160)",3*param->GetZSigma(), 1000000000*param->GetTSample()/param->GetZWidth());
1249 TF1 * fgamma4 = new TF1("fgamma4",strgamma4, -1,1);
1250 AliTPCRF1D * rf = new AliTPCRF1D(kTRUE,1000);
1251 rf->SetParam(fgamma4,param->GetZWidth(), 1,0.2);
1252 rf->SetOffset(3*param->GetZSigma());
1255 TDirectory *savedir=gDirectory;
1256 TFile *f=TFile::Open("$ALICE_ROOT/TPC/AliTPCprf2d.root");
1258 AliFatal("Can't open $ALICE_ROOT/TPC/AliTPCprf2d.root !");
1261 prfinner->Read("prf_07504_Gati_056068_d02");
1262 //PH Set different names
1263 s=prfinner->GetGRF()->GetName();
1265 prfinner->GetGRF()->SetName(s.Data());
1267 prfouter1->Read("prf_10006_Gati_047051_d03");
1268 s=prfouter1->GetGRF()->GetName();
1270 prfouter1->GetGRF()->SetName(s.Data());
1272 prfouter2->Read("prf_15006_Gati_047051_d03");
1273 s=prfouter2->GetGRF()->GetName();
1275 prfouter2->GetGRF()->SetName(s.Data());
1280 param->SetInnerPRF(prfinner);
1281 param->SetOuter1PRF(prfouter1);
1282 param->SetOuter2PRF(prfouter2);
1283 param->SetTimeRF(rf);
1293 //__________________________________________________________________
1294 void AliTPC::Hits2Digits()
1297 // creates digits from hits
1299 if (!fTPCParam->IsGeoRead()){
1301 // read transformation matrices for gGeoManager
1303 fTPCParam->ReadGeoMatrices();
1306 fLoader->LoadHits("read");
1307 fLoader->LoadDigits("recreate");
1308 AliRunLoader* runLoader = fLoader->GetRunLoader();
1310 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
1311 //PH runLoader->GetEvent(iEvent);
1312 Hits2Digits(iEvent);
1315 fLoader->UnloadHits();
1316 fLoader->UnloadDigits();
1318 //__________________________________________________________________
1319 void AliTPC::Hits2Digits(Int_t eventnumber)
1321 //----------------------------------------------------
1322 // Loop over all sectors for a single event
1323 //----------------------------------------------------
1324 AliRunLoader* rl = (AliRunLoader*)fLoader->GetEventFolder()->FindObject(AliRunLoader::GetRunLoaderName());
1325 rl->GetEvent(eventnumber);
1327 if (fLoader->TreeH() == 0x0) {
1328 if(fLoader->LoadHits()) {
1329 AliError("Can not load hits.");
1334 if (fLoader->TreeD() == 0x0 ) {
1335 fLoader->MakeTree("D");
1336 if (fLoader->TreeD() == 0x0 ) {
1337 AliError("Can not get TreeD");
1342 if(fDefaults == 0) SetDefaults(); // check if the parameters are set
1343 GenerNoise(500000); //create teble with noise
1345 //setup TPCDigitsArray
1347 if(GetDigitsArray()) delete GetDigitsArray();
1349 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1350 arr->SetClass("AliSimDigits");
1351 arr->Setup(fTPCParam);
1353 arr->MakeTree(fLoader->TreeD());
1354 SetDigitsArray(arr);
1356 fDigitsSwitch=0; // standard digits
1357 // here LHC clock phase
1359 switch (fLHCclockPhaseSw){
1366 lhcph = (Int_t)(gRandom->Rndm()/0.25);
1370 // not implemented yet
1373 // adding phase to the TreeD user info
1374 fLoader->TreeD()->GetUserInfo()->Add(new TParameter<float>("lhcphase0",lhcph));
1376 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++)
1377 if (IsSectorActive(isec)) {
1378 AliDebug(1,Form("Hits2Digits: Sector %d is active.",isec));
1379 Hits2DigitsSector(isec);
1382 AliDebug(1,Form("Hits2Digits: Sector %d is NOT active.",isec));
1385 fLoader->WriteDigits("OVERWRITE");
1387 //this line prevents the crash in the similar one
1388 //on the beginning of this method
1389 //destructor attempts to reset the tree, which is deleted by the loader
1390 //need to be redesign
1391 if(GetDigitsArray()) delete GetDigitsArray();
1392 SetDigitsArray(0x0);
1396 //__________________________________________________________________
1397 void AliTPC::Hits2SDigits2(Int_t eventnumber)
1400 //-----------------------------------------------------------
1401 // summable digits - 16 bit "ADC", no noise, no saturation
1402 //-----------------------------------------------------------
1404 //----------------------------------------------------
1405 // Loop over all sectors for a single event
1406 //----------------------------------------------------
1408 AliRunLoader* rl = fLoader->GetRunLoader();
1410 rl->GetEvent(eventnumber);
1411 if (fLoader->TreeH() == 0x0) {
1412 if(fLoader->LoadHits()) {
1413 AliError("Can not load hits.");
1420 if (fLoader->TreeS() == 0x0 ) {
1421 fLoader->MakeTree("S");
1424 if(fDefaults == 0) SetDefaults();
1426 GenerNoise(500000); //create table with noise
1427 //setup TPCDigitsArray
1429 if(GetDigitsArray()) delete GetDigitsArray();
1432 AliTPCDigitsArray *arr = new AliTPCDigitsArray;
1433 arr->SetClass("AliSimDigits");
1434 arr->Setup(fTPCParam);
1435 arr->MakeTree(fLoader->TreeS());
1437 SetDigitsArray(arr);
1439 fDigitsSwitch=1; // summable digits
1441 // set zero suppression to "0"
1442 // here LHC clock phase
1444 switch (fLHCclockPhaseSw){
1451 lhcph = (Int_t)(gRandom->Rndm()/0.25);
1455 // not implemented yet
1458 // adding phase to the TreeS user info
1460 fLoader->TreeS()->GetUserInfo()->Add(new TParameter<float>("lhcphase0",lhcph));
1462 fTPCParam->SetZeroSup(0);
1464 for(Int_t isec=0;isec<fTPCParam->GetNSector();isec++)
1465 if (IsSectorActive(isec)) {
1466 Hits2DigitsSector(isec);
1469 fLoader->WriteSDigits("OVERWRITE");
1471 //this line prevents the crash in the similar one
1472 //on the beginning of this method
1473 //destructor attempts to reset the tree, which is deleted by the loader
1474 //need to be redesign
1475 if(GetDigitsArray()) delete GetDigitsArray();
1476 SetDigitsArray(0x0);
1478 //__________________________________________________________________
1480 void AliTPC::Hits2SDigits()
1483 //-----------------------------------------------------------
1484 // summable digits - 16 bit "ADC", no noise, no saturation
1485 //-----------------------------------------------------------
1487 if (!fTPCParam->IsGeoRead()){
1489 // read transformation matrices for gGeoManager
1491 fTPCParam->ReadGeoMatrices();
1494 fLoader->LoadHits("read");
1495 fLoader->LoadSDigits("recreate");
1496 AliRunLoader* runLoader = fLoader->GetRunLoader();
1498 for (Int_t iEvent = 0; iEvent < runLoader->GetNumberOfEvents(); iEvent++) {
1499 runLoader->GetEvent(iEvent);
1502 Hits2SDigits2(iEvent);
1505 fLoader->UnloadHits();
1506 fLoader->UnloadSDigits();
1507 if (fDebugStreamer) {
1508 delete fDebugStreamer;
1512 //_____________________________________________________________________________
1514 void AliTPC::Hits2DigitsSector(Int_t isec)
1516 //-------------------------------------------------------------------
1517 // TPC conversion from hits to digits.
1518 //-------------------------------------------------------------------
1520 //-----------------------------------------------------------------
1521 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1522 //-----------------------------------------------------------------
1524 //-------------------------------------------------------
1525 // Get the access to the track hits
1526 //-------------------------------------------------------
1528 // check if the parameters are set - important if one calls this method
1529 // directly, not from the Hits2Digits
1531 if(fDefaults == 0) SetDefaults();
1533 TTree *tH = fLoader->TreeH(); // pointer to the hits tree
1535 AliFatal("Can not find TreeH in folder");
1539 Stat_t ntracks = tH->GetEntries();
1541 Int_t nrows =fTPCParam->GetNRow(isec);
1543 TObjArray **row=new TObjArray* [nrows+2]; // 2 extra rows for cross talk
1544 for(Int_t j=0;j<nrows+2;j++) row[j]=0;
1546 MakeSector(isec,nrows,tH,ntracks,row);
1548 //--------------------------------------------------------
1549 // Digitize this sector, row by row
1550 // row[i] is the pointer to the TObjArray of TVectors,
1551 // each one containing electrons accepted on this
1552 // row, assigned into tracks
1553 //--------------------------------------------------------
1557 if (fDigitsArray->GetTree()==0) {
1558 AliFatal("Tree not set in fDigitsArray");
1561 for (i=0;i<nrows;i++){
1563 AliDigits * dig = fDigitsArray->CreateRow(isec,i);
1565 DigitizeRow(i,isec,row);
1567 fDigitsArray->StoreRow(isec,i);
1569 Int_t ndig = dig->GetDigitSize();
1572 Form("*** Sector, row, compressed digits %d %d %d ***\n",
1575 fDigitsArray->ClearRow(isec,i);
1578 } // end of the sector digitization
1580 for(i=0;i<nrows+2;i++){
1585 delete [] row; // delete the array of pointers to TObjArray-s
1588 } // end of Hits2DigitsSector
1591 //_____________________________________________________________________________
1592 void AliTPC::DigitizeRow(Int_t irow,Int_t isec,TObjArray **rows)
1594 //-----------------------------------------------------------
1595 // Single row digitization, coupling from the neighbouring
1596 // rows taken into account
1597 //-----------------------------------------------------------
1599 //-----------------------------------------------------------------
1600 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1601 // Modified: Marian Ivanov GSI Darmstadt, m.ivanov@gsi.de
1602 //-----------------------------------------------------------------
1604 Float_t zerosup = fTPCParam->GetZeroSup();
1605 AliTPCCalPad * gainTPC = AliTPCcalibDB::Instance()->GetDedxGainFactor();
1606 AliTPCCalPad * noiseTPC = AliTPCcalibDB::Instance()->GetPadNoise();
1607 AliTPCCalROC * gainROC = gainTPC->GetCalROC(isec); // pad gains per given sector
1608 AliTPCCalROC * noiseROC = noiseTPC->GetCalROC(isec); // noise per given sector
1611 fCurrentIndex[1]= isec;
1614 Int_t nofPads = fTPCParam->GetNPads(isec,irow);
1615 Int_t nofTbins = fTPCParam->GetMaxTBin();
1616 Int_t indexRange[4];
1618 // Integrated signal for this row
1619 // and a single track signal
1622 TMatrixF *m1 = new TMatrixF(0,nofPads,0,nofTbins); // integrated
1623 TMatrixF *m2 = new TMatrixF(0,nofPads,0,nofTbins); // single
1625 TMatrixF &total = *m1;
1627 // Array of pointers to the label-signal list
1629 Int_t nofDigits = nofPads*nofTbins; // number of digits for this row
1630 Float_t **pList = new Float_t* [nofDigits];
1634 for(lp=0;lp<nofDigits;lp++)pList[lp]=0; // set all pointers to NULL
1640 for (Int_t row= row1;row<=row2;row++){
1641 Int_t nTracks= rows[row]->GetEntries();
1642 for (i1=0;i1<nTracks;i1++){
1643 fCurrentIndex[2]= row;
1644 fCurrentIndex[3]=irow+1;
1646 m2->Zero(); // clear single track signal matrix
1647 Float_t trackLabel = GetSignal(rows[row],i1,m2,m1,indexRange);
1648 GetList(trackLabel,nofPads,m2,indexRange,pList);
1650 else GetSignal(rows[row],i1,0,m1,indexRange);
1656 AliDigits *dig = fDigitsArray->GetRow(isec,irow);
1658 Float_t fzerosup = zerosup+0.5;
1659 for(Int_t it=0;it<nofTbins;it++){
1660 for(Int_t ip=0;ip<nofPads;ip++){
1662 Float_t q=total(ip,it);
1663 if(fDigitsSwitch == 0){
1664 Float_t gain = gainROC->GetValue(irow,ip); // get gain for given - pad-row pad
1665 Float_t noisePad = noiseROC->GetValue(irow,ip);
1668 q+=GetNoise()*noisePad;
1669 if(q <=fzerosup) continue; // do not fill zeros
1671 if(q >= fTPCParam->GetADCSat()) q = fTPCParam->GetADCSat() - 1; // saturation
1676 if(q <= 0.) continue; // do not fill zeros
1677 if(q>2000.) q=2000.;
1683 // "real" signal or electronic noise (list = -1)?
1686 for(Int_t j1=0;j1<3;j1++){
1687 tracks[j1] = (pList[gi]) ?(Int_t)(*(pList[gi]+j1)) : -2;
1692 <A NAME="AliDigits"></A>
1693 using of AliDigits object
1696 dig->SetDigitFast((Short_t)q,it,ip);
1697 if (fDigitsArray->IsSimulated()) {
1698 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[0],it,ip,0);
1699 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[1],it,ip,1);
1700 ((AliSimDigits*)dig)->SetTrackIDFast(tracks[2],it,ip,2);
1703 } // end of loop over time buckets
1704 } // end of lop over pads
1710 // glitch filters if normal simulated digits
1712 if(!fDigitsSwitch) ((AliSimDigits*)dig)->GlitchFilter();
1714 // This row has been digitized, delete nonused stuff
1717 for(lp=0;lp<nofDigits;lp++){
1718 if(pList[lp]) delete [] pList[lp];
1726 } // end of DigitizeRow
1728 //_____________________________________________________________________________
1730 Float_t AliTPC::GetSignal(TObjArray *p1, Int_t ntr,
1731 TMatrixF *m1, TMatrixF *m2,Int_t *indexRange)
1734 //---------------------------------------------------------------
1735 // Calculates 2-D signal (pad,time) for a single track,
1736 // returns a pointer to the signal matrix and the track label
1737 // No digitization is performed at this level!!!
1738 //---------------------------------------------------------------
1740 //-----------------------------------------------------------------
1741 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1742 // Modified: Marian Ivanov
1743 //-----------------------------------------------------------------
1747 tv = (TVector*)p1->At(ntr); // pointer to a track
1750 Float_t label = v(0);
1751 Int_t centralPad = (fTPCParam->GetNPads(fCurrentIndex[1],fCurrentIndex[3]-1))/2;
1753 Int_t nElectrons = (tv->GetNrows()-1)/5;
1754 indexRange[0]=9999; // min pad
1755 indexRange[1]=-1; // max pad
1756 indexRange[2]=9999; //min time
1757 indexRange[3]=-1; // max time
1759 TMatrixF &signal = *m1;
1760 TMatrixF &total = *m2;
1762 // Get LHC clock phase
1764 TParameter<float> *ph;
1765 if(fDigitsSwitch){// s-digits
1766 ph = (TParameter<float>*)fLoader->TreeS()->GetUserInfo()->FindObject("lhcphase0");
1768 else{ // normal digits
1769 ph = (TParameter<float>*)fLoader->TreeD()->GetUserInfo()->FindObject("lhcphase0");
1771 // Loop over all electrons
1773 for(Int_t nel=0; nel<nElectrons; nel++){
1775 Float_t aval = v(idx+4);
1776 Float_t eltoadcfac=aval*fTPCParam->GetTotalNormFac();
1777 Float_t xyz[4]={v(idx+1),v(idx+2),v(idx+3),v(idx+5)};
1778 Int_t n = ((AliTPCParamSR*)fTPCParam)->CalcResponseFast(xyz,fCurrentIndex,
1779 fCurrentIndex[3],ph->GetVal());
1781 Int_t *index = fTPCParam->GetResBin(0);
1782 Float_t *weight = & (fTPCParam->GetResWeight(0));
1784 if (n>0) for (Int_t i =0; i<n; i++){
1785 Int_t pad=index[1]+centralPad; //in digit coordinates central pad has coordinate 0
1788 Int_t time=index[2];
1789 Float_t qweight = *(weight)*eltoadcfac;
1791 if (m1!=0) signal(pad,time)+=qweight;
1792 total(pad,time)+=qweight;
1793 if (indexRange[0]>pad) indexRange[0]=pad;
1794 if (indexRange[1]<pad) indexRange[1]=pad;
1795 if (indexRange[2]>time) indexRange[2]=time;
1796 if (indexRange[3]<time) indexRange[3]=time;
1803 } // end of loop over electrons
1805 return label; // returns track label when finished
1808 //_____________________________________________________________________________
1809 void AliTPC::GetList(Float_t label,Int_t np,TMatrixF *m,
1810 Int_t *indexRange, Float_t **pList)
1812 //----------------------------------------------------------------------
1813 // Updates the list of tracks contributing to digits for a given row
1814 //----------------------------------------------------------------------
1816 //-----------------------------------------------------------------
1817 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1818 //-----------------------------------------------------------------
1820 TMatrixF &signal = *m;
1822 // lop over nonzero digits
1824 for(Int_t it=indexRange[2];it<indexRange[3]+1;it++){
1825 for(Int_t ip=indexRange[0];ip<indexRange[1]+1;ip++){
1828 // accept only the contribution larger than 500 electrons (1/2 s_noise)
1830 if(signal(ip,it)<0.5) continue;
1832 Int_t globalIndex = it*np+ip; // globalIndex starts from 0!
1834 if(!pList[globalIndex]){
1837 // Create new list (6 elements - 3 signals and 3 labels),
1840 pList[globalIndex] = new Float_t [6];
1844 *pList[globalIndex] = -1.;
1845 *(pList[globalIndex]+1) = -1.;
1846 *(pList[globalIndex]+2) = -1.;
1847 *(pList[globalIndex]+3) = -1.;
1848 *(pList[globalIndex]+4) = -1.;
1849 *(pList[globalIndex]+5) = -1.;
1851 *pList[globalIndex] = label;
1852 *(pList[globalIndex]+3) = signal(ip,it);
1856 // check the signal magnitude
1858 Float_t highest = *(pList[globalIndex]+3);
1859 Float_t middle = *(pList[globalIndex]+4);
1860 Float_t lowest = *(pList[globalIndex]+5);
1863 // compare the new signal with already existing list
1866 if(signal(ip,it)<lowest) continue; // neglect this track
1870 if (signal(ip,it)>highest){
1871 *(pList[globalIndex]+5) = middle;
1872 *(pList[globalIndex]+4) = highest;
1873 *(pList[globalIndex]+3) = signal(ip,it);
1875 *(pList[globalIndex]+2) = *(pList[globalIndex]+1);
1876 *(pList[globalIndex]+1) = *pList[globalIndex];
1877 *pList[globalIndex] = label;
1879 else if (signal(ip,it)>middle){
1880 *(pList[globalIndex]+5) = middle;
1881 *(pList[globalIndex]+4) = signal(ip,it);
1883 *(pList[globalIndex]+2) = *(pList[globalIndex]+1);
1884 *(pList[globalIndex]+1) = label;
1887 *(pList[globalIndex]+5) = signal(ip,it);
1888 *(pList[globalIndex]+2) = label;
1892 } // end of loop over pads
1893 } // end of loop over time bins
1896 //___________________________________________________________________
1897 void AliTPC::MakeSector(Int_t isec,Int_t nrows,TTree *TH,
1898 Stat_t ntracks,TObjArray **row)
1901 //-----------------------------------------------------------------
1902 // Prepares the sector digitization, creates the vectors of
1903 // tracks for each row of this sector. The track vector
1904 // contains the track label and the position of electrons.
1905 //-----------------------------------------------------------------
1908 // The trasport of the electrons through TPC drift volume
1909 // Drift (drift velocity + velocity map(not yet implemented)))
1910 // Application of the random processes (diffusion, gas gain)
1911 // Systematic effects (ExB effect in drift volume + ROCs)
1914 // Loop over primary electrons:
1915 // Creation of the secondary electrons
1916 // Loop over electrons (primary+ secondaries)
1917 // Global coordinate frame:
1918 // 1. Skip electrons if attached
1919 // 2. ExB effect in drift volume
1920 // a.) Simulation calib->GetExB()->CorrectInverse(dxyz0,dxyz1);
1921 // b.) Reconstruction - calib->GetExB()->CorrectInverse(dxyz0,dxyz1);
1922 // 3. Generation of gas gain (Random - Exponential distribution)
1923 // 4. TransportElectron function (diffusion)
1925 // 5. Conversion to the local coordinate frame pad-row, pad, timebin
1926 // 6. Apply Time0 shift - AliTPCCalPad class
1927 // a.) Plus sign in simulation
1928 // b.) Minus sign in reconstruction
1931 //-----------------------------------------------------------------
1932 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
1933 // Origin: Marian Ivanov, marian.ivanov@cern.ch
1934 //-----------------------------------------------------------------
1935 AliTPCcalibDB* const calib=AliTPCcalibDB::Instance();
1936 if (gAlice){ // Set correctly the magnetic field in the ExB calculation
1937 if (!calib->GetExB()){
1938 AliMagF * field = ((AliMagF*)TGeoGlobalMagField::Instance()->GetField());
1940 calib->SetExBField(field);
1945 Float_t gasgain = fTPCParam->GetGasGain();
1946 gasgain = gasgain/fGainFactor;
1950 AliTPChit *tpcHit; // pointer to a sigle TPC hit
1953 if (fHitType>1) branch = TH->GetBranch("TPC2");
1954 else branch = TH->GetBranch("TPC");
1957 //----------------------------------------------
1958 // Create TObjArray-s, one for each row,
1959 // each TObjArray will store the TVectors
1960 // of electrons, one TVectors per each track.
1961 //----------------------------------------------
1963 Int_t *nofElectrons = new Int_t [nrows+2]; // electron counter for each row
1964 TVector **tracks = new TVector* [nrows+2]; //pointers to the track vectors
1966 for(i=0; i<nrows+2; i++){
1967 row[i] = new TObjArray;
1974 //--------------------------------------------------------------------
1975 // Loop over tracks, the "track" contains the full history
1976 //--------------------------------------------------------------------
1978 Int_t previousTrack,currentTrack;
1979 previousTrack = -1; // nothing to store so far!
1981 for(Int_t track=0;track<ntracks;track++){
1982 Bool_t isInSector=kTRUE;
1984 isInSector = TrackInVolume(isec,track);
1985 if (!isInSector) continue;
1987 branch->GetEntry(track); // get next track
1991 tpcHit = (AliTPChit*)FirstHit(-1);
1993 //--------------------------------------------------------------
1995 //--------------------------------------------------------------
2000 Int_t sector=tpcHit->fSector; // sector number
2002 tpcHit = (AliTPChit*) NextHit();
2006 // Remove hits which arrive before the TPC opening gate signal
2007 if(((fTPCParam->GetZLength(isec)-TMath::Abs(tpcHit->Z()))
2008 /fTPCParam->GetDriftV()+tpcHit->Time())<fTPCParam->GetGateDelay()) {
2009 tpcHit = (AliTPChit*) NextHit();
2013 currentTrack = tpcHit->Track(); // track number
2015 if(currentTrack != previousTrack){
2017 // store already filled fTrack
2019 for(i=0;i<nrows+2;i++){
2020 if(previousTrack != -1){
2021 if(nofElectrons[i]>0){
2022 TVector &v = *tracks[i];
2023 v(0) = previousTrack;
2024 tracks[i]->ResizeTo(5*nofElectrons[i]+1); // shrink if necessary
2025 row[i]->Add(tracks[i]);
2028 delete tracks[i]; // delete empty TVector
2034 tracks[i] = new TVector(601); // TVectors for the next fTrack
2036 } // end of loop over rows
2038 previousTrack=currentTrack; // update track label
2041 Int_t qI = (Int_t) (tpcHit->fQ); // energy loss (number of electrons)
2043 //---------------------------------------------------
2044 // Calculate the electron attachment probability
2045 //---------------------------------------------------
2048 Float_t time = 1.e6*(fTPCParam->GetZLength(isec)-TMath::Abs(tpcHit->Z()))
2049 /fTPCParam->GetDriftV();
2051 Float_t attProb = fTPCParam->GetAttCoef()*
2052 fTPCParam->GetOxyCont()*time; // fraction!
2054 //-----------------------------------------------
2055 // Loop over electrons
2056 //-----------------------------------------------
2059 for(Int_t nel=0;nel<qI;nel++){
2060 // skip if electron lost due to the attachment
2061 if((gRandom->Rndm(0)) < attProb) continue; // electron lost!
2066 Double_t dxyz0[3],dxyz1[3];
2067 dxyz0[0]=tpcHit->X();
2068 dxyz0[1]=tpcHit->Y();
2069 dxyz0[2]=tpcHit->Z();
2070 if (calib->GetExB()){
2071 calib->GetExB()->CorrectInverse(dxyz0,dxyz1);
2073 AliError("Not valid ExB calibration");
2074 dxyz1[0]=tpcHit->X();
2075 dxyz1[1]=tpcHit->Y();
2076 dxyz1[2]=tpcHit->Z();
2084 // protection for the nonphysical avalanche size (10**6 maximum)
2086 Double_t rn=TMath::Max(gRandom->Rndm(0),1.93e-22);
2087 xyz[3]= (Float_t) (-gasgain*TMath::Log(rn));
2090 TransportElectron(xyz,index);
2092 Int_t padrow = fTPCParam->GetPadRow(xyz,index);
2094 // Add Time0 correction due unisochronity
2095 // xyz[0] - pad row coordinate
2096 // xyz[1] - pad coordinate
2097 // xyz[2] - is in now time bin coordinate system
2098 Float_t correction =0;
2099 if (calib->GetPadTime0()){
2100 if (!calib->GetPadTime0()->GetCalROC(isec)) continue;
2101 Int_t npads = fTPCParam->GetNPads(isec,padrow);
2102 // Int_t pad = TMath::Nint(xyz[1]+fTPCParam->GetNPads(isec,TMath::Nint(xyz[0]))*0.5);
2103 // pad numbering from -npads/2 .. npads/2-1
2104 Int_t pad = TMath::Nint(xyz[1]+npads/2);
2106 if (pad>=npads) pad=npads-1;
2107 correction = calib->GetPadTime0()->GetCalROC(isec)->GetValue(padrow,pad);
2108 // printf("%d\t%d\t%d\t%f\n",isec,padrow,pad,correction);
2109 if (fDebugStreamer){
2110 (*fDebugStreamer)<<"Time0"<<
2118 "cor="<<correction<<
2123 xyz[2]+=fTPCParam->GetNTBinsL1(); // adding Level 1 time bin offset
2125 // Electron track time (for pileup simulation)
2126 xyz[2]+=tpcHit->Time()/fTPCParam->GetTSample(); // adding time of flight
2130 // row 0 - cross talk from the innermost row
2131 // row fNRow+1 cross talk from the outermost row
2132 rowNumber = index[2]+1;
2133 //transform position to local digit coordinates
2134 //relative to nearest pad row
2135 if ((rowNumber<0)||rowNumber>fTPCParam->GetNRow(isec)+1) continue;
2137 if (isec <fTPCParam->GetNInnerSector()) {
2138 x1 = xyz[1]*fTPCParam->GetInnerPadPitchWidth();
2139 y1 = fTPCParam->GetYInner(rowNumber);
2142 x1=xyz[1]*fTPCParam->GetOuterPadPitchWidth();
2143 y1 = fTPCParam->GetYOuter(rowNumber);
2145 // gain inefficiency at the wires edges - linear
2148 if(x1>y1) xyz[3]*=TMath::Max(1.e-6,(y1-x1+1.)); */
2150 nofElectrons[rowNumber]++;
2151 //----------------------------------
2152 // Expand vector if necessary
2153 //----------------------------------
2154 if(nofElectrons[rowNumber]>120){
2155 Int_t range = tracks[rowNumber]->GetNrows();
2156 if((nofElectrons[rowNumber])>(range-1)/5){
2158 tracks[rowNumber]->ResizeTo(range+500); // Add 100 electrons
2162 TVector &v = *tracks[rowNumber];
2163 Int_t idx = 5*nofElectrons[rowNumber]-4;
2164 Real_t * position = &(((TVector&)v)(idx)); //make code faster
2165 memcpy(position,xyz,5*sizeof(Float_t));
2167 } // end of loop over electrons
2169 tpcHit = (AliTPChit*)NextHit();
2171 } // end of loop over hits
2172 } // end of loop over tracks
2175 // store remaining track (the last one) if not empty
2178 for(i=0;i<nrows+2;i++){
2179 if(nofElectrons[i]>0){
2180 TVector &v = *tracks[i];
2181 v(0) = previousTrack;
2182 tracks[i]->ResizeTo(5*nofElectrons[i]+1); // shrink if necessary
2183 row[i]->Add(tracks[i]);
2192 delete [] nofElectrons;
2194 } // end of MakeSector
2197 //_____________________________________________________________________________
2201 // Initialise TPC detector after definition of geometry
2203 AliDebug(1,"*********************************************");
2206 //_____________________________________________________________________________
2207 void AliTPC::ResetDigits()
2210 // Reset number of digits and the digits array for this detector
2213 if (fDigits) fDigits->Clear();
2218 //_____________________________________________________________________________
2219 void AliTPC::SetSens(Int_t sens)
2222 //-------------------------------------------------------------
2223 // Activates/deactivates the sensitive strips at the center of
2224 // the pad row -- this is for the space-point resolution calculations
2225 //-------------------------------------------------------------
2227 //-----------------------------------------------------------------
2228 // Origin: Marek Kowalski IFJ, Krakow, Marek.Kowalski@ifj.edu.pl
2229 //-----------------------------------------------------------------
2235 void AliTPC::SetSide(Float_t side=0.)
2237 // choice of the TPC side
2242 //_____________________________________________________________________________
2244 void AliTPC::TransportElectron(Float_t *xyz, Int_t *index)
2247 // electron transport taking into account:
2249 // 2.ExB at the wires
2250 // 3. nonisochronity
2252 // xyz and index must be already transformed to system 1
2255 fTPCParam->Transform1to2(xyz,index); // mis-alignment applied in this step
2258 Float_t driftl=xyz[2];
2259 if(driftl<0.01) driftl=0.01;
2260 driftl=TMath::Sqrt(driftl);
2261 Float_t sigT = driftl*(fTPCParam->GetDiffT());
2262 Float_t sigL = driftl*(fTPCParam->GetDiffL());
2263 xyz[0]=gRandom->Gaus(xyz[0],sigT);
2264 xyz[1]=gRandom->Gaus(xyz[1],sigT);
2265 xyz[2]=gRandom->Gaus(xyz[2],sigL);
2269 if (fTPCParam->GetMWPCReadout()==kTRUE){
2270 Float_t dx = fTPCParam->Transform2to2NearestWire(xyz,index);
2271 xyz[1]+=dx*(fTPCParam->GetOmegaTau());
2273 //add nonisochronity (not implemented yet)
2279 //______________________________________________________________________
2280 AliTPChit::AliTPChit()
2292 //_____________________________________________________________________________
2293 AliTPChit::AliTPChit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits)
2294 :AliHit(shunt,track),
2301 // Creates a TPC hit object
2312 //________________________________________________________________________
2313 // Additional code because of the AliTPCTrackHitsV2
2315 void AliTPC::MakeBranch(Option_t *option)
2318 // Create a new branch in the current Root Tree
2319 // The branch of fHits is automatically split
2320 // MI change 14.09.2000
2322 if (fHitType<2) return;
2323 char branchname[10];
2324 //sprintf(branchname,"%s2",GetName());
2325 snprintf(branchname,10,"%s2",GetName());
2327 // Get the pointer to the header
2328 const char *cH = strstr(option,"H");
2330 if (fTrackHits && fLoader->TreeH() && cH && fHitType&4) {
2331 AliDebug(1,"Making branch for Type 4 Hits");
2332 fLoader->TreeH()->Branch(branchname,"AliTPCTrackHitsV2",&fTrackHits,fBufferSize,99);
2335 // if (fTrackHitsOld && fLoader->TreeH() && cH && fHitType&2) {
2336 // AliDebug(1,"Making branch for Type 2 Hits");
2337 // AliObjectBranch * branch = new AliObjectBranch(branchname,"AliTPCTrackHits",&fTrackHitsOld,
2338 // fLoader->TreeH(),fBufferSize,99);
2339 // fLoader->TreeH()->GetListOfBranches()->Add(branch);
2343 void AliTPC::SetTreeAddress()
2345 //Sets tree address for hits
2347 if (fHits == 0x0 ) fHits = new TClonesArray("AliTPChit", 176);//skowron 20.06.03
2348 AliDetector::SetTreeAddress();
2350 if (fHitType>1) SetTreeAddress2();
2353 void AliTPC::SetTreeAddress2()
2356 // Set branch address for the TrackHits Tree
2361 char branchname[20];
2362 //sprintf(branchname,"%s2",GetName());
2363 snprintf(branchname,20,"%s2",GetName());
2365 // Branch address for hit tree
2366 TTree *treeH = fLoader->TreeH();
2367 if ((treeH)&&(fHitType&4)) {
2368 branch = treeH->GetBranch(branchname);
2370 branch->SetAddress(&fTrackHits);
2371 AliDebug(1,"fHitType&4 Setting");
2374 AliDebug(1,"fHitType&4 Failed (can not find branch)");
2377 // if ((treeH)&&(fHitType&2)) {
2378 // branch = treeH->GetBranch(branchname);
2380 // branch->SetAddress(&fTrackHitsOld);
2381 // AliDebug(1,"fHitType&2 Setting");
2384 // AliDebug(1,"fHitType&2 Failed (can not find branch)");
2388 void AliTPC::FinishPrimary()
2390 if (fTrackHits &&fHitType&4) fTrackHits->FlushHitStack();
2391 // if (fTrackHitsOld && fHitType&2) fTrackHitsOld->FlushHitStack();
2395 void AliTPC::AddHit2(Int_t track, Int_t *vol, Float_t *hits)
2398 // add hit to the list
2402 int primary = gAlice->GetMCApp()->GetPrimary(track);
2403 gAlice->GetMCApp()->Particle(primary)->SetBit(kKeepBit);
2407 gAlice->GetMCApp()->FlagTrack(track);
2409 if (fTrackHits && fHitType&4)
2410 fTrackHits->AddHitKartez(vol[0],rtrack, hits[0],
2411 hits[1],hits[2],(Int_t)hits[3],hits[4]);
2412 // if (fTrackHitsOld &&fHitType&2 )
2413 // fTrackHitsOld->AddHitKartez(vol[0],rtrack, hits[0],
2414 // hits[1],hits[2],(Int_t)hits[3]);
2418 void AliTPC::ResetHits()
2420 if (fHitType&1) AliDetector::ResetHits();
2421 if (fHitType>1) ResetHits2();
2424 void AliTPC::ResetHits2()
2428 if (fTrackHits && fHitType&4) fTrackHits->Clear();
2429 // if (fTrackHitsOld && fHitType&2) fTrackHitsOld->Clear();
2433 AliHit* AliTPC::FirstHit(Int_t track)
2435 if (fHitType>1) return FirstHit2(track);
2436 return AliDetector::FirstHit(track);
2438 AliHit* AliTPC::NextHit()
2443 if (fHitType>1) return NextHit2();
2445 return AliDetector::NextHit();
2448 AliHit* AliTPC::FirstHit2(Int_t track)
2451 // Initialise the hit iterator
2452 // Return the address of the first hit for track
2453 // If track>=0 the track is read from disk
2454 // while if track<0 the first hit of the current
2455 // track is returned
2458 gAlice->GetMCApp()->ResetHits();
2459 fLoader->TreeH()->GetEvent(track);
2462 if (fTrackHits && fHitType&4) {
2463 fTrackHits->First();
2464 return fTrackHits->GetHit();
2466 // if (fTrackHitsOld && fHitType&2) {
2467 // fTrackHitsOld->First();
2468 // return fTrackHitsOld->GetHit();
2474 AliHit* AliTPC::NextHit2()
2477 //Return the next hit for the current track
2480 // if (fTrackHitsOld && fHitType&2) {
2481 // fTrackHitsOld->Next();
2482 // return fTrackHitsOld->GetHit();
2486 return fTrackHits->GetHit();
2492 void AliTPC::RemapTrackHitIDs(Int_t *map)
2497 if (!fTrackHits) return;
2499 // if (fTrackHitsOld && fHitType&2){
2500 // AliObjectArray * arr = fTrackHitsOld->fTrackHitsInfo;
2501 // for (UInt_t i=0;i<arr->GetSize();i++){
2502 // AliTrackHitsInfo * info = (AliTrackHitsInfo *)(arr->At(i));
2503 // info->fTrackID = map[info->fTrackID];
2506 // if (fTrackHitsOld && fHitType&4){
2507 if (fTrackHits && fHitType&4){
2508 TClonesArray * arr = fTrackHits->GetArray();;
2509 for (Int_t i=0;i<arr->GetEntriesFast();i++){
2510 AliTrackHitsParamV2 * info = (AliTrackHitsParamV2 *)(arr->At(i));
2511 info->SetTrackID(map[info->GetTrackID()]);
2516 Bool_t AliTPC::TrackInVolume(Int_t id,Int_t track)
2518 //return bool information - is track in given volume
2519 //load only part of the track information
2520 //return true if current track is in volume
2523 // if (fTrackHitsOld && fHitType&2) {
2524 // TBranch * br = fLoader->TreeH()->GetBranch("fTrackHitsInfo");
2525 // br->GetEvent(track);
2526 // AliObjectArray * ar = fTrackHitsOld->fTrackHitsInfo;
2527 // for (UInt_t j=0;j<ar->GetSize();j++){
2528 // if ( ((AliTrackHitsInfo*)ar->At(j))->fVolumeID==id) return kTRUE;
2532 if (fTrackHits && fHitType&4) {
2533 TBranch * br1 = fLoader->TreeH()->GetBranch("fVolumes");
2534 TBranch * br2 = fLoader->TreeH()->GetBranch("fNVolumes");
2535 br2->GetEvent(track);
2536 br1->GetEvent(track);
2537 Int_t *volumes = fTrackHits->GetVolumes();
2538 Int_t nvolumes = fTrackHits->GetNVolumes();
2539 if (!volumes && nvolumes>0) {
2540 AliWarning(Form("Problematic track\t%d\t%d",track,nvolumes));
2543 for (Int_t j=0;j<nvolumes; j++)
2544 if (volumes[j]==id) return kTRUE;
2548 TBranch * br = fLoader->TreeH()->GetBranch("fSector");
2549 br->GetEvent(track);
2550 for (Int_t j=0;j<fHits->GetEntriesFast();j++){
2551 if ( ((AliTPChit*)fHits->At(j))->fSector==id) return kTRUE;
2559 AliLoader* AliTPC::MakeLoader(const char* topfoldername)
2562 fLoader = new AliTPCLoader(GetName(),topfoldername);
2566 ////////////////////////////////////////////////////////////////////////
2567 AliTPCParam* AliTPC::LoadTPCParam(TFile *file) {
2569 // load TPC paarmeters from a given file or create new if the object
2570 // is not found there
2571 // 12/05/2003 This method should be moved to the AliTPCLoader
2572 // and one has to decide where to store the TPC parameters
2575 //sprintf(paramName,"75x40_100x60_150x60");
2576 snprintf(paramName,50,"75x40_100x60_150x60");
2577 AliTPCParam *paramTPC=(AliTPCParam*)file->Get(paramName);
2579 AliDebugClass(1,Form("TPC parameters %s found.",paramName));
2581 AliWarningClass("TPC parameters not found. Create new (they may be incorrect)");
2582 //paramTPC = new AliTPCParamSR;
2583 paramTPC = AliTPCcalibDB::Instance()->GetParameters();
2584 if (!paramTPC->IsGeoRead()){
2586 // read transformation matrices for gGeoManager
2588 paramTPC->ReadGeoMatrices();
2594 // the older version of parameters can be accessed with this code.
2595 // In some cases, we have old parameters saved in the file but
2596 // digits were created with new parameters, it can be distinguish
2597 // by the name of TPC TreeD. The code here is just for the case
2598 // we would need to compare with old data, uncomment it if needed.
2600 // char paramName[50];
2601 // sprintf(paramName,"75x40_100x60");
2602 // AliTPCParam *paramTPC=(AliTPCParam*)in->Get(paramName);
2604 // cout<<"TPC parameters "<<paramName<<" found."<<endl;
2606 // sprintf(paramName,"75x40_100x60_150x60");
2607 // paramTPC=(AliTPCParam*)in->Get(paramName);
2609 // cout<<"TPC parameters "<<paramName<<" found."<<endl;
2611 // cerr<<"TPC parameters not found. Create new (they may be incorrect)."
2613 // paramTPC = new AliTPCParamSR;