00001 #ifndef StiStarVertexFinder_H
00002 #define StiStarVertexFinder_H 1
00003 #include "Sti/StiVertexFinder.h"
00004 class StGenericVertexFinder;
00005 class StiStarVertexFinder : public StiVertexFinder
00006 {
00007 public:
00008 StiStarVertexFinder(const string & name);
00009 virtual ~StiStarVertexFinder();
00010 int fit(StEvent*);
00011 StiHit * getVertex(int index);
00012 int size() const;
00013 void clear();
00014 private:
00015 StGenericVertexFinder* mGVF;
00016 };
00017
00018
00019 #endif