]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/hlt-macros/hlt_structs.C
Add class and function docs.
[u/mrichter/AliRoot.git] / EVE / hlt-macros / hlt_structs.C
CommitLineData
d810d0de 1// $Id$
2// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4/**************************************************************************
5 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
51346b82 7 * full copyright notice. *
d810d0de 8 **************************************************************************/
87f60d9e 9#include <Rtypes.h>
10
11struct AliHLTTPCSpacePointData
12{
13 //#ifdef do_mc
14 //Int_t fTrackID[3];
15 //#endif
16 Float_t fX; //==fPadRow in local system
51346b82 17 Float_t fY;
87f60d9e 18 Float_t fZ;
19 UInt_t fID; //contains slice patch and number
20 UChar_t fPadRow;
21 Float_t fSigmaY2; //error (former width) of the clusters
22 Float_t fSigmaZ2; //error (former width) of the clusters
23 UInt_t fCharge;
51346b82 24 Bool_t fUsed; // only used in AliHLTTPCDisplay
25 Int_t fTrackN; // only used in AliHLTTPCDisplay
87f60d9e 26};
27
28struct AliHLTTPCClusterData
29{
30 Int_t fSpacePointCnt;
31 AliHLTTPCSpacePointData fSpacePoints[1];
32};
33
34void hlt_structs()
35{}