]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/hough/AliL3HoughKalmanTrack.h
Additional background suppression in the V0 finder (M.Ivanov)
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughKalmanTrack.h
CommitLineData
f644512a 1#ifndef ALIL3HOUGHKALMANTRACK_H
2#define ALIL3HOUGHKALMANTRACK_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 TPC Hough Kalman Track Class
8//
9// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
10//-------------------------------------------------------------------------
11
12
13/*****************************************************************************
14 * October 11, 2004 *
15 * The class inherits from the off-line AliTPCtrack class. *
16 * It is used to transform AliL3HoughTrack into AliTPCTrack, which is *
17 * then stored as AliESDtrack object in the ESD *
18 *****************************************************************************/
19
20#include <AliTPCtrack.h>
21
22class AliL3HoughTrack;
23class AliL3HoughBaseTransformer;
24
25class AliL3HoughKalmanTrack : public AliTPCtrack {
26public:
27 AliL3HoughKalmanTrack(const AliL3HoughTrack& t) throw (const Char_t *);
28
29 ClassDef(AliL3HoughKalmanTrack,1) //HLT TPC Hough track
30};
31
32#endif