]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - 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
diff --git a/EVE/hlt-macros/hlt_structs.C b/EVE/hlt-macros/hlt_structs.C
new file mode 100644 (file)
index 0000000..f755d89
--- /dev/null
@@ -0,0 +1,27 @@
+#include <Rtypes.h>
+
+struct AliHLTTPCSpacePointData
+{
+  //#ifdef do_mc
+  //Int_t fTrackID[3];
+  //#endif
+  Float_t fX;  //==fPadRow in local system
+  Float_t fY;  
+  Float_t fZ;
+  UInt_t fID;  //contains slice patch and number
+  UChar_t fPadRow;
+  Float_t fSigmaY2; //error (former width) of the clusters
+  Float_t fSigmaZ2; //error (former width) of the clusters
+  UInt_t fCharge;
+  Bool_t fUsed;     // only used in AliHLTTPCDisplay 
+  Int_t fTrackN;    // only used in AliHLTTPCDisplay 
+};
+
+struct AliHLTTPCClusterData
+{
+  Int_t fSpacePointCnt;
+  AliHLTTPCSpacePointData fSpacePoints[1];
+};
+
+void hlt_structs()
+{}