]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3ConfMapFit.h
fix reporting of writing speed when interrupted by signal.
[u/mrichter/AliRoot.git] / HLT / src / AliL3ConfMapFit.h
1 // @(#) $Id$
2
3 #ifndef ALIL3_ConfMapFit
4 #define ALIL3_ConfMapFit
5
6 #include "AliL3RootTypes.h"
7
8 class AliL3ConfMapTrack;
9 class AliL3Vertex;
10
11 class AliL3ConfMapFit {
12
13  private:
14   AliL3ConfMapTrack *fTrack; //!
15   AliL3Vertex *fVertex; //!
16   Double_t BFACT;
17   
18   static Double_t pi;
19
20  public:
21   AliL3ConfMapFit (AliL3ConfMapTrack *track,AliL3Vertex *vertex);
22   virtual ~AliL3ConfMapFit() {};
23
24   Int_t FitHelix();
25   Int_t FitCircle();
26   Int_t FitLine();
27
28   ClassDef(AliL3ConfMapFit,1) //Conformal mapping fit class
29 };
30
31 #endif