Ignore:
Timestamp:
01/20/04 15:03:28 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHVsTime.cc

    r2632 r2858  
    212212    }
    213213    fGraph->GetHistogram()->SetYTitle(GetRule());
    214     fGraph->Draw("AP");
     214
     215    if (!str.Contains("A"))
     216        str += "A";
     217    if (!str.Contains("P"))
     218        str += "P";
     219
     220    if (str.Contains("same", TString::kIgnoreCase))
     221    {
     222        str.ReplaceAll("same", "");
     223        str.ReplaceAll("A", "");
     224    }
     225
     226    fGraph->Draw(str);
    215227    if (fGraph->TestBit(kIsLogy))
    216228        pad->SetLogy();
Note: See TracChangeset for help on using the changeset viewer.