Changeset 2425


Ignore:
Timestamp:
10/23/03 19:38:30 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2424 r2425  
    11                                                 -*-*- END OF LINE -*-*-
     2  2003/10/23: Abelardo Moralejo
     3
     4   * mhistmc/MHMcEnergyMigration.cc
     5     - Changed the Draw procedure: with new root versions (3.04, 3.05)
     6       the result of the used drawing options was different from what
     7       we had in 3.02, and the graphics output had become unreadable.
     8       Replacing some Draw() calls by DrawCopy() has solved the problem.
     9
     10
    211  2003/10/23: Thomas Bretz
    312
  • trunk/MagicSoft/Mars/mhistmc/MHMcEnergyMigration.cc

    r2262 r2425  
    209209    h2pfx->SetBit(kCanDelete);
    210210    h2pfx->SetFillColor(41);
     211    h2pfx->SetFillStyle(1001);
    211212    h2pfx->SetMinimum(minEest);
    212213    h2pfx->SetStats(kFALSE);
    213     h2pfx->Draw("E3");
     214    h2pfx->DrawCopy("E3");
    214215
    215216    h2->SetBit(kCanDelete);
     
    220221    h2pfx->SetLineColor(2);
    221222    h2pfx->SetLineWidth(2);
    222     h2pfx->Draw("L,histo,same");
     223    h2pfx->SetFillColor(0);
     224    h2pfx->DrawCopy("C,hist,same");
    223225    h2pfx->SetDirectory(NULL);
    224226
    225227    pad2->cd(2);
     228
    226229    gPad->SetBorderMode(0);
    227230    gPad->SetLogx();
     
    235238    h2pfx->SetBit(kCanDelete);
    236239    h2pfx->SetFillColor(41);
     240    h2pfx->SetFillStyle(1001);
    237241    h2pfx->GetYaxis()->SetTitleOffset(1.4);
    238242    h2pfx->SetStats(kFALSE);
    239     h2pfx->Draw("E3");
     243    h2pfx->DrawCopy("E3");
    240244    h2->SetFillColor(1);
    241245    h2->Draw("same,box");
     
    243247    h2pfx->SetLineColor(2);
    244248    h2pfx->SetLineWidth(2);
    245     h2pfx->Draw("L,histo,same");
     249    h2pfx->SetFillColor(0);
     250    h2pfx->DrawCopy("C,hist,same");
    246251    h2pfx->SetDirectory(NULL);
    247252   
     
    258263    h2pfx->SetBit(kCanDelete);
    259264    h2pfx->SetFillColor(41);
     265    h2pfx->SetFillStyle(1001);
    260266    h2pfx->GetYaxis()->SetTitleOffset(1.4);
    261267    h2pfx->SetStats(kFALSE);
    262268    h2pfx->SetMinimum(-1.);
    263269    h2pfx->SetMaximum(1.);
    264     h2pfx->Draw("E3");
     270    h2pfx->DrawCopy("E3");
    265271   
    266272    h2->SetFillColor(1);
     
    269275    h2pfx->SetLineColor(2);
    270276    h2pfx->SetLineWidth(2);
    271     h2pfx->Draw("L,histo,same");
     277    h2pfx->SetFillColor(0);
     278    h2pfx->DrawCopy("L,histo,same");
    272279    h2pfx->SetDirectory(NULL);
    273280   
Note: See TracChangeset for help on using the changeset viewer.