]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/ITS/tracking/AliHLTITSTrackData.h
AliHLTVertexer is moved from ITS/tracking/. to global/.
[u/mrichter/AliRoot.git] / HLT / ITS / tracking / AliHLTITSTrackData.h
1 #ifndef ALIHLTITSTRACKDATA_H
2 #define ALIHLTITSTRACKDATA_H
3
4 //* This file is property of and copyright by the ALICE HLT Project        * 
5 //* ALICE Experiment at CERN, All rights reserved.                         *
6 //* See cxx source for full Copyright notice                               *
7
8 #include "AliHLTTPCRootTypes.h"
9 #include "AliExternalTrackParam.h"
10
11 /**
12  * @struct AliHLTTPCTrackSegmentData
13  * Primitive data exchange structure for TPC tracks.
14  *
15  * @ingroup alihlt_tpc_datastructs
16  */
17 struct AliHLTITSTrackData
18 {
19   AliExternalTrackParam fTrackParam; // track parameters in ITS
20   Int_t fTPCId; // Id of the corresponding TPC track
21   Int_t fClusterIds[6]; // Id's of the associated ITS clusters
22 };
23
24 typedef struct AliHLTITSTrackData AliHLTITSTrackData;
25
26 #endif /* _ALIHLTITSTRACKDATA_H_ */