Index: trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 1894)
+++ trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 1895)
@@ -106,4 +106,6 @@
 {
     fName = name;
+
+    *fLog << inf << "Instantiated MEvtLoop (" << name << "), using ROOT v" << ROOTVER << endl;
 }
 
Index: trunk/MagicSoft/Mars/mbase/MLog.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 1894)
+++ trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 1895)
@@ -77,5 +77,7 @@
 #include <stdlib.h>     // mkstempe
 #include <fstream.h>
+#ifdef _REENTRANT
 #include <pthread.h>
+#endif
 #include <TGListBox.h>
 
@@ -102,4 +104,5 @@
     *this << '\0';
 
+#ifdef _REENTRANT
     //
     // Creat drawing semaphore
@@ -107,4 +110,5 @@
     fMuxGui = new pthread_mutex_t;
     pthread_mutex_init((pthread_mutex_t*)fMuxGui, NULL);
+#endif
 }
 
@@ -160,5 +164,7 @@
 {
     DeallocateFile();
+#ifdef _REENTRANT
     pthread_mutex_destroy((pthread_mutex_t*)fMuxGui);
+#endif
 }
 
@@ -227,16 +233,11 @@
     Lock();
 
-//    cout << "/---------------------------------------" << endl;
-
     for (int i=0; i<fNumLines; i++)
     {
         fgui->AddEntry(fGuiLines[i], fGuiLineId++);
-//        cout << fGuiLines[i] << endl;
         delete fGuiLines[i];
     }
 
     delete fGuiLines;
-
-//    cout << "\\---------------------------------------" << endl;
 
     fNumLines=0;
@@ -251,10 +252,14 @@
 void MLog::Lock()
 {
+#ifdef _REENTRANT
     pthread_mutex_lock((pthread_mutex_t*)fMuxGui);
+#endif
 }
 
 void MLog::UnLock()
 {
+#ifdef _REENTRANT
     pthread_mutex_unlock((pthread_mutex_t*)fMuxGui);
+#endif
 }
 
Index: trunk/MagicSoft/Mars/mbase/MLog.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MLog.h	(revision 1894)
+++ trunk/MagicSoft/Mars/mbase/MLog.h	(revision 1895)
@@ -44,5 +44,7 @@
     Int_t     fNumLines;
 
+#ifdef _REENTRANT
     void *fMuxGui;            //! Mutex locking access of TGListBox
+#endif
 
     void Init();
Index: trunk/MagicSoft/Mars/mfileio/MRead.cc
===================================================================
--- trunk/MagicSoft/Mars/mfileio/MRead.cc	(revision 1894)
+++ trunk/MagicSoft/Mars/mfileio/MRead.cc	(revision 1895)
@@ -72,5 +72,5 @@
         TString name = GetEnvValue(env, prefix, idx, "");
         if (name.IsNull())
-            return kTRUE;
+            break;
 
         if (name.BeginsWith("\"") && name.EndsWith("\""))
@@ -80,4 +80,6 @@
         }
 
+        if (print)
+            *fLog << all << "Add File: " << name << endl;
         AddFile(name);
     }
Index: trunk/MagicSoft/Mars/mhist/MHArray.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHArray.cc	(revision 1894)
+++ trunk/MagicSoft/Mars/mhist/MHArray.cc	(revision 1895)
@@ -278,5 +278,5 @@
 // Default constructor. Use MHArray::Set to setup the MHArray afterwards
 //
-MHArray::MHArray(const char *name=NULL, const char *title=NULL)
+MHArray::MHArray(const char *name, const char *title)
     : fIdx(0), fClass(NULL), fTemplate(NULL), fTemplateName("<dummy>")
 {
Index: trunk/MagicSoft/Mars/mhist/MHMatrix.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHMatrix.cc	(revision 1894)
+++ trunk/MagicSoft/Mars/mhist/MHMatrix.cc	(revision 1895)
@@ -1052,13 +1052,5 @@
         TString name = GetEnvValue(env, prefix, idx, "");
         if (name.IsNull())
-            return kTRUE;
-
-        /*
-        if (name.BeginsWith("\"") && name.EndsWith("\""))
-        {
-            name.Remove(name.Last('\"'), 1);
-            name.Remove(name.First('\"'), 1);
-        }
-        */
+            break;
 
         if (print)
