Changeset 8016


Ignore:
Timestamp:
10/08/06 12:40:37 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8015 r8016  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/10/08 Thomas Bretz
     22
     23   * mhflux/MHalpha.cc:
     24     - fixed a problem (maybe with the new root version) that on-
     25       and off-data was shown in black and could not be distinguished
     26       anymore
     27
     28
    2029
    2130 2006/10/07 Thomas Bretz
  • trunk/MagicSoft/Mars/mhflux/MHAlpha.cc

    r7778 r8016  
    585585            hoff->SetMaximum(alpha);
    586586
     587            // For some reason the line-color is resetted
     588            hoff->SetLineColor(kRed);
     589
    587590            if ((h0=(TH1D*)gPad->FindObject("ProjOnOff")))
    588591            {
     
    696699    if (fOffData)
    697700    {
    698         h->SetMarkerColor(kGreen);
     701        // To get green on-data
     702        //h->SetMarkerColor(kGreen);
     703        //h->SetLineColor(kGreen);
    699704
    700705        h = fOffData->ProjectionZ("ProjOff", -1, 9999, -1, 9999, "E");
     
    706711        h->SetBit(kCanDelete);
    707712        h->SetMarkerColor(kRed);
    708         h->Draw("same");
     713        h->SetLineColor(kRed);
     714        //h->SetFillColor(18);
     715        h->Draw("same"/*"bar same"*/);
    709716
    710717        h = (TH1D*)h->Clone("ProjOnOff");
     
    716723        h->SetBit(kCanDelete);
    717724        h->SetMarkerColor(kBlue);
     725        h->SetLineColor(kBlue);
    718726        h->Draw("same");
    719727
     
    835843            hof->SetBit(kCanDelete);
    836844            hof->SetMarkerColor(kRed);
     845            hof->SetLineColor(kRed);
    837846            hof->Draw("same");
    838847
Note: See TracChangeset for help on using the changeset viewer.