IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17198


Ignore:
Timestamp:
Mar 28, 2008, 3:31:11 PM (18 years ago)
Author:
eugene
Message:

clarify names of blend flags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/delstar/src/delete_orphans.c

    r15743 r17198  
    170170  /* this image star matches more than one catalog star */
    171171  if (stars[N].found > -1) {
    172     catalog.measure[stars[N].found].flags |= BLEND_IMAGE;
    173     catalog.measure[Nmeas].flags |= BLEND_IMAGE;
     172    catalog.measure[stars[N].found].flags |= ID_MEAS_BLEND_MEAS;
     173    catalog.measure[Nmeas].flags |= ID_MEAS_BLEND_MEAS;
    174174  }
    175175  if (stars[N].found == -2) { /* this image star matches a catalog star on a neighboring catalog */
    176     catalog.measure[Nmeas].flags |= BLEND_IMAGE_NEIGHBOR;
     176    catalog.measure[Nmeas].flags |= ID_MEAS_BLEND_MEAS_X;
    177177  }
    178178  if (stars[N].found == -1) { /* this image star matches only this star */
     
    181181  /* this catalog star matches more than one image star */
    182182  if (catalog.found[n] > -1) {
    183     catalog.measure[catalog.found[n]].flags |= BLEND_CATALOG;
    184     catalog.measure[Nmeas].flags |= BLEND_CATALOG;
     183    catalog.measure[catalog.found[n]].flags |= ID_MEAS_BLEND_OBJ;
     184    catalog.measure[Nmeas].flags |= ID_MEAS_BLEND_OBJ;
    185185  } else {
    186186    catalog.found[n] = Nmeas;
Note: See TracChangeset for help on using the changeset viewer.