Changeset 5351 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/06/04 21:04:09 (20 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5350 r5351  
    2222
    2323 2004/11/06: Abelardo Moralejo
     24
     25   * mbase/MTask.cc
     26     - Fixed typo in PrintSkipped: "%5.1f" instead of wrong "5.1f",
     27       which resulted in the percentage of skipped events not being
     28       displayed.
    2429
    2530   * mimage/MHillasCalc.cc
  • trunk/MagicSoft/Mars/mbase/MTask.cc

    r5101 r5351  
    504504{
    505505    *fLog << " " << setw(7) << n << " (";
    506     *fLog << Form("5.1f", 100.*n/GetNumExecutions());
     506    *fLog << Form("%5.1f", 100.*n/GetNumExecutions());
    507507    *fLog << "%) Evts skipped: " << str << endl;
    508508}
Note: See TracChangeset for help on using the changeset viewer.