]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/ITS/AliL3ITStrack.h
New version of SPD raw-data reconstruction. The format now correponds to the actual...
[u/mrichter/AliRoot.git] / HLT / ITS / AliL3ITStrack.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 AliL3ITStrack : public AliITStrackV2 {
22 public:
23   AliL3ITStrack();
24   AliL3ITStrack(AliESDtrack& t);
25   AliL3ITStrack(const AliL3ITStrack& t);
26
27   Int_t Compare(const TObject *o) const;
28
29   ClassDef(AliL3ITStrack,2)   //HLT ITS reconstructed track
30 };
31
32 #endif