]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/ITS/AliHLTITStrack.h
adding the ITS library agent with handler of {DDLRAW :ITS } data blocks in HLTOUT...
[u/mrichter/AliRoot.git] / HLT / ITS / AliHLTITStrack.h
... / ...
CommitLineData
1//-*- Mode: C++ -*-
2// $Id$
3
4#ifndef ALIHLTITSTRACK_H
5#define ALIHLTITSTRACK_H
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
24class AliHLTITStrack : public AliITStrackV2 {
25public:
26 AliHLTITStrack();
27 AliHLTITStrack(AliESDtrack& t);
28 AliHLTITStrack(const AliHLTITStrack& t);
29
30 Int_t Compare(const TObject *o) const;
31
32 ClassDef(AliHLTITStrack,2) //HLT ITS reconstructed track
33};
34
35typedef AliHLTITStrack AliL3ITStrack; // for backward compatibility
36
37#endif