00001 #ifndef ST_CHARGED_PION_VERTEX_HH
00002 #define ST_CHARGED_PION_VERTEX_HH
00003
00004
00005
00006 #include "TVector3.h"
00007
00008 class StChargedPionVertex : public TVector3 {
00009 public:
00010 StChargedPionVertex();
00011 virtual ~StChargedPionVertex();
00012
00013 float ranking() { return mRanking; }
00014
00015 void setRanking(float a) { mRanking = a; }
00016
00017 private:
00018 Float_t mRanking;
00019
00020 ClassDef(StChargedPionVertex, 1)
00021 };
00022
00023 #endif
00024
00025
00026
00027
00028
00029
00030