]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3ConfMapFit.h
Added the DataType2Text function to convert a datatype structure into
[u/mrichter/AliRoot.git] / HLT / src / AliL3ConfMapFit.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
108615fc 3#ifndef ALIL3_ConfMapFit
4#define ALIL3_ConfMapFit
5
108615fc 6class AliL3ConfMapTrack;
7class AliL3Vertex;
8
9class AliL3ConfMapFit {
10
11 private:
12 AliL3ConfMapTrack *fTrack; //!
13 AliL3Vertex *fVertex; //!
9392f4fd 14
108615fc 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