]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3ConfMapFit.h
Additional protection
[u/mrichter/AliRoot.git] / HLT / src / AliL3ConfMapFit.h
1 // @(#) $Id$
2
3 #ifndef ALIL3_ConfMapFit
4 #define ALIL3_ConfMapFit
5
6 class AliL3ConfMapTrack;
7 class AliL3Vertex;
8
9 class AliL3ConfMapFit {
10
11  private:
12   AliL3ConfMapTrack *fTrack; //!
13   AliL3Vertex *fVertex; //!
14   
15  public:
16   AliL3ConfMapFit (AliL3ConfMapTrack *track,AliL3Vertex *vertex);
17   virtual ~AliL3ConfMapFit() {};
18
19   Int_t FitHelix();
20   Int_t FitCircle();
21   Int_t FitLine();
22
23   ClassDef(AliL3ConfMapFit,1) //Conformal mapping fit class
24 };
25
26 #endif