Index: trunk/MagicSoft/Mars/mmovie/MMovieWrite.cc
===================================================================
--- trunk/MagicSoft/Mars/mmovie/MMovieWrite.cc	(revision 8437)
+++ trunk/MagicSoft/Mars/mmovie/MMovieWrite.cc	(revision 8438)
@@ -778,6 +778,5 @@
     */
 
-    TString s = Form("%d: ", GetNumExecutions()+1);
-    s += "Evt #";
+    TString s = Form("%d:  Evt #", GetNumExecutions()+1);
     s += fHead->GetDAQEvtNumber();
     s += " of ";
Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx	(revision 8437)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx	(revision 8438)
@@ -58,4 +58,6 @@
 #include "MLogManip.h"
 
+#include "MString.h"
+
 ClassImp(MMcEvt);
 
@@ -224,5 +226,5 @@
 // Return a proper description of the monte carlo event
 //
-TString MMcEvt::GetDescription(TString s) const
+TString MMcEvt::GetDescription(const TString &s) const
 {
     TString txt("#splitline{");
@@ -233,14 +235,14 @@
     txt += "}{  E=";
     txt += GetEnergyStr();
-    txt += " r=";
-    txt += (int)(GetImpact()/100+.5);
-    txt += "m Zd=";
-    txt += 0.1*TMath::Nint(GetTelescopeTheta()*180/TMath::Pi()*10);
-    txt += "\\circ ";
+    txt += "  r=";
+    txt += TMath::Nint(GetImpact()/100);
+    txt += "m  Zd=";
+    txt += MString::Format("%.1f", GetTelescopeTheta()*TMath::RadToDeg());
+    txt += "\\circ  ";
     if (GetPhotElfromShower()>=10000)
-        txt += Form("%dk", (Int_t)(GetPhotElfromShower()/1000.+.5));
+        txt += MString::Format("%dk", TMath::Nint(GetPhotElfromShower()/1000.));
     else
         if (GetPhotElfromShower()>=1000)
-            txt += Form("%.1fk", GetPhotElfromShower()/1000.);
+            txt += MString::Format("%.1fk", GetPhotElfromShower()/1000.);
         else
             txt += GetPhotElfromShower();
Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx	(revision 8437)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx	(revision 8438)
@@ -100,5 +100,5 @@
     Float_t GetMuonCphFraction() const { return fMuonCphFraction; }
 
-    TString GetDescription(TString s="") const;
+    TString GetDescription(const TString &s="") const;
 
     // Setter
