]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCConfMapFit.h
- configure adapted to the new directory structure of the HOMER module in PubSub
[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
db16520a 20 // helix fit
a6c02c85 21 Int_t FitHelix();
22 Int_t FitCircle();
23 Int_t FitLine();
24
db16520a 25 // straight line fit
26 Int_t FitStraightLine();
27 Int_t FitLineXY();
28 Int_t FitLineSZ();
29
a6c02c85 30 ClassDef(AliHLTTPCConfMapFit,1) //Conformal mapping fit class
31};
32
33#endif