00001
00023 #ifndef STAR_StFixedVertexFinder
00024 #define STAR_StFixedVertexFinder
00025
00026
00027 #include "StGenericVertexFinder.h"
00028
00029 class StEvent;
00030
00031 class StFixedVertexFinder: public StGenericVertexFinder{
00032 public:
00033 StFixedVertexFinder();
00034
00035
00036
00037 int fit(StEvent*);
00038 void printInfo(ostream& = cout)const;
00043 void UseVertexConstraint(double x0, double y0, double dxdz, double dydz, double weight);
00044
00045
00046
00047 void SetVertexPosition(double x, double y, double z);
00048
00049 private:
00050 Double_t mFixedX;
00051 Double_t mFixedY;
00052 Double_t mFixedZ;
00053
00054 };
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 #endif