StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StTptTrack.h
1 
5 /***************************************************************************
6  *
7  * $Id: StTptTrack.h,v 2.5 2009/11/23 16:34:07 fisyak Exp $
8  *
9  * Author: Thomas Ullrich, Aug 2000
10  ***************************************************************************
11  *
12  * Description:
13  *
14  ***************************************************************************
15  *
16  * $Log: StTptTrack.h,v $
17  * Revision 2.5 2009/11/23 16:34:07 fisyak
18  * Cleanup, remove dependence on dst tables, clean up software monitors
19  *
20  * Revision 2.4 2004/07/15 16:36:25 ullrich
21  * Removed all clone() declerations and definitions. Use StObject::clone() only.
22  *
23  * Revision 2.3 2002/02/22 22:56:52 jeromel
24  * Doxygen basic documentation in all header files. None of this is required
25  * for QM production.
26  *
27  * Revision 2.2 2001/03/24 03:34:59 perev
28  * clone() -> clone() const
29  *
30  * Revision 2.1 2000/08/17 00:10:38 ullrich
31  * Initial Revision.
32  *
33  **************************************************************************/
34 #ifndef StTptTrack_hh
35 #define StTptTrack_hh
36 
37 #include "StTrack.h"
38 
39 class StTptTrack : public StTrack {
40 public:
41  StTptTrack();
42  ~StTptTrack();
43 
44  StTrackType type() const;
45  const StVertex* vertex() const;
46 
47  ClassDef(StTptTrack,1)
48 };
49 #endif