Changeset 4829


Ignore:
Timestamp:
09/02/04 14:58:59 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4828 r4829  
    3737     - moved some drawing code from Draw to Paint
    3838     - added possibility to set logarithmic axis manually
     39     - fixed a bug which caused MH3s in MFillH::Finalize to disappear
    3940
    4041   * mhist/MHAlpha.cc:
  • trunk/MagicSoft/Mars/mhbase/MH3.cc

    r4828 r4829  
    594594
    595595    TString str(opt);
     596    str = str.Strip(TString::kBoth);
     597
    596598
    597599    Bool_t only = str.Contains("ONLY", TString::kIgnoreCase) && fDimension==2;
     600    // FIXME: We may have to remove all our own options from str!
    598601    if (!only)
    599         fHist->Draw(opt);
     602        fHist->Draw(str);
    600603
    601604    if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2)
     
    617620
    618621    AppendPad("");
    619 /*
    620     if (fHist->TestBit(kIsLogx)) pad->SetLogx();
    621     if (fHist->TestBit(kIsLogy)) pad->SetLogy();
    622     if (fHist->TestBit(kIsLogz)) pad->SetLogz();
    623   */
    624     //pad->Modified();
    625     //pad->Update();
    626622}
    627623
Note: See TracChangeset for help on using the changeset viewer.