]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/Ref/AliHLTTPCConfMapFit.h
Added data members to the track segment data structure to make
[u/mrichter/AliRoot.git] / HLT / TPCLib / Ref / AliHLTTPCConfMapFit.h
1 // @(#) $Id$
2
3 #ifndef ALIHLTTPC_ConfMapFit
4 #define ALIHLTTPC_ConfMapFit
5
6 #include "AliHLTTPCRootTypes.h"
7
8 class AliHLTTPCConfMapTrack;
9 class AliHLTTPCVertex;
10
11 class AliHLTTPCConfMapFit {
12
13  private:
14   AliHLTTPCConfMapTrack *fTrack; //!
15   AliHLTTPCVertex *fVertex; //!
16   Double_t BFACT;
17   
18   static Double_t pi;
19
20  public:
21   AliHLTTPCConfMapFit (AliHLTTPCConfMapTrack *track,AliHLTTPCVertex *vertex);
22   virtual ~AliHLTTPCConfMapFit() {};
23
24   Int_t FitHelix();
25   Int_t FitCircle();
26   Int_t FitLine();
27
28   ClassDef(AliHLTTPCConfMapFit,1) //Conformal mapping fit class
29 };
30
31 #endif