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