Index: trunk/MagicSoft/Simulation/Detector/ReflectorII/Changelog
===================================================================
--- trunk/MagicSoft/Simulation/Detector/ReflectorII/Changelog	(revision 1622)
+++ trunk/MagicSoft/Simulation/Detector/ReflectorII/Changelog	(revision 1624)
@@ -2,4 +2,7 @@
 
 15/11/2002 A. Moralejo
+
+ph2cph.c: Fixed BUG in timing calculation!!! The time to be subtracted 
+(mirror till ground) had the wrong sign!!!
 
 reflector.c: in the wavelength range check, changed the range limits to 
Index: trunk/MagicSoft/Simulation/Detector/ReflectorII/ph2cph.c
===================================================================
--- trunk/MagicSoft/Simulation/Detector/ReflectorII/ph2cph.c	(revision 1622)
+++ trunk/MagicSoft/Simulation/Detector/ReflectorII/ph2cph.c	(revision 1624)
@@ -672,6 +672,8 @@
    the photon actually hit the mirror!!
   */ 
-  
-  t = (float) (t + ((( xm[2] > 0. ) ? -1.0 : +1.0) *
+  /* AM 15/11/2002  Fixed BUG in timing!!! The time to be subtracted 
+   * (mirror till ground) had the wrong sign!!!
+   */     
+  t = (float) (t + ((( xm[2] > 0. ) ? +1.0 : -1.0) *
 	      sqrt( SQR(xm[0] - xcut[0]) +
 		    SQR(xm[1] - xcut[1]) +
