Index: trunk/MagicSoft/Mars/mimage/MHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 7804)
+++ trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 7841)
@@ -271,17 +271,4 @@
 // --------------------------------------------------------------------------
 //
-// Setup a inversed deep blue sea palette for the fCenter histogram.
-//
-void MHHillas::SetColors() const
-{
-    gStyle->SetPalette(51, NULL);
-    Int_t c[50];
-    for (int i=0; i<50; i++)
-        c[49-i] = gStyle->GetColorPalette(i);
-    gStyle->SetPalette(50, c);
-}
-
-// --------------------------------------------------------------------------
-//
 // Creates a new canvas and draws the four histograms into it.
 // Be careful: The histograms belongs to this object and won't get deleted
@@ -344,33 +331,28 @@
     fSize->Draw(same?"same":"");
 
-    //if (!same)
-    {
-        pad->cd(4);
-        gPad->SetBorderMode(0);
-        gPad->SetPad(0.51, 0.01, 0.99, 0.65);
-        if (same)
+    pad->cd(4);
+    gPad->SetBorderMode(0);
+    gPad->SetPad(0.51, 0.01, 0.99, 0.65);
+    if (same)
+    {
+        TH2 *h=dynamic_cast<TH2*>(gPad->FindObject("Center"));
+        if (h)
         {
-            /*
-            TH1 *h = dynamic_cast<TH1*>(gPad->FindObject("Center"));
-            if (h)
-            {
-                h->SetDrawOption("");
-                h->SetMarkerColor(kBlack);
-            }*/
-            RemoveFromPad("CenterSame");
-            fCenter->SetMarkerColor(kGreen);
-            fCenter->Draw("same");
+            h->SetDrawOption("");
+            h->SetMarkerColor(kBlack);
         }
-        else
-        {
-            //SetColors();
-            fCenter->Draw(/*"colz"*/);
-        }
-        if (fGeomCam)
-        {
-            MHCamera *cam = new MHCamera(*fGeomCam);
-            cam->Draw("same");
-            cam->SetBit(kCanDelete);
-        }
+
+        RemoveFromPad("CenterSame");
+        fCenter->SetMarkerColor(kGreen);
+        fCenter->Draw("same");
+    }
+    else
+        fCenter->Draw("colz");
+
+    if (fGeomCam)
+    {
+        MHCamera *cam = new MHCamera(*fGeomCam);
+        cam->Draw("same");
+        cam->SetBit(kCanDelete);
     }
 
@@ -383,7 +365,4 @@
     if (gPad && !same)
         delete gPad;
-
-    //pad->Modified();
-    //pad->Update();
 }
 
@@ -408,5 +387,5 @@
 void MHHillas::Paint(Option_t *opt)
 {
-    SetColors();
+    MH::SetPalette("pretty");
     MH::Paint();
 }
Index: trunk/MagicSoft/Mars/mimage/MHHillas.h
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillas.h	(revision 7804)
+++ trunk/MagicSoft/Mars/mimage/MHHillas.h	(revision 7841)
@@ -23,6 +23,4 @@
     TH1F *fSize;    //-> Sum of used pixels
     TH2F *fCenter;  //-> Center
-
-    void SetColors() const;
 
     MGeomCam *fGeomCam; //! Camera geometry for plots (for the moment this is a feature for a loop only!)
