Ignore:
Timestamp:
10/24/02 17:04:20 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1524 r1555  
    413413    if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2)
    414414    {
    415         TProfile *p = ((TH2*)fHist)->ProfileX();
     415        TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s");
    416416        p->Draw(only?"":"same");
    417417        p->SetBit(kCanDelete);
     
    420420    if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2)
    421421    {
    422         TProfile *p = ((TH2*)fHist)->ProfileY();
     422        TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s");
    423423        p->Draw(only?"":"same");
    424424        p->SetBit(kCanDelete);
     
    467467    if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2)
    468468    {
    469         TProfile *p = ((TH2*)fHist)->ProfileX();
     469        TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s");
    470470        p->Draw(only?"":"same");
    471471        p->SetBit(kCanDelete);
     
    474474    if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2)
    475475    {
    476         TProfile *p = ((TH2*)fHist)->ProfileY();
     476        TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s");
    477477        p->Draw(only?"":"same");
    478478        p->SetBit(kCanDelete);
Note: See TracChangeset for help on using the changeset viewer.