]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/ITS/AliHLTITStrack.h
reverting r42022, changes to be committed separately in order to disentangle backporting
[u/mrichter/AliRoot.git] / HLT / ITS / AliHLTITStrack.h
CommitLineData
d6e2c707 1//-*- Mode: C++ -*-
2// $Id$
3
4#ifndef ALIHLTITSTRACK_H
5#define ALIHLTITSTRACK_H
9582ea1a 6/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
7 * See cxx source for full Copyright notice */
8
9//-------------------------------------------------------------------------
10// High Level Trigger ITS Track Class
11//
12// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
13//-------------------------------------------------------------------------
14
15
16/*****************************************************************************
17 * October 11, 2004 *
18 * The class inherits all the properties of the off-line AliITStrackV2 class *
19 * and in addition it contains an interface to the HLT ESD track *
20 *****************************************************************************/
21
22#include <AliITStrackV2.h>
23
4aa41877 24class AliHLTITStrack : public AliITStrackV2 {
9582ea1a 25public:
4aa41877 26 AliHLTITStrack();
27 AliHLTITStrack(AliESDtrack& t);
28 AliHLTITStrack(const AliHLTITStrack& t);
9582ea1a 29
30 Int_t Compare(const TObject *o) const;
31
4aa41877 32 ClassDef(AliHLTITStrack,2) //HLT ITS reconstructed track
9582ea1a 33};
34
4aa41877 35typedef AliHLTITStrack AliL3ITStrack; // for backward compatibility
36
9582ea1a 37#endif