Changeset 1555


Ignore:
Timestamp:
10/24/02 17:04:20 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1554 r1555  
    1212     - changed fQfac from TH to TGraph
    1313     - changed the Qfactor-plot x-axis from Hadronness to Gamma-Acceptance
     14
     15   * mgui/MCamDisplay.cc:
     16     - changed ratio from ratio to sqrt(ratio) in GetColorError
     17
     18   * mhist/MH3.cc:
     19     - changed plottet errors from spread/sqrt(n) to spread
    1420
    1521
  • 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.