Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 2769)
+++ trunk/MagicSoft/Mars/Changelog	(revision 2770)
@@ -4,4 +4,12 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/01/12: Abelardo Moralejo
+
+  * mimage/MStereoPar.cc
+    - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
+      instead of         fSourceY = scale2*hillas1.GetMeanY() + ...
+      Bug had no effect unless scale1 != scale2 (-> telescopes of 
+      different size).
+
  2004/01/12: Markus Gaug
 
Index: trunk/MagicSoft/Mars/mimage/MStereoPar.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MStereoPar.cc	(revision 2769)
+++ trunk/MagicSoft/Mars/mimage/MStereoPar.cc	(revision 2770)
@@ -201,5 +201,5 @@
 
     fSourceX = scale1*hillas1.GetMeanX() + t * hillas1.GetCosDelta();
-    fSourceY = scale2*hillas1.GetMeanY() + t * hillas1.GetSinDelta();
+    fSourceY = scale1*hillas1.GetMeanY() + t * hillas1.GetSinDelta();
 
     //
