Index: trunk/MagicSoft/Mars/mpointing/MPointingPos.cc
===================================================================
--- trunk/MagicSoft/Mars/mpointing/MPointingPos.cc	(revision 7389)
+++ trunk/MagicSoft/Mars/mpointing/MPointingPos.cc	(revision 7517)
@@ -54,4 +54,7 @@
 using namespace std;
 
+const TString MPointingPos::gsDefName  = "MPointingPos";
+const TString MPointingPos::gsDefTitle = "Container storing the (corrected) telescope pointing position";
+
 // --------------------------------------------------------------------------
 //
@@ -89,5 +92,5 @@
         opt = "radeczdaz";
 
-    *fLog << GetDescriptor() << ": ";
+    *fLog << GetDescriptor() << ":";
 
     if (opt.Contains("ra", TString::kIgnoreCase))
@@ -101,4 +104,8 @@
     if (opt.Contains("az", TString::kIgnoreCase))
         *fLog << " Az=" << MAstro::GetStringDeg(fAz);
+
+    if (fTitle!=gsDefTitle)
+        *fLog << " <" << fTitle << ">";
+
     *fLog << endl;
 }
Index: trunk/MagicSoft/Mars/mpointing/MPointingPos.h
===================================================================
--- trunk/MagicSoft/Mars/mpointing/MPointingPos.h	(revision 7389)
+++ trunk/MagicSoft/Mars/mpointing/MPointingPos.h	(revision 7517)
@@ -18,4 +18,7 @@
 {
 private:
+    static const TString gsDefName;
+    static const TString gsDefTitle;
+
     Double_t fZd;  // [deg] Zenith distance (ZA)
     Double_t fAz;  // [deg] Azimuth
@@ -28,6 +31,6 @@
     MPointingPos(const char *name=0, const char *title=0) : fZd(0), fAz(0), fRa(0), fHa(0), fDec(0)
     {
-        fName  = name ? name   : "MPointingPos";
-        fTitle = title ? title : "Container storing the (corrected) telescope pointing position";
+        fName  = name  ? (TString)name  : gsDefName;
+        fTitle = title ? (TString)title : gsDefTitle;
     }
     MPointingPos(const MPointingPos &p) : MParContainer(p),
