]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/tracking-ca/AliHLTTPCCAClusterData.h
update
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCAClusterData.h
index c2f6f0daa35cb2eb6c86ef7b9c8570b8ff6a1290..a4ad8ab43282e652f29dae5a9e6eed3fc376d18d 100644 (file)
@@ -18,7 +18,6 @@
 #define ALIHLTTPCCACLUSTERDATA_H
 
 #include <vector>
-#include "AliHLTTPCCAGBHit.h"
 #include "AliHLTArray.h"
 
 class AliHLTTPCSpacePointData;
@@ -45,13 +44,22 @@ class AliHLTTPCCAClusterData
     void readEvent( const AliHLTArray<AliHLTTPCSpacePointData *> &clusters,
                     int numberOfClusters, double ClusterZCut );
 
+    /**
+     * prepare for the reading of event
+     */
     void StartReading( int sliceIndex, int guessForNumberOfClusters = 256 );
 
+    /**
+     *  read next cluster
+     */
     void ReadCluster( int id, int iRow, float X, float Y, float Z, float Amp ) {
       Data d = { id, iRow, X, Y, Z, Amp};
       fData.push_back( d );
     }
 
+    /**
+     * finish the reading of event
+     */
     void FinishReading();