]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCConfMapFit.h
code changes by Gaute Ovrebekk
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapFit.h
CommitLineData
a6c02c85 1// @(#) $Id$
c2f37813 2// Original: AliL3ConfMapFit.h,v 1.5 2004/07/05 09:03:11 loizides
a6c02c85 3
4#ifndef ALIHLTTPC_ConfMapFit
5#define ALIHLTTPC_ConfMapFit
6
7class AliHLTTPCConfMapTrack;
8class AliHLTTPCVertex;
9
10class AliHLTTPCConfMapFit {
11
12 private:
13 AliHLTTPCConfMapTrack *fTrack; //!
14 AliHLTTPCVertex *fVertex; //!
15
16 public:
17 AliHLTTPCConfMapFit (AliHLTTPCConfMapTrack *track,AliHLTTPCVertex *vertex);
18 virtual ~AliHLTTPCConfMapFit() {};
19
20 Int_t FitHelix();
21 Int_t FitCircle();
22 Int_t FitLine();
23
24 ClassDef(AliHLTTPCConfMapFit,1) //Conformal mapping fit class
25};
26
27#endif