]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EVE/hlt-macros/hlt_structs.C
Add class and function docs.
[u/mrichter/AliRoot.git] / EVE / hlt-macros / hlt_structs.C
... / ...
CommitLineData
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 *
7 * full copyright notice. *
8 **************************************************************************/
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
17 Float_t fY;
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;
24 Bool_t fUsed; // only used in AliHLTTPCDisplay
25 Int_t fTrackN; // only used in AliHLTTPCDisplay
26};
27
28struct AliHLTTPCClusterData
29{
30 Int_t fSpacePointCnt;
31 AliHLTTPCSpacePointData fSpacePoints[1];
32};
33
34void hlt_structs()
35{}