00001
00002 #include "StMuMcVertex.h"
00003 #include "Stiostream.h"
00004 #include "TString.h"
00005 #include "TMath.h"
00006 ClassImp(StMuMcVertex);
00007
00008 ostream& operator<<(ostream& os, const StMuMcVertex& v) {
00009 os << Form("Mc:%4i NoTk:%4i T:%4i",v.Id(),v.NoDaughters(),TMath::Nint(1e7*v.Time()));
00010 os << Form(" xyz:%8.3f %8.3f %8.3f",v.XyzV().x(),v.XyzV().y(),v.XyzV().z());
00011 return os;
00012 }
00013
00014 void StMuMcVertex::Print(Option_t *option) const {cout << *this << endl;}
00015
00016
00017
00018
00019
00020
00021
00022