]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/ITS/AliHLTITStrack.h
including a setter to turn on pile-up rejection with one of the SPD methods (not...
[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
8dae289d 32private:
33 AliHLTITStrack& operator=(const AliHLTITStrack& t);
34public:
4aa41877 35 ClassDef(AliHLTITStrack,2) //HLT ITS reconstructed track
9582ea1a 36};
37
4aa41877 38typedef AliHLTITStrack AliL3ITStrack; // for backward compatibility
39
9582ea1a 40#endif