]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/hlt-macros/hlt_structs.C
New files: macros needed to startup and steer the HLT display.
[u/mrichter/AliRoot.git] / EVE / hlt-macros / hlt_structs.C
CommitLineData
87f60d9e 1#include <Rtypes.h>
2
3struct AliHLTTPCSpacePointData
4{
5 //#ifdef do_mc
6 //Int_t fTrackID[3];
7 //#endif
8 Float_t fX; //==fPadRow in local system
9 Float_t fY;
10 Float_t fZ;
11 UInt_t fID; //contains slice patch and number
12 UChar_t fPadRow;
13 Float_t fSigmaY2; //error (former width) of the clusters
14 Float_t fSigmaZ2; //error (former width) of the clusters
15 UInt_t fCharge;
16 Bool_t fUsed; // only used in AliHLTTPCDisplay
17 Int_t fTrackN; // only used in AliHLTTPCDisplay
18};
19
20struct AliHLTTPCClusterData
21{
22 Int_t fSpacePointCnt;
23 AliHLTTPCSpacePointData fSpacePoints[1];
24};
25
26void hlt_structs()
27{}