Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 8015)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 8016)
@@ -18,4 +18,13 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2006/10/08 Thomas Bretz
+
+   * mhflux/MHalpha.cc:
+     - fixed a problem (maybe with the new root version) that on-
+       and off-data was shown in black and could not be distinguished
+       anymore
+
+
 
  2006/10/07 Thomas Bretz
Index: /trunk/MagicSoft/Mars/mhflux/MHAlpha.cc
===================================================================
--- /trunk/MagicSoft/Mars/mhflux/MHAlpha.cc	(revision 8015)
+++ /trunk/MagicSoft/Mars/mhflux/MHAlpha.cc	(revision 8016)
@@ -585,4 +585,7 @@
             hoff->SetMaximum(alpha);
 
+            // For some reason the line-color is resetted
+            hoff->SetLineColor(kRed);
+
             if ((h0=(TH1D*)gPad->FindObject("ProjOnOff")))
             {
@@ -696,5 +699,7 @@
     if (fOffData)
     {
-        h->SetMarkerColor(kGreen);
+        // To get green on-data
+        //h->SetMarkerColor(kGreen);
+        //h->SetLineColor(kGreen);
 
         h = fOffData->ProjectionZ("ProjOff", -1, 9999, -1, 9999, "E");
@@ -706,5 +711,7 @@
         h->SetBit(kCanDelete);
         h->SetMarkerColor(kRed);
-        h->Draw("same");
+        h->SetLineColor(kRed);
+        //h->SetFillColor(18);
+        h->Draw("same"/*"bar same"*/);
 
         h = (TH1D*)h->Clone("ProjOnOff");
@@ -716,4 +723,5 @@
         h->SetBit(kCanDelete);
         h->SetMarkerColor(kBlue);
+        h->SetLineColor(kBlue);
         h->Draw("same");
 
@@ -835,4 +843,5 @@
             hof->SetBit(kCanDelete);
             hof->SetMarkerColor(kRed);
+            hof->SetLineColor(kRed);
             hof->Draw("same");
 
