]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/global/AliFlatExternalTrackParam.h
small fixes to make the coverter work
[u/mrichter/AliRoot.git] / HLT / global / AliFlatExternalTrackParam.h
1 #ifndef ALIFLATEXTERNALTRACKPARAM_H
2 #define ALIFLATEXTERNALTRACKPARAM_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               *
6  * Primary Authors : Sergey Gorbunov, Jochen Thaeder, Chiara Zampolli     */
7
8 /**
9  * >> Flat structure representing parameters of an external track  <<
10  */
11
12 #include "Rtypes.h"
13 #include "AliVVexternalTrackParam.h"
14
15 class AliFlatExternalTrackParam: public AliVVexternalTrackParam
16 {
17   public:
18   AliFlatExternalTrackParam() {}
19   AliFlatExternalTrackParam(Bool_t) {}
20   virtual ~AliFlatExternalTrackParam() {}
21   Float_t fAlpha;     // azimuthal angle of reference frame
22   Float_t fX;         // x: radial distance
23   Float_t fY;         // local Y-coordinate of a track (cm)
24   Float_t fZ;         // local Z-coordinate of a track (cm)
25   Float_t fSnp;       // local sine of the track momentum azimuthal angle
26   Float_t fTgl;       // tangent of the track momentum dip angle
27   Float_t fSigned1Pt; // 1/pt (1/(GeV/c))
28   Float_t fC[15];     // covariance matrix
29
30   void SetAlpha(Float_t alpha)             {fAlpha = alpha;}
31   void SetX(Float_t x)                     {fX = x;}
32   void SetY(Float_t y)                     {fY = y;}
33   void SetZ(Float_t z)                     {fZ = z;}
34   void SetSnp(Float_t snp)                 {fSnp = snp;}
35   void SetTgl(Float_t tgl)                 {fTgl = tgl;}
36   void SetSigned1Pt(Float_t signed1Pt)     {fSigned1Pt = signed1Pt;}
37   void SetCovEntry(Int_t idx, Float_t cov) {(idx >= 0 && idx < 15) ? fC[idx] = cov : 0.;}
38
39   Float_t  GetAlpha()             const {return fAlpha;}
40   Float_t  GetX()                 const {return fX;}
41   Float_t  GetY()                 const {return fY;}
42   Float_t  GetZ()                 const {return fZ;}
43   Float_t  GetSnp()               const {return fSnp;}
44   Float_t  GetTgl()               const {return fTgl;}
45   Float_t  GetSigned1Pt()         const {return fSigned1Pt;}
46   Float_t* GetCov()               const {return const_cast<Float_t*>(fC);}
47   Float_t  GetCovEntry(Int_t idx) const {return (idx >= 0 && idx < 15) ? fC[idx] : 0.;}
48 };
49
50 //typedef struct AliFlatExternalTrackParam AliFlatExternalTrackParam;
51
52 #endif