Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 5032)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 5033)
@@ -54,4 +54,8 @@
      - initialize default number of dump events (500)
      - log status of task in PreProcess
+
+   * mimage/MHillasSrcCalc.cc:
+     - fixed
+     - THE USE OF THIS TASK IS DEPRICATED. PLEASE USE MHillasCalc INSTEAD!!!
 
 
Index: /trunk/MagicSoft/Mars/mimage/MHillasSrcCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/mimage/MHillasSrcCalc.cc	(revision 5032)
+++ /trunk/MagicSoft/Mars/mimage/MHillasSrcCalc.cc	(revision 5033)
@@ -30,5 +30,6 @@
 // Task to calculate the source dependant part of the hillas parameters
 //
-// FIXME: Merge with MHillasCalc
+// THE USE OF THIS TASK IS DEPRICATED. PLEASE USE MHillasCalc INSTEAD!!!
+//
 //
 //  Input Containers:
@@ -114,5 +115,5 @@
 Int_t MHillasSrcCalc::Process()
 {
-    if (!fHillasSrc->Calc(*fHillas))
+    if (fHillasSrc->Calc(*fHillas)>0)
     {
         fErrors++;
@@ -136,5 +137,5 @@
     *fLog << GetDescriptor() << " execution statistics:" << endl;
     *fLog << dec << setfill(' ');
-    *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Dist==0" << endl;
+    *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Calc>0" << endl;
     *fLog << endl;
 
