Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6902)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6903)
@@ -128,4 +128,10 @@
    * mjobs/Makefile, mjobs/JobsLinkDef.h:
      - removed MJExtractSignal
+
+   * mfbase/MF.cc:
+     - fixed a problem with double-inversion in ReadEnv
+
+   * mpointing/MSrcPosCalc.cc:
+     - removed an output line which showed only an empty container
 
 
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 6902)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 6903)
@@ -4,6 +4,6 @@
 
    - Fix bug on the arrival time reconstruction when using Digital
-     Filter (in some marginal cases times were reconstructed shifted by one
-     or two slices)
+     Filter (in some marginal cases (10%) times were reconstructed shifted
+     by 0.2 slices)
 
    - all executables now return 2 where in previous versions -1 has
Index: /trunk/MagicSoft/Mars/mfbase/MF.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfbase/MF.cc	(revision 6902)
+++ /trunk/MagicSoft/Mars/mfbase/MF.cc	(revision 6903)
@@ -540,4 +540,14 @@
     }
 
+    if (fF->ReadEnv(env, prefix, print)==kERROR)
+        return kERROR;
+
+    // This is a workaround, because MFilter::ReadEnv and fF->ReadEnv
+    // might check for "Inverted" in this case both gets inverted
+    // and double-inversion is no inversion
+    if (IsEnvDefined(env, prefix, "Inverted", print))
+        if (GetEnvValue(env, prefix, "Inverted", print)==kTRUE)
+            fF->SetInverted(kFALSE);
+
     return kTRUE;
 }
Index: /trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc	(revision 6902)
+++ /trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc	(revision 6903)
@@ -197,6 +197,6 @@
 
     *fLog << inf;
-    *fLog << "Pointing Position: " << GetRaDec(*fPointPos)  << endl;
-    *fLog << "Source   Position: " << GetRaDec(*fSourcePos) << endl;
+    //*fLog << "Pointing Position: " << GetRaDec(*fPointPos)  << endl;
+    *fLog << "Source Position: " << GetRaDec(*fSourcePos) << endl;
 
     return kTRUE;
