]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/ITS/AliHLTITStrack.h
Removing AliITSgeom dependencies from the old ITS clusterer V2 and the corresponding...
[u/mrichter/AliRoot.git] / HLT / ITS / AliHLTITStrack.h
1 #ifndef ALIL3ITSTRACK_H
2 #define ALIL3ITSTRACK_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //-------------------------------------------------------------------------
7 //                  High Level Trigger ITS Track Class
8 //
9 //        Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch 
10 //-------------------------------------------------------------------------
11
12
13 /*****************************************************************************
14  *                          October 11, 2004                                 *
15  * The class inherits all the properties of the off-line AliITStrackV2 class *
16  * and in addition it contains an interface to the HLT ESD track             *
17  *****************************************************************************/
18
19 #include <AliITStrackV2.h>
20
21 class AliHLTITStrack : public AliITStrackV2 {
22 public:
23   AliHLTITStrack();
24   AliHLTITStrack(AliESDtrack& t);
25   AliHLTITStrack(const AliHLTITStrack& t);
26
27   Int_t Compare(const TObject *o) const;
28
29   ClassDef(AliHLTITStrack,2)   //HLT ITS reconstructed track
30 };
31
32 typedef AliHLTITStrack AliL3ITStrack; // for backward compatibility
33
34 #endif