]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCRecoParam.cxx
Add the connected pad info to the simulation (Raphaelle)
[u/mrichter/AliRoot.git] / TPC / AliTPCRecoParam.cxx
CommitLineData
669ce3c3 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
16
17///////////////////////////////////////////////////////////////////////////////
18// //
19// Class with TPC reconstruction parameters //
20// //
7a9e557b 21//
22/*
23 The reconstruction parameters are used in the AliTPCclustererMI and AliTPCtrackerMI
24
25 They are retrieved:
26 0. User speciefied it in reconstruction macro
27 1. if (not 0) from OCDB - AliTPCcalibDB::GetRecoParam(eventtype)
28 2. if (not 0 or 1) default parameter - High flux enevironment used
29
30 FIXME:
31 In the future reconstruction parameters should be changed on event basis
32 But for the moment, event types are still not defined
33
1cafd6f4 34
35 // Setting for systematic errors addition
36 [0] - systematic RMSY
37 [1] - systematic RMSZ
38 [2] - systematic RMSSNP
39 [3] - systematic RMSTheta
40 [4] - systematic RMSCuravture - systematic error in 1/cm not in 1/pt
41 //
42 // How to add it example - 3 mm systematic error y, 3 cm systematic error z (drift)
a69162c3 43 Double_t sysError[5]={0.3,3, 0.3/150., 3./150.,0.3/(150*150.)}
1cafd6f4 44 param->SetSystematicError(sysError);
45
7a9e557b 46*/
47 //
669ce3c3 48///////////////////////////////////////////////////////////////////////////////
49
50
51#include "AliTPCRecoParam.h"
52
53ClassImp(AliTPCRecoParam)
54
55
502d13b5 56Bool_t AliTPCRecoParam::fgUseTimeCalibration=kTRUE; // flag usage the time dependent calibration
57 // to be switched off for pass 0 reconstruction
58 // Use static function, other option will be to use
59 // additional specific storage ?
669ce3c3 60
61//_____________________________________________________________________________
62AliTPCRecoParam::AliTPCRecoParam():
b1c50d5c 63 AliDetectorRecoParam(),
018e4f8a 64 fBClusterSharing(kTRUE),
669ce3c3 65 fCtgRange(1.05),
66 fMaxSnpTracker(0.95),
67 fMaxSnpTrack(0.999),
eba5bca1 68 fUseOuterDetectors(kFALSE),
b127a65f 69 fDumpSignal(kFALSE),
669ce3c3 70 fFirstBin(0),
71 fLastBin(-1),
72 fBCalcPedestal(kFALSE),
73 fBDoUnfold(kTRUE),
74 fDumpAmplitudeMin(100),
837809ab 75 fMaxNoise(2.),
625fcba5 76 //
77 fMinMaxCutAbs(4.),
78 fMinLeftRightCutAbs(6.),
79 fMinUpDownCutAbs(6.),
80 //
940ed1f0 81 fMinMaxCutSigma(4.),
82 fMinLeftRightCutSigma(7.),
83 fMinUpDownCutSigma(8.),
b9cc16e4 84 fMaxC(0.3),
85 fBSpecialSeeding(kFALSE),
7d27c1df 86 fBKinkFinder(kTRUE),
9430b11a 87 fLastSeedRowSec(120),
502d13b5 88 fUseFieldCorrection(2), // use field correction
cf5b0aa0 89 fUseComposedCorrection(kFALSE), // use field correction
25617779 90 fUseRPHICorrection(0), // use rphi correction
91 fUseRadialCorrection(0), // use radial correction
92 fUseQuadrantAlignment(0), // use quadrant alignment
93 fUseSectorAlignment(0), // use sector alignment
6be27415 94 fUseDriftCorrectionTime(1), // use drift correction time
95 fUseDriftCorrectionGY(1), // use drif correction global y
25617779 96 fUseGainCorrectionTime(0), // use gain correction time
07c43acb 97 fUseExBCorrection(1), // use ExB correction
8f4188a7 98 //
99 fUseTotCharge(kTRUE), // switch use total or max charge
100 fMinFraction(0.01), // truncated mean - lower threshold
101 fMaxFaction(0.7), // truncated mean - upper threshold
9430b11a 102 fUseTOFCorrection(kTRUE)
669ce3c3 103{
104 //
105 // constructor
106 //
b1c50d5c 107 SetName("TPC");
108 SetTitle("TPC");
1cafd6f4 109 for (Int_t i=0;i<5;i++) fSystematicErrors[i]=0;
6fbe1e5c 110 fCutSharedClusters[0]=0.5; // maximal allowed fraction of shared clusters - shorter track
111 fCutSharedClusters[1]=0.25; // maximal allowed fraction of shared clusters - longer track
eba5bca1 112 fClusterMaxRange[0]=1; // y - pad range
6fbe1e5c 113 fClusterMaxRange[1]=1; // z - time bin range
eba5bca1 114 fKinkAngleCutChi2[0]=9; // angular cut for kink finder - to create a kink
115 // ~ about 5 % rate for high pt kink finder
116 fKinkAngleCutChi2[1]=12; // angular cut for kink finder - to use the partial track // form kink
117 // ~ about 2 % rate for high pt kink finder
669ce3c3 118}
119
120//_____________________________________________________________________________
121AliTPCRecoParam::~AliTPCRecoParam()
122{
123 //
124 // destructor
125 //
126}
127
128
129
130
131AliTPCRecoParam *AliTPCRecoParam::GetLowFluxParam(){
132 //
133 // make default reconstruction parameters for low flux env.
134 //
135 AliTPCRecoParam *param = new AliTPCRecoParam;
136 param->fCtgRange = 10;
137 param->fFirstBin = 0;
138 param->fLastBin = 1000;
b447cbf9 139 param->SetName("Low Flux");
140 param->SetTitle("Low Flux");
669ce3c3 141 return param;
142}
143
144AliTPCRecoParam *AliTPCRecoParam::GetHighFluxParam(){
145 //
146 // make reco parameters for high flux env.
147 //
148 AliTPCRecoParam *param = new AliTPCRecoParam;
149 param->fCtgRange = 1.05;
150 param->fFirstBin = 0;
ec214961 151 param->fLastBin = 1000;
8f4188a7 152 param->fUseTotCharge=kFALSE;
b447cbf9 153 param->SetName("High Flux");
154 param->SetTitle("High Flux");
155 return param;
156}
157
158AliTPCRecoParam *AliTPCRecoParam::GetHLTParam(){
159 //
160 // make reco parameters for high flux env.
161 //
162 AliTPCRecoParam *param = new AliTPCRecoParam;
163 param->fCtgRange = 1.05;
164 param->fFirstBin = 80;
165 param->fLastBin = 1000;
166 param->fMaxSnpTracker = 0.9;
1cafd6f4 167 param->fMaxC = 0.06;
b447cbf9 168 //
169 param->SetName("Hlt Param");
170 param->SetTitle("Hlt Param");
171 param->fBKinkFinder = kFALSE;
669ce3c3 172 return param;
173}
174
175AliTPCRecoParam *AliTPCRecoParam::GetLaserTestParam(Bool_t bPedestal){
176 //
177 // special setting for laser
178 //
179 AliTPCRecoParam *param = new AliTPCRecoParam;
b127a65f 180 param->fDumpSignal=kTRUE;
669ce3c3 181 param->fCtgRange = 10.05;
182 param->fFirstBin = 0;
183 param->fLastBin = 1000;
184 param->fBCalcPedestal = bPedestal;
185 param->fBDoUnfold = kFALSE;
fe5055e5 186 param->fDumpAmplitudeMin = 150;
669ce3c3 187 param->fBKinkFinder = kFALSE;
b9cc16e4 188 param->fMaxSnpTracker = 0.98;
189 param->fMaxC = 0.02;
190 param->fBSpecialSeeding = kTRUE;
9430b11a 191 param->fUseTOFCorrection=kFALSE;
ec214961 192 //
193 //
b447cbf9 194 param->SetName("Laser Flux");
195 param->SetTitle("Laser Flux");
669ce3c3 196 return param;
197}
198
199AliTPCRecoParam *AliTPCRecoParam::GetCosmicTestParam(Bool_t bPedestal){
200 //
201 // special setting for cosmic
202 //
203 AliTPCRecoParam *param = new AliTPCRecoParam;
b127a65f 204 param->fDumpSignal=kTRUE;
669ce3c3 205 param->fCtgRange = 10.05; // full TPC
206 param->fFirstBin = 60;
207 param->fLastBin = 1000;
208 param->fBCalcPedestal = bPedestal;
209 param->fBDoUnfold = kFALSE;
b9cc16e4 210 param->fBSpecialSeeding = kTRUE;
211 param->fMaxC = 0.07;
669ce3c3 212 param->fBKinkFinder = kFALSE;
9430b11a 213 param->fUseTOFCorrection =kFALSE;
b447cbf9 214 param->SetName("Cosmic Flux");
215 param->SetTitle("Cosmic Flux");
216
669ce3c3 217 return param;
218}
219
220
01e5d820 221Bool_t AliTPCRecoParam::GetUseTimeCalibration(){
222 //
223 // get
224 //
225 return fgUseTimeCalibration;
226}
227void AliTPCRecoParam::SetUseTimeCalibration(Bool_t useTimeCalibration) {
228 //
229 // set
230 //
231 fgUseTimeCalibration = useTimeCalibration;
232}
669ce3c3 233