Index: trunk/FACT++/src/EventImp.cc
===================================================================
--- trunk/FACT++/src/EventImp.cc	(revision 12127)
+++ trunk/FACT++/src/EventImp.cc	(revision 12128)
@@ -215,13 +215,17 @@
 void EventImp::Print(ostream &out, bool strip) const
 {
-    out << " \xc2\xb7 ";
+    out << " -";
 
     const string str = GetName();
     if (!str.empty())
-        out << kBold << str.substr(strip?str.find_first_of('/')+1:0);
+        out << kBold << str.substr(strip?str.find_first_of('/')+1:0) << kReset << "-";
 
     const string fmt = GetFormat();
+
+    if (!str.empty() && !fmt.empty())
+        out << " ";
+
     if (!fmt.empty())
-        out << kBold << "[" << fmt << "]";
+        out << "[" << fmt << "]";
 
     vector<Description> v = Description::SplitDescription(GetDescription());
@@ -229,10 +233,10 @@
     if (!GetDescription().empty())
     {
+        out << kBold;
         for (vector<Description>::const_iterator j=v.begin()+1;
              j!=v.end(); j++)
             out << " <" << j->name << ">";
+        out << kReset;
     }
-
-    out << kReset << ":";
 
     for (unsigned int i=0; i<fAllowedStates.size(); i++)
@@ -240,7 +244,7 @@
 
     if (fTargetState<0)
-        out << " [conf]";
+        out << " (conf)";
     else
-        out << " [trans->" << fTargetState << "]";
+        out << " (trans->" << fTargetState << ")";
 
     const Time tm = GetTime();
@@ -262,12 +266,15 @@
 
     if (GetDescription().empty())
+    {
+        out << endl;
         return;
-
-    out << "      " << v[0].comment << endl;
+    }
+
+    out << "     " << v[0].comment << endl;
 
     for (vector<Description>::const_iterator j=v.begin()+1;
          j!=v.end(); j++)
     {
-        out << "      " << kGreen << j->name;
+        out << "      ||" << kGreen << j->name;
         if (!j->comment.empty())
             out << kReset << ": " << kBlue << j->comment;
@@ -276,4 +283,5 @@
         out << endl;
     }
+    out << endl;
 }
 
