]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCDefinitions.h
coding conventions and documentation
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCDefinitions.h
index 2c2bc2dfdca2dcf88b7899940a327e079d00f9a2..3d4e9a47a4d5e8c7250af5708a6d06f95b0d0f52 100644 (file)
  */
 
 #include "AliHLTDataTypes.h"
-#include "TObject.h"
+#include "Rtypes.h"
 
 class AliHLTTPCDefinitions
-    {
-    public:
+{
+public:
       AliHLTTPCDefinitions();
       virtual ~AliHLTTPCDefinitions();
 
@@ -59,18 +59,23 @@ class AliHLTTPCDefinitions
                return ((maxSliceNr & 0xFF) << 24) | ((minSliceNr & 0xFF) << 16) | ((maxPatchNr & 0xFF) << 8) | ((minPatchNr & 0xFF));
                }
 
-       static const AliHLTComponentDataType gkDDLPackedRawDataType;
-       static const AliHLTComponentDataType gkPackedRawDataType;
-       static const AliHLTComponentDataType gkUnpackedRawDataType;
-       static const AliHLTComponentDataType gkClustersDataType;
-      /** track segments in local coordinates */
-       static const AliHLTComponentDataType gkTrackSegmentsDataType;
-      /** tracks in global koordinates */
-       static const AliHLTComponentDataType gkTracksDataType;
-       static const AliHLTComponentDataType gkVertexDataType;
+  /** DDL packed RAW data */
+  static const AliHLTComponentDataType fgkDDLPackedRawDataType;    // see above
+  /** packed RAW data */
+  static const AliHLTComponentDataType fgkPackedRawDataType;       // see above
+  /** unpacked RAW data */
+  static const AliHLTComponentDataType fgkUnpackedRawDataType;     // see above
+  /** cluster data */
+  static const AliHLTComponentDataType fgkClustersDataType;        // see above
+  /** track segments in local coordinates */
+  static const AliHLTComponentDataType fgkTrackSegmentsDataType;   // see above
+  /** tracks in global koordinates */
+  static const AliHLTComponentDataType fgkTracksDataType;          // see above
+  /** vertex data structure */
+  static const AliHLTComponentDataType fgkVertexDataType;          // see above
 
-       ClassDef(AliHLTTPCDefinitions, 0)
+  ClassDef(AliHLTTPCDefinitions, 0);
 
-    };
+};
 
 #endif