]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/hough/AliHLTHoughKalmanTrack.cxx
STEERBase added to include path
[u/mrichter/AliRoot.git] / HLT / hough / AliHLTHoughKalmanTrack.cxx
... / ...
CommitLineData
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// Implementation of the HLT TPC Hough Kalman track class
18//
19// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
20//-------------------------------------------------------------------------
21
22#include "AliHLTHoughKalmanTrack.h"
23
24#include "AliHLTStandardIncludes.h"
25#include "AliHLTHoughTrack.h"
26#include "AliHLTHoughBaseTransformer.h"
27#include "AliHLTHoughTransformerRow.h"
28#include "AliHLTHistogram.h"
29
30Int_t CalcExternalParams(const AliHLTHoughTrack& t, Double_t deltax, Double_t deltay, Double_t deltaeta, const Double_t zvertex, const Double_t xhit, Double_t xx[5]);
31
32ClassImp(AliHLTHoughKalmanTrack)
33
34//____________________________________________________________________________
35AliHLTHoughKalmanTrack::AliHLTHoughKalmanTrack(const AliHLTHoughTrack& t) throw (const Char_t *)
36 : AliTPCtrack()
37{
38 // The method constructs an AliHLTHoughKalmanTrack object
39 // from an HLT Hough track
40
41 SetChi2(0.);
42 SetNumberOfClusters(t.GetLastRow()-t.GetFirstRow());
43 SetLabel(t.GetMCid());
44 SetFakeRatio(0.);
45 SetMass(0.13957);
46
47 fdEdx=0;
48 Double_t alpha = fmod((t.GetSector()+0.5)*(2*TMath::Pi()/18),2*TMath::Pi());
49 if (alpha < -TMath::Pi()) alpha += 2*TMath::Pi();
50 else if (alpha >= TMath::Pi()) alpha -= 2*TMath::Pi();
51
52 const Double_t xhit = 82.97;
53 const Double_t zvertex = t.GetFirstPointZ();
54 Double_t par[5];
55 Double_t deltax = t.GetPterr();
56 Double_t deltay = t.GetPsierr();
57 Double_t deltaeta = t.GetTglerr();
58 if(CalcExternalParams(t,0,0,0,zvertex,xhit,par)==0) throw "AliHLTHoughKalmanTrack: conversion failed !\n";
59
60 Double_t cnv=1./(GetBz()*kB2C);
61
62 //and covariance matrix
63 //For the moment estimate the covariance matrix numerically
64 Double_t xx1[5];
65 if(CalcExternalParams(t,deltax,0,0,zvertex,xhit,xx1)==0) throw "AliHLTHoughKalmanTrack: conversion failed !\n";
66 Double_t xx2[5];
67 if(CalcExternalParams(t,0,deltay,0,zvertex,xhit,xx2)==0) throw "AliHLTHoughKalmanTrack: conversion failed !\n";
68 Double_t xx3[5];
69 if(CalcExternalParams(t,0,0,deltaeta,zvertex,xhit,xx3)==0) throw "AliHLTHoughKalmanTrack: conversion failed !\n";
70
71 Double_t dx1[5],dx2[5],dx3[5];
72 for(Int_t i=0;i<5;i++) {
73 dx1[i]=xx1[i]-par[i];
74 dx2[i]=xx2[i]-par[i];
75 dx3[i]=xx3[i]-par[i];
76 }
77
78 Double_t cov[15]={
79 dx1[0]*dx1[0]+dx2[0]*dx2[0],
80 0., dx3[1]*dx3[1],
81 0., 0., dx1[2]*dx1[2]+dx2[2]*dx2[2],
82 0., dx3[3]*dx3[1], 0., dx3[3]*dx3[3],
83 0., 0., 0., 0., dx1[4]*dx1[4]+dx2[4]*dx2[4]
84 };
85 /*
86 fC20=dx1[2]*dx1[0]+dx2[2]*dx2[0];
87 fC40=dx1[4]*dx1[0]+dx2[4]*dx2[0];
88 fC42=dx1[4]*dx1[2]+dx2[4]*dx2[2];
89 fC33=dx3[3]*dx3[3];
90 fC11=dx3[1]*dx3[1];
91 fC31=dx3[3]*dx3[1];
92 fC10=fC30=fC21=fC41=fC32=fC43=0;
93 fC20=fC42=fC40=0;
94 */
95 cov[10]*=cnv; cov[11]*=cnv; cov[12]*=cnv; cov[13]*=cnv; cov[14]*=(cnv*cnv);
96 par[4]*=cnv;
97
98 Set(xhit,alpha,par,cov);
99
100}
101
102//____________________________________________________________________________
103Int_t CalcExternalParams(const AliHLTHoughTrack& t, Double_t deltax, Double_t deltay, Double_t deltaeta, const Double_t zvertex, const Double_t xhit, Double_t xx[5])
104{
105 // Translate the parameters of the Hough tracks into
106 // AliKalmanTrack paramters
107
108 //First get the emiision angle and track curvature
109 Double_t binx = t.GetBinX()+deltax;
110 Double_t biny = t.GetBinY()+deltay;
111 Double_t psi = atan((binx-biny)/(AliHLTHoughTransformerRow::GetBeta1()-AliHLTHoughTransformerRow::GetBeta2()));
112 Double_t kappa = 2.0*(binx*cos(psi)-AliHLTHoughTransformerRow::GetBeta1()*sin(psi));
113 Double_t radius = 1./kappa;
114
115 //Local y coordinate
116 Double_t centerx = -1.*radius*sin(psi);
117 Double_t centery = radius*cos(psi);
118 Double_t aa = (xhit - centerx)*(xhit - centerx);
119 Double_t r2 = radius*radius;
120 if(aa > r2) return 0;
121 Double_t aa2 = sqrt(r2 - aa);
122 Double_t y1 = centery + aa2;
123 Double_t y2 = centery - aa2;
124 Double_t yhit = y1;
125 if(fabs(y2) < fabs(y1)) yhit = y2;
126
127 //Local z coordinate
128 Double_t stot = sqrt(xhit*xhit+yhit*yhit);
129 Double_t zhit;
130
131 //Lambda
132 Double_t eta=t.GetPseudoRapidity()+deltaeta;
133 Double_t theta = 2*atan(exp(-1.*eta));
134 Double_t tanl = 1./tan(theta);
135 zhit = zvertex + stot*tanl;
136
137 xx[0] = yhit;
138 xx[1] = zhit;
139 xx[2] = (xhit-centerx)/radius;
140 xx[3] = tanl;
141 xx[4] = kappa;
142 return 1;
143}