]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/AliHLTTPCConfMapFit.h
Imported files from the existing L3 code directories (../src, ../comp,
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapFit.h
1 // @(#) $Id$
2
3 #ifndef ALIHLTTPC_ConfMapFit
4 #define ALIHLTTPC_ConfMapFit
5
6 class AliHLTTPCConfMapTrack;
7 class AliHLTTPCVertex;
8
9 class AliHLTTPCConfMapFit {
10
11  private:
12   AliHLTTPCConfMapTrack *fTrack; //!
13   AliHLTTPCVertex *fVertex; //!
14   
15  public:
16   AliHLTTPCConfMapFit (AliHLTTPCConfMapTrack *track,AliHLTTPCVertex *vertex);
17   virtual ~AliHLTTPCConfMapFit() {};
18
19   Int_t FitHelix();
20   Int_t FitCircle();
21   Int_t FitLine();
22
23   ClassDef(AliHLTTPCConfMapFit,1) //Conformal mapping fit class
24 };
25
26 #endif