Changeset 2770


Ignore:
Timestamp:
01/12/04 16:04:19 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2769 r2770  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6 2004/01/12: Abelardo Moralejo
     7
     8  * mimage/MStereoPar.cc
     9    - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
     10      instead of         fSourceY = scale2*hillas1.GetMeanY() + ...
     11      Bug had no effect unless scale1 != scale2 (-> telescopes of
     12      different size).
     13
    614 2004/01/12: Markus Gaug
    715
  • trunk/MagicSoft/Mars/mimage/MStereoPar.cc

    r2577 r2770  
    201201
    202202    fSourceX = scale1*hillas1.GetMeanX() + t * hillas1.GetCosDelta();
    203     fSourceY = scale2*hillas1.GetMeanY() + t * hillas1.GetSinDelta();
     203    fSourceY = scale1*hillas1.GetMeanY() + t * hillas1.GetSinDelta();
    204204
    205205    //
Note: See TracChangeset for help on using the changeset viewer.