]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/hough/AliL3HoughKalmanTrack.h
Changing name of libRAW into libRAWData
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughKalmanTrack.h
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
22 class AliL3HoughTrack;
23 class AliL3HoughBaseTransformer;
24
25 class AliL3HoughKalmanTrack : public AliTPCtrack {
26 public:
27   AliL3HoughKalmanTrack(const AliL3HoughTrack& t) throw (const Char_t *);
28
29   ClassDef(AliL3HoughKalmanTrack,1)   //HLT TPC Hough track
30 };
31
32 #endif