]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/tracking-ca/AliHLTTPCCAParam.cxx
code of fast version of GlobalMerger added (it is not yet called by the HLT component)
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCAParam.cxx
1 // @(#) $Id$
2 // **************************************************************************
3 // This file is property of and copyright by the ALICE HLT Project          *
4 // ALICE Experiment at CERN, All rights reserved.                           *
5 //                                                                          *
6 // Primary Authors: Sergey Gorbunov <sergey.gorbunov@kip.uni-heidelberg.de> *
7 //                  Ivan Kisel <kisel@kip.uni-heidelberg.de>                *
8 //                  for The ALICE HLT Project.                              *
9 //                                                                          *
10 // Permission to use, copy, modify and distribute this software and its     *
11 // documentation strictly for non-commercial purposes is hereby granted     *
12 // without fee, provided that the above copyright notice appears in all     *
13 // copies and that both the copyright notice and this permission notice     *
14 // appear in the supporting documentation. The authors make no claims       *
15 // about the suitability of this software for any purpose. It is            *
16 // provided "as is" without express or implied warranty.                    *
17 //                                                                          *
18 //***************************************************************************
19
20
21 #include "AliHLTTPCCAParam.h"
22 #include "AliHLTTPCCAMath.h"
23
24
25 #if !defined(HLTCA_GPUCODE)
26
27 GPUdi() AliHLTTPCCAParam::AliHLTTPCCAParam()
28     : fISlice( 0 ), fNRows( 63 ), fAlpha( 0.174533 ), fDAlpha( 0.349066 ),
29     fCosAlpha( 0 ), fSinAlpha( 0 ), fAngleMin( 0 ), fAngleMax( 0 ), fRMin( 83.65 ), fRMax( 133.3 ),
30     fZMin( 0.0529937 ), fZMax( 249.778 ), fErrX( 0 ), fErrY( 0 ), fErrZ( 0.228808 ), fPadPitch( 0.4 ), fBzkG( -5.00668 ),
31     fConstBz( -5.00668*0.000299792458 ), fHitPickUpFactor( 1. ),
32       fMaxTrackMatchDRow( 4 ), fNeighboursSearchArea(3.), fTrackConnectionFactor( 3.5 ), fTrackChiCut( 3.5 ), fTrackChi2Cut( 10 ), fClusterError2CorrectionY(1.), fClusterError2CorrectionZ(1.),
33       fMinNTrackClusters( 30 ),
34       fMaxTrackQPt(1./0.1)
35 {
36   // constructor
37   fParamS0Par[0][0][0] = 0.00047013;
38   fParamS0Par[0][0][1] = 2.00135e-05;
39   fParamS0Par[0][0][2] = 0.0106533;
40   fParamS0Par[0][0][3] = 5.27104e-08;
41   fParamS0Par[0][0][4] = 0.012829;
42   fParamS0Par[0][0][5] = 0.000147125;
43   fParamS0Par[0][0][6] = 4.99432;
44   fParamS0Par[0][1][0] = 0.000883342;
45   fParamS0Par[0][1][1] = 1.07011e-05;
46   fParamS0Par[0][1][2] = 0.0103187;
47   fParamS0Par[0][1][3] = 4.25141e-08;
48   fParamS0Par[0][1][4] = 0.0224292;
49   fParamS0Par[0][1][5] = 8.27274e-05;
50   fParamS0Par[0][1][6] = 4.17233;
51   fParamS0Par[0][2][0] = 0.000745399;
52   fParamS0Par[0][2][1] = 5.62408e-06;
53   fParamS0Par[0][2][2] = 0.0151562;
54   fParamS0Par[0][2][3] = 5.08757e-08;
55   fParamS0Par[0][2][4] = 0.0601004;
56   fParamS0Par[0][2][5] = 7.97129e-05;
57   fParamS0Par[0][2][6] = 4.84913;
58   fParamS0Par[1][0][0] = 0.00215126;
59   fParamS0Par[1][0][1] = 6.82233e-05;
60   fParamS0Par[1][0][2] = 0.0221867;
61   fParamS0Par[1][0][3] = -6.27825e-09;
62   fParamS0Par[1][0][4] = -0.00745378;
63   fParamS0Par[1][0][5] = 0.000172629;
64   fParamS0Par[1][0][6] = 6.24987;
65   fParamS0Par[1][1][0] = 0.00181667;
66   fParamS0Par[1][1][1] = -4.17772e-06;
67   fParamS0Par[1][1][2] = 0.0253429;
68   fParamS0Par[1][1][3] = 1.3011e-07;
69   fParamS0Par[1][1][4] = -0.00362827;
70   fParamS0Par[1][1][5] = 0.00030406;
71   fParamS0Par[1][1][6] = 17.7775;
72   fParamS0Par[1][2][0] = 0.00158251;
73   fParamS0Par[1][2][1] = -3.55911e-06;
74   fParamS0Par[1][2][2] = 0.0247899;
75   fParamS0Par[1][2][3] = 7.20604e-08;
76   fParamS0Par[1][2][4] = 0.0179946;
77   fParamS0Par[1][2][5] = 0.000425504;
78   fParamS0Par[1][2][6] = 20.9294;
79
80
81   Update();
82 }
83
84 void AliHLTTPCCAParam::Initialize( int iSlice,
85     int nRows, float rowX[],
86     float alpha, float dAlpha,
87     float rMin, float rMax,
88     float zMin, float zMax,
89     float padPitch, float zSigma,
90     float bz
91                                         )
92 {
93   // initialization
94   fISlice = iSlice;
95   fAlpha = alpha;
96   fDAlpha = dAlpha;
97   fRMin = rMin;
98   fRMax = rMax;
99   fZMin = zMin;
100   fZMax = zMax;
101   fPadPitch = padPitch;
102   fErrY = 1.; // not in use
103   fErrZ = zSigma;
104   fBzkG = bz;
105   fNRows = nRows;
106   for ( int irow = 0; irow < nRows; irow++ ) {
107     fRowX[irow] = rowX[irow];
108     //std::cout << " row " << irow << " x= " << rowX[irow] << std::endl;
109   }
110
111   Update();
112 }
113
114 void AliHLTTPCCAParam::Update()
115 {
116   // update of calculated values
117
118   const double kCLight = 0.000299792458;
119   fConstBz = fBzkG * kCLight;
120
121   fPolinomialFieldBz[0] = fConstBz * (  0.999286   );
122   fPolinomialFieldBz[1] = fConstBz * ( -4.54386e-7 );
123   fPolinomialFieldBz[2] = fConstBz * (  2.32950e-5 );
124   fPolinomialFieldBz[3] = fConstBz * ( -2.99912e-7 );
125   fPolinomialFieldBz[4] = fConstBz * ( -2.03442e-8 );
126   fPolinomialFieldBz[5] = fConstBz * (  9.71402e-8 );
127
128   fCosAlpha = CAMath::Cos( fAlpha );
129   fSinAlpha = CAMath::Sin( fAlpha );
130   fAngleMin = fAlpha - fDAlpha / 2.f;
131   fAngleMax = fAlpha + fDAlpha / 2.f;
132   fErrX = fPadPitch / CAMath::Sqrt( 12. );
133   fTrackChi2Cut = fTrackChiCut * fTrackChiCut;
134 }
135
136 #endif
137
138
139 GPUdi() void AliHLTTPCCAParam::Slice2Global( float x, float y,  float z,
140     float *X, float *Y,  float *Z ) const
141 {
142   // conversion of coorinates sector->global
143   *X = x * fCosAlpha - y * fSinAlpha;
144   *Y = y * fCosAlpha + x * fSinAlpha;
145   *Z = z;
146 }
147
148 GPUdi() void AliHLTTPCCAParam::Global2Slice( float X, float Y,  float Z,
149     float *x, float *y,  float *z ) const
150 {
151   // conversion of coorinates global->sector
152   *x = X * fCosAlpha + Y * fSinAlpha;
153   *y = Y * fCosAlpha - X * fSinAlpha;
154   *z = Z;
155 }
156
157 GPUdi() float AliHLTTPCCAParam::GetClusterError2( int yz, int type, float z, float angle ) const
158 {
159   //* recalculate the cluster error wih respect to the track slope
160
161   float angle2 = angle * angle;
162   const float *c = fParamS0Par[yz][type];
163   float v = c[0] + z * ( c[1] + c[3] * z ) + angle2 * ( c[2] + angle2 * c[4] + c[5] * z );
164   return CAMath::Abs( v );
165 }
166
167 GPUdi() void AliHLTTPCCAParam::GetClusterErrors2( int iRow, float z, float sinPhi, float cosPhi, float DzDs, float &Err2Y, float &Err2Z ) const
168 {
169   //
170   // Use calibrated cluster error from OCDB
171   //
172
173   z = CAMath::Abs( ( 250. - 0.275 ) - CAMath::Abs( z ) );
174   int    type = ( iRow < 63 ) ? 0 : ( ( iRow > 126 ) ? 1 : 2 );
175   float cosPhiInv = CAMath::Abs( cosPhi ) > 1.e-2 ? 1. / cosPhi : 0;
176   float angleY = sinPhi * cosPhiInv ; // dy/dx
177   float angleZ = DzDs * cosPhiInv ; // dz/dx
178
179   Err2Y = GetClusterError2( 0, type, z, angleY );
180   Err2Z = GetClusterError2( 1, type, z, angleZ );
181 }
182
183 GPUdi() void AliHLTTPCCAParam::GetClusterErrors2v1( int rowType, float z, float sinPhi, float cosPhi, float DzDs, float &Err2Y, float &Err2Z ) const
184 {
185   //
186   // Use calibrated cluster error from OCDB
187   //
188
189   z = CAMath::Abs( ( 250. - 0.275 ) - CAMath::Abs( z ) );
190   float cosPhiInv = CAMath::Abs( cosPhi ) > 1.e-2 ? 1. / cosPhi : 0;
191   float angleY = sinPhi * cosPhiInv ; // dy/dx
192   float angleZ = DzDs * cosPhiInv ; // dz/dx
193
194   Err2Y = GetClusterError2( 0, rowType, z, angleY );
195   Err2Z = GetClusterError2( 1, rowType, z, angleZ );
196 }
197
198 #ifndef HLTCA_GPUCODE
199 GPUh() void AliHLTTPCCAParam::WriteSettings( std::ostream &out ) const
200 {
201   // write settings to the file
202   out << fISlice << std::endl;
203   out << fNRows << std::endl;
204   out << fAlpha << std::endl;
205   out << fDAlpha << std::endl;
206   out << fCosAlpha << std::endl;
207   out << fSinAlpha << std::endl;
208   out << fAngleMin << std::endl;
209   out << fAngleMax << std::endl;
210   out << fRMin << std::endl;
211   out << fRMax << std::endl;
212   out << fZMin << std::endl;
213   out << fZMax << std::endl;
214   out << fErrX << std::endl;
215   out << fErrY << std::endl;
216   out << fErrZ << std::endl;
217   out << fPadPitch << std::endl;
218   out << fBzkG << std::endl;
219   out << fHitPickUpFactor << std::endl;
220   out << fMaxTrackMatchDRow << std::endl;
221   out << fTrackConnectionFactor << std::endl;
222   out << fTrackChiCut << std::endl;
223   out << fTrackChi2Cut << std::endl;
224   for ( int iRow = 0; iRow < fNRows; iRow++ ) {
225     out << fRowX[iRow] << std::endl;
226   }
227   out << std::endl;
228   for ( int i = 0; i < 2; i++ )
229     for ( int j = 0; j < 3; j++ )
230       for ( int k = 0; k < 7; k++ )
231         out << fParamS0Par[i][j][k] << std::endl;
232   out << std::endl;
233 }
234
235 GPUh() void AliHLTTPCCAParam::ReadSettings( std::istream &in )
236 {
237   // Read settings from the file
238
239   in >> fISlice;
240   in >> fNRows;
241   in >> fAlpha;
242   in >> fDAlpha;
243   in >> fCosAlpha;
244   in >> fSinAlpha;
245   in >> fAngleMin;
246   in >> fAngleMax;
247   in >> fRMin;
248   in >> fRMax;
249   in >> fZMin;
250   in >> fZMax;
251   in >> fErrX;
252   in >> fErrY;
253   in >> fErrZ;
254   in >> fPadPitch;
255   in >> fBzkG;
256   in >> fHitPickUpFactor;
257   in >> fMaxTrackMatchDRow;
258   in >> fTrackConnectionFactor;
259   in >> fTrackChiCut;
260   in >> fTrackChi2Cut;
261   for ( int iRow = 0; iRow < fNRows; iRow++ ) {
262     in >> fRowX[iRow];
263   }
264   for ( int i = 0; i < 2; i++ )
265     for ( int j = 0; j < 3; j++ )
266       for ( int k = 0; k < 7; k++ )
267         in >> fParamS0Par[i][j][k];
268 }
269 #endif