]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3ConfMapFit.h
Added getter GetNRows()
[u/mrichter/AliRoot.git] / HLT / src / AliL3ConfMapFit.h
CommitLineData
108615fc 1#ifndef ALIL3_ConfMapFit
2#define ALIL3_ConfMapFit
3
4#include "AliL3RootTypes.h"
5
6class AliL3ConfMapTrack;
7class AliL3Vertex;
8
9class AliL3ConfMapFit {
10
11 private:
12 AliL3ConfMapTrack *fTrack; //!
13 AliL3Vertex *fVertex; //!
14 Double_t BFACT;
9392f4fd 15
108615fc 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