Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3894)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3895)
@@ -18,4 +18,12 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/04/29: Thomas Bretz
+
+   * mbase/MTask.cc:
+     - fixed behaviour of GetNumExecutions. Because of a root bug
+       Count returns a number which is to high by 1.
+
+
+
  2004/04/29: Abelardo Moralejo
 
@@ -27,4 +35,6 @@
      - Updated class version to 5.
 
+
+
  2004/04/29: Nadia Tonello
 
@@ -35,4 +45,6 @@
    * manalysis/MCT1PointingCorrCalc.[h,cc]
      - added pointing correction for 1ES1959
+
+
 
  2004/04/29: Markus Gaug
Index: trunk/MagicSoft/Mars/mbase/MTask.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTask.cc	(revision 3894)
+++ trunk/MagicSoft/Mars/mbase/MTask.cc	(revision 3895)
@@ -355,5 +355,5 @@
 UInt_t MTask::GetNumExecutions() const
 {
-    return (UInt_t)fStopwatch->Counter();
+    return (UInt_t)fStopwatch->Counter()-1;
 }
 
