]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/tracking/AliHLTTPCHoughTracker.h
New class AliESDEvent, backward compatibility with the old AliESD (Christian)
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking / AliHLTTPCHoughTracker.h
index 971acfb069d07fc36eb1d20eb74dd3818aa6f85a..fd0ad0fb3453845483a0aa47b9e4b89a7bfb1184 100644 (file)
@@ -3,9 +3,15 @@
 
 #ifndef ALIL3TPCHOUGHTRACKER_H
 #define ALIL3TPCHOUGHTRACKER_H
+
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+/** @file   AliHLTTPCHoughTracker.h
+    @author Cvetan Cheshkov
+    @date   
+    @brief  Implementation of the HLT TPC hough transform tracker. */
+
 //-------------------------------------------------------------------------
 //                          High Level Trigger TPC tracker
 //       This class encapsulates the Hough transform HLT tracking
 //-------------------------------------------------------------------------
 
 #include "AliTracker.h"
-#include "AliLog.h"
-
-#include "AliHLTTransform.h"
 
 class AliRunLoader;
-class AliESD;
+class AliESDEvent;
 
 //-------------------------------------------------------------------------
 class AliHLTTPCHoughTracker : public AliTracker {
 public:
   AliHLTTPCHoughTracker(AliRunLoader *runLoader);
 
-  Int_t Clusters2Tracks(AliESD *event);
+  Int_t Clusters2Tracks(AliESDEvent *event);
 
-  Int_t PropagateBack(AliESD */*event*/) {return 0;}
-  Int_t RefitInward(AliESD */*event*/) {return 0;}
+  Int_t PropagateBack(AliESDEvent */*event*/) {return 0;}
+  Int_t RefitInward(AliESDEvent */*event*/) {return 0;}
   Int_t LoadClusters(TTree */*cf*/) {return 0;}
   void  UnloadClusters() {return;}
 
@@ -46,6 +49,4 @@ private:
   ClassDef(AliHLTTPCHoughTracker,1)   //HLT TPC Hough tracker
 };
 
-typedef AliHLTTPCtracker AliL3TPCtracker; // for backward compatibility
-
 #endif