]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/ITS/AliHLTITStrack.h
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / ITS / AliHLTITStrack.h
CommitLineData
9582ea1a 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
4aa41877 21class AliHLTITStrack : public AliITStrackV2 {
9582ea1a 22public:
4aa41877 23 AliHLTITStrack();
24 AliHLTITStrack(AliESDtrack& t);
25 AliHLTITStrack(const AliHLTITStrack& t);
9582ea1a 26
27 Int_t Compare(const TObject *o) const;
28
4aa41877 29 ClassDef(AliHLTITStrack,2) //HLT ITS reconstructed track
9582ea1a 30};
31
4aa41877 32typedef AliHLTITStrack AliL3ITStrack; // for backward compatibility
33
9582ea1a 34#endif