StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMuDstVtxT.cxx
1 // $Id: StMuDstVtxT.cxx,v 2.7 2018/04/10 11:32:10 smirnovd Exp $
2 #include "StMuDstVtxT.h"
3 #include "StKFVertex.h"
4 
5 std::ostream& operator<<(std::ostream& os, const StMuDstVtxT& v) {
6  os << Form("Q:%3i M:%3i/%3i/%3i W/E %3i/%3i tracks rank %5i xyz = %9.3f +/- %5.3f, %9.3f +/- %5.3f, %9.3f +/- %5.3f",
7  v.Q(),v.MultU(),v.Mult(),v.MultC(),v.MultW(),v.MultE(),v.Rank(),
8  v.Xyz().x(),v.SigmaXyz().x(),
9  v.Xyz().y(),v.SigmaXyz().x(),
10  v.Xyz().z(),v.SigmaXyz().x())
11  << Form(" Mc/QA/t:%4i/%3i/%6.0f xyz: %8.3f%8.3f%8.3f m:%4i %6s",v.IdTruth(), v.QaTruth(),
12  v.TimeMc(), v.XyzMc().X(), v.XyzMc().Y(), v.XyzMc().Z(),
13  v.NoDaughtersMc(),StKFVertex::GeNames[v.gePidMc()]);
14  return os;
15 }
16 // $Log: StMuDstVtxT.cxx,v $
17 // Revision 2.7 2018/04/10 11:32:10 smirnovd
18 // Minor corrections across multiple files
19 //
20 // - Remove ClassImp macro
21 // - Change white space
22 // - Correct windows newlines to unix
23 // - Remove unused debugging
24 // - Correct StTpcRTSHitMaker header guard
25 // - Remove unused preprocessor directives in StiCA
26 // - Minor changes in status and debug print out
27 // - Remove using std namespace from StiKalmanTrackFinder
28 // - Remove includes for unused headers
29 //
30 // Revision 2.6 2015/12/20 01:35:12 fisyak
31 // Move back commits done by mistate
32 //
33 // Revision 2.4 2013/04/10 22:14:20 fisyak
34 // Roll back to version 04/04/2013
35 //
36 // Revision 2.2 2012/06/11 15:33:41 fisyak
37 // std namespace
38 //
39 // Revision 2.1 2012/05/07 14:56:14 fisyak
40 // Add StKFVertexMaker
41 //
42 // Revision 1.2 2012/02/07 19:38:26 fisyak
43 // Repackage
44 //