]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCRecoParam.cxx
Bug fix (Marian)
[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
56
57
58//_____________________________________________________________________________
59AliTPCRecoParam::AliTPCRecoParam():
b1c50d5c 60 AliDetectorRecoParam(),
018e4f8a 61 fBClusterSharing(kTRUE),
669ce3c3 62 fCtgRange(1.05),
63 fMaxSnpTracker(0.95),
64 fMaxSnpTrack(0.999),
b127a65f 65 fDumpSignal(kFALSE),
669ce3c3 66 fFirstBin(0),
67 fLastBin(-1),
68 fBCalcPedestal(kFALSE),
69 fBDoUnfold(kTRUE),
70 fDumpAmplitudeMin(100),
837809ab 71 fMaxNoise(2.),
625fcba5 72 //
73 fMinMaxCutAbs(4.),
74 fMinLeftRightCutAbs(6.),
75 fMinUpDownCutAbs(6.),
76 //
940ed1f0 77 fMinMaxCutSigma(4.),
78 fMinLeftRightCutSigma(7.),
79 fMinUpDownCutSigma(8.),
b9cc16e4 80 fMaxC(0.3),
81 fBSpecialSeeding(kFALSE),
7d27c1df 82 fBKinkFinder(kTRUE),
83 fLastSeedRowSec(120)
669ce3c3 84{
85 //
86 // constructor
87 //
b1c50d5c 88 SetName("TPC");
89 SetTitle("TPC");
1cafd6f4 90 for (Int_t i=0;i<5;i++) fSystematicErrors[i]=0;
669ce3c3 91}
92
93//_____________________________________________________________________________
94AliTPCRecoParam::~AliTPCRecoParam()
95{
96 //
97 // destructor
98 //
99}
100
101
102
103
104AliTPCRecoParam *AliTPCRecoParam::GetLowFluxParam(){
105 //
106 // make default reconstruction parameters for low flux env.
107 //
108 AliTPCRecoParam *param = new AliTPCRecoParam;
109 param->fCtgRange = 10;
110 param->fFirstBin = 0;
111 param->fLastBin = 1000;
b447cbf9 112 param->SetName("Low Flux");
113 param->SetTitle("Low Flux");
669ce3c3 114 return param;
115}
116
117AliTPCRecoParam *AliTPCRecoParam::GetHighFluxParam(){
118 //
119 // make reco parameters for high flux env.
120 //
121 AliTPCRecoParam *param = new AliTPCRecoParam;
122 param->fCtgRange = 1.05;
123 param->fFirstBin = 0;
ec214961 124 param->fLastBin = 1000;
b447cbf9 125 param->SetName("High Flux");
126 param->SetTitle("High Flux");
127 return param;
128}
129
130AliTPCRecoParam *AliTPCRecoParam::GetHLTParam(){
131 //
132 // make reco parameters for high flux env.
133 //
134 AliTPCRecoParam *param = new AliTPCRecoParam;
135 param->fCtgRange = 1.05;
136 param->fFirstBin = 80;
137 param->fLastBin = 1000;
138 param->fMaxSnpTracker = 0.9;
1cafd6f4 139 param->fMaxC = 0.06;
b447cbf9 140 //
141 param->SetName("Hlt Param");
142 param->SetTitle("Hlt Param");
143 param->fBKinkFinder = kFALSE;
669ce3c3 144 return param;
145}
146
147AliTPCRecoParam *AliTPCRecoParam::GetLaserTestParam(Bool_t bPedestal){
148 //
149 // special setting for laser
150 //
151 AliTPCRecoParam *param = new AliTPCRecoParam;
b127a65f 152 param->fDumpSignal=kTRUE;
669ce3c3 153 param->fCtgRange = 10.05;
154 param->fFirstBin = 0;
155 param->fLastBin = 1000;
156 param->fBCalcPedestal = bPedestal;
157 param->fBDoUnfold = kFALSE;
fe5055e5 158 param->fDumpAmplitudeMin = 150;
669ce3c3 159 param->fBKinkFinder = kFALSE;
b9cc16e4 160 param->fMaxSnpTracker = 0.98;
161 param->fMaxC = 0.02;
162 param->fBSpecialSeeding = kTRUE;
ec214961 163 //
164 //
b447cbf9 165 param->SetName("Laser Flux");
166 param->SetTitle("Laser Flux");
669ce3c3 167 return param;
168}
169
170AliTPCRecoParam *AliTPCRecoParam::GetCosmicTestParam(Bool_t bPedestal){
171 //
172 // special setting for cosmic
173 //
174 AliTPCRecoParam *param = new AliTPCRecoParam;
b127a65f 175 param->fDumpSignal=kTRUE;
669ce3c3 176 param->fCtgRange = 10.05; // full TPC
177 param->fFirstBin = 60;
178 param->fLastBin = 1000;
179 param->fBCalcPedestal = bPedestal;
180 param->fBDoUnfold = kFALSE;
b9cc16e4 181 param->fBSpecialSeeding = kTRUE;
182 param->fMaxC = 0.07;
669ce3c3 183 param->fBKinkFinder = kFALSE;
b447cbf9 184 param->SetName("Cosmic Flux");
185 param->SetTitle("Cosmic Flux");
186
669ce3c3 187 return param;
188}
189
190
191