]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/Ref/AliHLTTPCConfMapFit.h
Added a Makefile with rules for component libraries conforming to the
[u/mrichter/AliRoot.git] / HLT / TPCLib / Ref / AliHLTTPCConfMapFit.h
CommitLineData
78001a73 1// @(#) $Id$
2
3#ifndef ALIHLTTPC_ConfMapFit
4#define ALIHLTTPC_ConfMapFit
5
6#include "AliHLTTPCRootTypes.h"
7
8class AliHLTTPCConfMapTrack;
9class AliHLTTPCVertex;
10
11class 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