Changeset 3895 for trunk/MagicSoft


Ignore:
Timestamp:
04/29/04 18:50:14 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3894 r3895  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2004/04/29: Thomas Bretz
     21
     22   * mbase/MTask.cc:
     23     - fixed behaviour of GetNumExecutions. Because of a root bug
     24       Count returns a number which is to high by 1.
     25
     26
     27
    2028 2004/04/29: Abelardo Moralejo
    2129
     
    2735     - Updated class version to 5.
    2836
     37
     38
    2939 2004/04/29: Nadia Tonello
    3040
     
    3545   * manalysis/MCT1PointingCorrCalc.[h,cc]
    3646     - added pointing correction for 1ES1959
     47
     48
    3749
    3850 2004/04/29: Markus Gaug
  • trunk/MagicSoft/Mars/mbase/MTask.cc

    r3788 r3895  
    355355UInt_t MTask::GetNumExecutions() const
    356356{
    357     return (UInt_t)fStopwatch->Counter();
     357    return (UInt_t)fStopwatch->Counter()-1;
    358358}
    359359
Note: See TracChangeset for help on using the changeset viewer.