IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38656


Ignore:
Timestamp:
Aug 1, 2015, 10:58:16 AM (11 years ago)
Author:
eugene
Message:

do not fail for repair unless offset is > 200 arcsec

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150625/Ohana/src/dvomerge/src/repair_catalog_by_objID.c

    r38651 r38656  
    2424      double dD = 3600.0*(average[iTest].D - myMeasure->D);
    2525      double dRad = hypot (dR, dD);
    26       myAssert (dRad < 2.0, "bad detection does not seem to match target source");
     26
     27      // XXX dRad of 200.0 would allow Barnard's star (10"/yr) to be handled
     28      myAssert (dRad < 200.0, "bad detection does not seem to match target source");
    2729     
    2830      char *date = ohana_sec_to_date (myMeasure->t);
Note: See TracChangeset for help on using the changeset viewer.