Changeset 3895 for trunk/MagicSoft
- Timestamp:
- 04/29/04 18:50:14 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3894 r3895 18 18 19 19 -*-*- 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 20 28 2004/04/29: Abelardo Moralejo 21 29 … … 27 35 - Updated class version to 5. 28 36 37 38 29 39 2004/04/29: Nadia Tonello 30 40 … … 35 45 * manalysis/MCT1PointingCorrCalc.[h,cc] 36 46 - added pointing correction for 1ES1959 47 48 37 49 38 50 2004/04/29: Markus Gaug -
trunk/MagicSoft/Mars/mbase/MTask.cc
r3788 r3895 355 355 UInt_t MTask::GetNumExecutions() const 356 356 { 357 return (UInt_t)fStopwatch->Counter() ;357 return (UInt_t)fStopwatch->Counter()-1; 358 358 } 359 359
Note:
See TracChangeset
for help on using the changeset viewer.