00001 /*************************************************************************** 00002 * 00003 * $Id: StTptTrack.cxx,v 2.4 2009/11/23 16:34:07 fisyak Exp $ 00004 * 00005 * Author: Thomas Ullrich, Aug 2000 00006 *************************************************************************** 00007 * 00008 * Description: 00009 * 00010 *************************************************************************** 00011 * 00012 * $Log: StTptTrack.cxx,v $ 00013 * Revision 2.4 2009/11/23 16:34:07 fisyak 00014 * Cleanup, remove dependence on dst tables, clean up software monitors 00015 * 00016 * Revision 2.3 2004/07/15 16:36:25 ullrich 00017 * Removed all clone() declerations and definitions. Use StObject::clone() only. 00018 * 00019 * Revision 2.2 2001/03/24 03:34:59 perev 00020 * clone() -> clone() const 00021 * 00022 * Revision 2.1 2000/08/17 00:10:34 ullrich 00023 * Initial Revision. 00024 * 00025 **************************************************************************/ 00026 #include "StTptTrack.h" 00027 #include "StVertex.h" 00028 00029 ClassImp(StTptTrack) 00030 00031 static const char rcsid[] = "$Id: StTptTrack.cxx,v 2.4 2009/11/23 16:34:07 fisyak Exp $"; 00032 00033 StTptTrack::StTptTrack() {/* noop */} 00034 00035 StTptTrack::~StTptTrack() {/* noop */} 00036 00037 StTrackType 00038 StTptTrack::type() const { return tpt; } 00039 00040 const StVertex* 00041 StTptTrack::vertex() const { return 0; }
1.5.9