Changeset 4829
- Timestamp:
- 09/02/04 14:58:59 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4828 r4829 37 37 - moved some drawing code from Draw to Paint 38 38 - added possibility to set logarithmic axis manually 39 - fixed a bug which caused MH3s in MFillH::Finalize to disappear 39 40 40 41 * mhist/MHAlpha.cc: -
trunk/MagicSoft/Mars/mhbase/MH3.cc
r4828 r4829 594 594 595 595 TString str(opt); 596 str = str.Strip(TString::kBoth); 597 596 598 597 599 Bool_t only = str.Contains("ONLY", TString::kIgnoreCase) && fDimension==2; 600 // FIXME: We may have to remove all our own options from str! 598 601 if (!only) 599 fHist->Draw( opt);602 fHist->Draw(str); 600 603 601 604 if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2) … … 617 620 618 621 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();626 622 } 627 623
Note:
See TracChangeset
for help on using the changeset viewer.