]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/tracking-ca/AliHLTTPCCATrackConvertor.h
6b3d6450a83650478986003f180226a266d95946
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCATrackConvertor.h
1 //-*- Mode: C++ -*-
2 // ************************************************************************
3 // This file is property of and copyright by the ALICE HLT Project        * 
4 // ALICE Experiment at CERN, All rights reserved.                         *
5 // See cxx source for full Copyright notice                               *
6 //                                                                        *
7 //*************************************************************************
8
9 #ifndef ALIHLTTPCCATRACKCONVERTOR_H
10 #define ALIHLTTPCCATRACKCONVERTOR_H
11
12 #include "AliHLTTPCCADef.h"
13
14 class AliExternalTrackParam;
15 class AliHLTTPCCATrackParam;
16
17 /**
18  * @class AliHLTTPCCATrackConvertor
19  *
20  * AliHLTTPCCATrackConvertor class converts tracks to different parameterisations
21  * it is used by the AliHLTTPCCATrackerComponent
22  *
23  */
24 class AliHLTTPCCATrackConvertor
25 {
26  public:
27
28   AliHLTTPCCATrackConvertor(){}
29
30   static void GetExtParam( const AliHLTTPCCATrackParam &T1, AliExternalTrackParam &T2, Double_t alpha, Double_t Bz );
31   static void SetExtParam( AliHLTTPCCATrackParam &T1, const AliExternalTrackParam &T2, Double_t Bz );
32
33 };
34
35
36 #endif