]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCSpacePointData.h
update
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCSpacePointData.h
CommitLineData
a6c02c85 1// @(#) $Id$
4aa41877 2// Original: AliHLTSpacePointData.h,v 1.4 2003/07/27 21:02:09 loizides
a6c02c85 3
4#ifndef SPACEPOINTDATA_H
5#define SPACEPOINTDATA_H
6
7#include "AliHLTTPCRootTypes.h"
297174de 8
9/**
10 * @struct AliHLTTPCSpacePointData
11 * Primitive data exchange structure for TPC clusters.
12 * Together with the AliHLTTPCClusterDataFormat this defines
13 * the output of the TPC online Cluster Finder.
14 *
2ce3159d 15 * To translate between local coordinates, global coordinates, and row-pad-time coordinates
16 * one cann use AliHLTTPCTransform.
17 *
18 * See AliHLTTPCClusterFinder::WriteClusters() for example.
19 *
297174de 20 * @ingroup alihlt_tpc_datastructs
21 */
a6c02c85 22struct AliHLTTPCSpacePointData{
2ce3159d 23 Float_t fX; // X coordinate in local coordinates
24 Float_t fY; // Y coordinate in local coordinates
25 Float_t fZ; // Z coordinate in local coordinates
26 UInt_t fID; // contains slice patch and number
27 UChar_t fPadRow; // Pad row number
28 Float_t fSigmaY2; // error (former width) of the clusters
29 Float_t fSigmaZ2; // error (former width) of the clusters
30 UInt_t fCharge; // total charge of cluster
a912b63b 31 UInt_t fQMax; // QMax of cluster
44be0fde 32 Bool_t fUsed; // only used in AliHLTTPCDisplay
738c049f 33 Int_t fTrackN; // only used in AliHLTTPCDisplay
a6c02c85 34};
35typedef struct AliHLTTPCSpacePointData AliHLTTPCSpacePointData;
36
37
38#endif /* SPACEPOINTDATA_H */