]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/AliHLTTPCSpacePointData.h
Jochen's TPCLib source code from Jan 2006 merged
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCSpacePointData.h
1 // @(#) $Id$
2
3 #ifndef SPACEPOINTDATA_H
4 #define SPACEPOINTDATA_H
5
6 #include "AliHLTTPCRootTypes.h"
7 struct AliHLTTPCSpacePointData{
8 #ifdef do_mc
9   Int_t fTrackID[3];
10 #endif
11   Float_t fX;  //==fPadRow in local system
12   Float_t fY;  
13   Float_t fZ;
14   UInt_t fID;  //contains slice patch and number
15   UChar_t fPadRow;
16   Float_t fSigmaY2; //error (former width) of the clusters
17   Float_t fSigmaZ2; //error (former width) of the clusters
18   UInt_t fCharge;
19   Bool_t fUsed;     // only used in AliHLTTPCDisplay 
20   Int_t fTrackN;    // only used in AliHLTTPCDisplay 
21 };
22 typedef struct AliHLTTPCSpacePointData AliHLTTPCSpacePointData;
23
24
25 #endif /* SPACEPOINTDATA_H */