Commit in lcio/src/cpp/src/UTIL on MAIN
Operators.cc+3-51.2 -> 1.3
inserted spaces between position elements

lcio/src/cpp/src/UTIL
Operators.cc 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- Operators.cc	21 Sep 2006 06:10:47 -0000	1.2
+++ Operators.cc	4 Jun 2008 09:57:55 -0000	1.3
@@ -46,9 +46,7 @@
     out << setfill(' ') << setw(17) << left << v->getAlgorithmType() << " | ";
     
     out << setfill('0') << right << scientific << setprecision(3) << v->getChi2() << " | " << v->getProbability() << " | " <<
-	v->getPosition()[0] << "," <<
-        v->getPosition()[1] << "," <<
-        v->getPosition()[2] << " | [" ;
+	v->getPosition()[0] << ", " << v->getPosition()[1] << ", " << v->getPosition()[2] << " | [" ;
 
     out << setw(3) << v->getParameters().size() << "] | [";
     out << setw(8) << hex << (v->getAssociatedParticle()!=NULL?v->getAssociatedParticle()->id():0) << "]\n";
@@ -95,7 +93,7 @@
   const std::string& header(const EVENT::Vertex* v){
     
     static std::string _vtxh(
-      "\n    [id]    |pri|     alg. type     |    chi2   |    prob.  |      position ( x, y, z)      | [par] |  [idRecP]  \n");
+      "\n    [id]    |pri|     alg. type     |    chi2   |    prob.  |       position ( x, y, z)       | [par] |  [idRecP]  \n");
     _vtxh+=tail(v);
     return _vtxh;
   }
@@ -103,7 +101,7 @@
   const std::string& tail(const EVENT::Vertex* v){
     
     static std::string _vtxt(
-	"------------|---|-------------------|-----------|-----------|-------------------------------|-------|------------\n");
+	"------------|---|-------------------|-----------|-----------|---------------------------------|-------|------------\n");
     return _vtxt;
   }
 
CVSspam 0.2.8