]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCConfMapFit.h
Added files for the reference version based on an old version of Anders'
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapFit.h
CommitLineData
a6c02c85 1// @(#) $Id$
2
3#ifndef ALIHLTTPC_ConfMapFit
4#define ALIHLTTPC_ConfMapFit
5
6class AliHLTTPCConfMapTrack;
7class AliHLTTPCVertex;
8
9class 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