]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/tracking-ca/AliHLTTPCCATrackConvertor.h
Ensure that the ADC array is only called for valid entries (AliTRDmcmSim) and bug...
[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 #ifndef ALIHLTTPCCATRACKCONVERTOR_H
9 #define ALIHLTTPCCATRACKCONVERTOR_H
10
11 #include "AliHLTTPCCADef.h"
12
13 class AliExternalTrackParam;
14 class AliHLTTPCCATrackParam;
15
16 /**
17  * @class AliHLTTPCCATrackConvertor
18  *
19  * AliHLTTPCCATrackConvertor class converts tracks to different parameterisations
20  * it is used by the AliHLTTPCCATrackerComponent
21  *
22  */
23 class AliHLTTPCCATrackConvertor
24 {
25  public:
26
27   AliHLTTPCCATrackConvertor(){}
28
29   static void GetExtParam( const AliHLTTPCCATrackParam &T1, AliExternalTrackParam &T2, Double_t alpha, Double_t Bz );
30   static void SetExtParam( AliHLTTPCCATrackParam &T1, const AliExternalTrackParam &T2, Double_t Bz );
31
32 };
33
34
35 #endif