]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCClusterDataFormat.h
Updated SNM Glauber fit
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCClusterDataFormat.h
CommitLineData
297174de 1// $Id$
71d7c760 2#ifndef _ALIHLTTPCCLUSTERFORMAT_H_
3#define _ALIHLTTPCCLUSTERFORMAT_H_
4
297174de 5//* This file is property of and copyright by the ALICE HLT Project *
6//* ALICE Experiment at CERN, All rights reserved. *
71d7c760 7
5df0cbb9 8#include "AliHLTTPCSpacePointData.h"
9
297174de 10/**
11 * @struct AliHLTTPCClusterData
12 * Primitive data exchange structure for TPC clusters.
13 * The data format contains one 32bit count member and the array
14 * of spacepoint data structures.
15 *
16 * @ingroup alihlt_tpc_datastructs
71d7c760 17 */
71d7c760 18struct AliHLTTPCClusterData
19 {
20 AliHLTUInt32_t fSpacePointCnt;
66b7af32 21#if defined(__HP_aCC) || defined(__DECCXX) || defined(__SUNPRO_CC)
e83e889b 22 AliHLTTPCSpacePointData fSpacePoints[1];
66b7af32 23#else
24 AliHLTTPCSpacePointData fSpacePoints[0];
e83e889b 25#endif
71d7c760 26 };
27
28#endif // _ALIHLTTPCCLUSTERFORMAT_H_