]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/ITS/tracking/AliHLTITSTrackDataHeader.h
AliHLTVertexer is moved from ITS/tracking/. to global/.
[u/mrichter/AliRoot.git] / HLT / ITS / tracking / AliHLTITSTrackDataHeader.h
1 #ifndef _ALIHLTITSTRACKDATAHEADER_HPP_
2 #define _ALIHLTITSTRACKDATAHEADER_HPP_
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 "AliHLTDataTypes.h"
9 #include "AliHLTITSTrackData.h"
10
11 /**
12  * @struct AliHLTITSTrackDataHeader
13  * Primitive data exchange structure for ITS tracks.
14  *
15  * @ingroup alihlt_tpc_datastructs
16  */
17 struct AliHLTITSTrackDataHeader
18 {
19   AliHLTUInt32_t fTrackletCnt;
20 #ifndef __SUNPRO_CC
21   AliHLTITSTrackData fTracks[];
22 #else
23   AliHLTITSTrackData fTracks[1];
24 #endif
25 };
26
27 typedef struct AliHLTITSTrackDataHeader AliHLTITSTrackDataHeader;
28
29 #endif // _ALIHLTITSTRACKDATAHEADER_HPP_