]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/tracking/AliHLTTPCHoughKalmanTrack.h
- added the TPC track ID to the HLT TPC seed information
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking / AliHLTTPCHoughKalmanTrack.h
CommitLineData
60c49f42 1// @(#) $Id$
2// origin: hough/AliL3HoughKalmanTrack.h,v 1.1 Thu Mar 31 04:48:58 2005 UTC by cvetan
3
4#ifndef ALIHLTTPCHOUGHKALMANTRACK_H
5#define ALIHLTTPCHOUGHKALMANTRACK_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 TPC Hough Kalman Track Class
11//
12// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
13//-------------------------------------------------------------------------
14
15
16/*****************************************************************************
17 * October 11, 2004 *
18 * The class inherits from the off-line AliTPCtrack class. *
19 * It is used to transform AliHLTHoughTrack into AliTPCTrack, which is *
20 * then stored as AliESDtrack object in the ESD *
21 *****************************************************************************/
22
23#include <AliTPCtrack.h>
24
25class AliHLTTPCHoughTrack;
26class AliHLTTPCHoughTransformer;
27
28class AliHLTTPCHoughKalmanTrack : public AliTPCtrack {
29public:
30 AliHLTTPCHoughKalmanTrack(const AliHLTTPCHoughTrack& t) throw (const Char_t *);
31
32 ClassDef(AliHLTTPCHoughKalmanTrack,1) //TPC TPC Hough track
33};
34
35#endif