Changeset 1624
- Timestamp:
- 11/15/02 17:11:39 (22 years ago)
- Location:
- trunk/MagicSoft/Simulation/Detector/ReflectorII
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Simulation/Detector/ReflectorII/Changelog
r1622 r1624 2 2 3 3 15/11/2002 A. Moralejo 4 5 ph2cph.c: Fixed BUG in timing calculation!!! The time to be subtracted 6 (mirror till ground) had the wrong sign!!! 4 7 5 8 reflector.c: in the wavelength range check, changed the range limits to -
trunk/MagicSoft/Simulation/Detector/ReflectorII/ph2cph.c
r1621 r1624 672 672 the photon actually hit the mirror!! 673 673 */ 674 675 t = (float) (t + ((( xm[2] > 0. ) ? -1.0 : +1.0) * 674 /* AM 15/11/2002 Fixed BUG in timing!!! The time to be subtracted 675 * (mirror till ground) had the wrong sign!!! 676 */ 677 t = (float) (t + ((( xm[2] > 0. ) ? +1.0 : -1.0) * 676 678 sqrt( SQR(xm[0] - xcut[0]) + 677 679 SQR(xm[1] - xcut[1]) +
Note:
See TracChangeset
for help on using the changeset viewer.