00001
00014 #ifndef STAR_StMuDstVtxSeedMaker
00015 #define STAR_StMuDstVtxSeedMaker
00016
00017 #ifndef STAR_StVertexSeedMaker
00018 #include "StVertexSeedMaker.h"
00019 #endif
00020
00021 class StMuDst;
00022 class StMuEvent;
00023
00024
00025 class StMuDstVtxSeedMaker : public StVertexSeedMaker {
00026 public:
00027 StMuDstVtxSeedMaker(const char *name="EvtVtxSeedMkr");
00028 virtual ~StMuDstVtxSeedMaker() {}
00029 virtual Int_t Make();
00030 virtual void PrintInfo();
00031
00032 virtual const char *GetCVS() const {
00033 static const char cvs[]="Tag $Name: $ $Id: StMuDstVtxSeedMaker.h,v 1.2 2006/09/01 22:27:16 genevb Exp $ built "__DATE__" "__TIME__ ;
00034 return cvs;
00035 }
00036
00037 protected:
00038 virtual Bool_t CheckTriggers();
00039 virtual Int_t GetEventData();
00040
00041 StMuDst* mudst;
00042 StMuEvent* event;
00043 unsigned int pvn;
00044
00045 ClassDef(StMuDstVtxSeedMaker,0)
00046 };
00047
00048
00049
00050 #endif
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062