]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/ITS/AliL3ITStracker.h
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / ITS / AliL3ITStracker.h
diff --git a/HLT/ITS/AliL3ITStracker.h b/HLT/ITS/AliL3ITStracker.h
deleted file mode 100644 (file)
index a7efbd8..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef ALIL3ITSTRACKER_H
-#define ALIL3ITSTRACKER_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-//-------------------------------------------------------------------------
-//                          High Level Trigger ITS tracker
-//     reads AliITSclusterV2 clusters and HLT tracks as input and creates 
-//       AliITStrackV2 tracks which then can be stored to the HLT ESD.
-//     The class inheritates all the main features of the off-line
-//       AliITStrackerV2 with some changes in order to load the HLT tracks
-//       instead of the off-line TPC tracks. For time performance reasons
-//       the tracker is supposed to perform only one reconstruction pass
-//       and eventually propagate the tracks back to TPC inner border.
-//       For detals how to use it, see RunHLTITS.C macro.
-//      
-//           Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch 
-//-------------------------------------------------------------------------
-
-#include "AliITStrackerV2.h"
-
-class AliESD;
-class AliITSgeom;
-class AliL3ITStrack;
-
-//-------------------------------------------------------------------------
-class AliL3ITStracker : public AliITStrackerV2 {
-public:
-  AliL3ITStracker():AliITStrackerV2(){ fConstraint[0]=1; fConstraint[1]=0; }
-  AliL3ITStracker(const AliITSgeom *geom) : AliITStrackerV2(geom){ fConstraint[0]=1; fConstraint[1]=0; }
-
-  Int_t Clusters2Tracks(AliESD *event);
-  Int_t PropagateBack(AliESD *event);
-  Int_t RefitInward(AliESD *event);
-
-  ClassDef(AliL3ITStracker,1)   //HLT ITS tracker
-};
-
-#endif