Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9043)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9044)
@@ -19,4 +19,32 @@
                                                  -*-*- END OF LINE -*-*-
 
+ 2008/07/27 Thomas Bretz
+
+   * merpp.cc:
+     - added include of TClass to work with root 5.20
+
+   * mbase/MParEmulated.[h,cc]:
+     - for root 5.20/00 we have to use TVirtualStreamer instead
+       of TStremaer
+
+   * mbase/MStatusDisplay.cc:
+     - the workaround had to be fixed because since we don't change
+       gPad for printing anymore all following line and text drawings
+       reffered to the wrong gPad
+
+   * datacenter/scripts/doqualityplots, datacenter/scripts/dowebplots:
+     - also antialias text 
+     - save as interlaced png
+
+   * mbase/MThread.h:
+     - use a reinterpret_cast when returning the Thresd's result
+       (this gave a correct warning on 32bit systems)
+
+   * mhbase/MH3.h:
+     - when available return the histogram title as title (without axis)
+     - implemented GetFullTitle member function to return the full title
+
+
+
  2008/07/25 Thomas Bretz
 
@@ -40,4 +68,7 @@
    * mtools/MTFillMatrix.[h,cc]:
      - added a maximum number the eventloop is running over
+
+   * mjobs/MSequence.cc:
+     - replaced gFile by gDirectory
 
 
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 9043)
+++ trunk/MagicSoft/Mars/NEWS	(revision 9044)
@@ -5,5 +5,7 @@
  ;general
 
-   * should work now with root 5.20/00
+   * should work now with root 5.20/00 (please note that root 5.20/00
+     we encounter crahses in the status display which are ot yet
+     understood)
 
    * Sequences and Datasets are now stored as "MDataSet" and "MSequence"
Index: trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots	(revision 9043)
+++ trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots	(revision 9044)
@@ -77,5 +77,5 @@
 
 echo "producing png files: " >> $scriptlog 2>&1
-pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
+pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
 
 echo "removing temporary dir..." >> $scriptlog 2>&1
Index: trunk/MagicSoft/Mars/datacenter/scripts/dowebplots
===================================================================
--- trunk/MagicSoft/Mars/datacenter/scripts/dowebplots	(revision 9043)
+++ trunk/MagicSoft/Mars/datacenter/scripts/dowebplots	(revision 9044)
@@ -123,5 +123,5 @@
 
    echo "converting plots to png..." >> $scriptlog 2>&1
-   pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
+   pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
    
    echo "removing temporary dir..." >> $scriptlog 2>&1
Index: trunk/MagicSoft/Mars/mbase/MThread.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MThread.h	(revision 9043)
+++ trunk/MagicSoft/Mars/mbase/MThread.h	(revision 9044)
@@ -30,5 +30,5 @@
 
         MThread *th = (MThread*)arg;
-        return (void*)th->Thread();
+        return reinterpret_cast<void*>(th->Thread());
     }
 
Index: trunk/MagicSoft/Mars/mhbase/MH3.h
===================================================================
--- trunk/MagicSoft/Mars/mhbase/MH3.h	(revision 9043)
+++ trunk/MagicSoft/Mars/mhbase/MH3.h	(revision 9044)
@@ -152,4 +152,7 @@
     void SetTitle(const char *title);
 
+    const char *GetTitle() const { return fHist ? fHist->GetTitle() : static_cast<const char *>(fTitle); }
+    const TString &GetFullTitle() const { return fTitle; }
+
     void Draw(Option_t *opt=NULL);
     void Paint(Option_t *opt="");
