]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCClusterDataFormat.h
Updates in D-meson PID class:
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCClusterDataFormat.h
index 1a4ccc6221acff99731bf2842f3871f460421845..9ef383e4ed9664ef1fa1dfa2d24dc19fbde30059 100644 (file)
@@ -1,16 +1,28 @@
+// $Id$
 #ifndef _ALIHLTTPCCLUSTERFORMAT_H_
 #define _ALIHLTTPCCLUSTERFORMAT_H_
 
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
+//* This file is property of and copyright by the ALICE HLT Project        * 
+//* ALICE Experiment at CERN, All rights reserved.                         *
 
-/* AliHLTTPCClusterData
- */
+#include "AliHLTTPCSpacePointData.h"
 
+/**
+ * @struct AliHLTTPCClusterData
+ * Primitive data exchange structure for TPC clusters.
+ * The data format contains one 32bit count member and the array
+ * of spacepoint data structures.
+ *
+ * @ingroup alihlt_tpc_datastructs
+ */
 struct AliHLTTPCClusterData
     {
        AliHLTUInt32_t fSpacePointCnt;
-       AliL3SpacePointData fSpacePoints[];
+#if !defined(__SUNPRO_CC) && !defined(__clang__)
+       AliHLTTPCSpacePointData fSpacePoints[];
+#else
+       AliHLTTPCSpacePointData fSpacePoints[1];
+#endif
     };
 
 #endif // _ALIHLTTPCCLUSTERFORMAT_H_