Changeset 1346 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
06/04/02 15:00:36 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1342 r1346  
    11                                                                  -*-*- END -*-*-
     2 2002/06/03: Thomas Bretz
     3
     4   * mhist/MHCompProb.[h,cc]:
     5     - added
     6
     7   * mhist/MHMatrix.cc:
     8     - corrected some bugs in the algorithm to calculate the distance
     9
     10   * mhist/Makefile:
     11     - added -I../mmc
     12
     13
     14
    215 2002/06/03: Thomas Bretz
    316
  • trunk/MagicSoft/Mars/mbase/Makefile

    r1327 r1346  
    2020# @endcode
    2121
    22 INCLUDES = -I. -I../mraw -I../MRawFormat
     22INCLUDES = -I. -I../mraw -I../MRawFormat -I../mmc
    2323
    2424# @code
  • trunk/MagicSoft/Mars/mhist/MHHadroness.cc

    r1336 r1346  
    296296    gStyle->SetOptStat(10);
    297297    Getghness()->DrawCopy();
    298     Getphness()->SetLineColor(2);
     298    Getphness()->SetLineColor(kRed);
    299299    Getphness()->DrawCopy("same");
    300300    c.cd(4);
     
    308308        g.GetXaxis()->SetTitle("Acceptance Hadrons");
    309309        g.GetYaxis()->SetTitle("Acceptance Gammas");
     310        g.SetMarkerStyle(kFullDotSmall);
     311        g.Draw("P");
     312
    310313        gPad->Modified();
    311314        gPad->Update();
     
    314317    TMarker *m = new TMarker(fIntPhness->GetBinContent(h),
    315318                             fIntGhness->GetBinContent(h), kStar);
    316     m->SetMarkerColor(4);
     319    m->SetMarkerColor(kBlue);
    317320    m->SetBit(kCanDelete);
    318321    m->Draw();
     
    320323    gStyle->SetOptStat(0);
    321324    Getighness()->DrawCopy();
    322     Getiphness()->SetLineColor(2);
     325    Getiphness()->SetLineColor(kRed);
    323326    Getiphness()->DrawCopy("same");
    324     fMinDist->SetLineColor(4);
     327    fMinDist->SetLineColor(kBlue);
    325328    fMinDist->DrawCopy("same");
    326329    c.cd(3);
     
    344347    gStyle->SetOptStat(10);
    345348    Getghness()->Draw();
    346     Getphness()->SetLineColor(2);
     349    Getphness()->SetLineColor(kRed);
    347350    Getphness()->Draw("same");
    348351    gPad->cd(4);
     
    355358        fGraph->GetXaxis()->SetTitle("Acceptance Hadrons");
    356359        fGraph->GetYaxis()->SetTitle("Acceptance Gammas");
     360        fGraph->SetMarkerStyle(kFullDotSmall);
     361        fGraph->Draw("P");
    357362        gPad->Modified();
    358363        gPad->Update();
     
    361366    TMarker *m = new TMarker(fIntPhness->GetBinContent(h),
    362367                             fIntGhness->GetBinContent(h), kStar);
    363     m->SetMarkerColor(4);
     368    m->SetMarkerColor(kBlue);
    364369    m->SetBit(kCanDelete);
    365370    m->Draw();
     
    367372    gStyle->SetOptStat(0);
    368373    Getighness()->Draw();
    369     Getiphness()->SetLineColor(2);
     374    Getiphness()->SetLineColor(kRed);
    370375    Getiphness()->Draw("same");
    371     fMinDist->SetLineColor(4);
     376    fMinDist->SetLineColor(kBlue);
    372377    fMinDist->Draw("same");
    373378    gPad->cd(3);
Note: See TracChangeset for help on using the changeset viewer.