IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 7, 2010, 10:44:29 AM (16 years ago)
Author:
Paul Price
Message:

Reverse merging to the 'new old version' of ppMops (r28043), since this is what MOPS wants right now. The 'new version' is at /branches/ppTranslate/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppTranslate/src/ppMops.c

    r28212 r28623  
    2020    }
    2121
    22     if (!ppMopsPurgeDuplicates(detections)) {
     22    ppMopsDetections *merged = ppMopsMerge(detections); // Merged detections
     23    psFree(detections);
     24    if (!merged) {
    2325        psErrorStackPrint(stderr, "Unable to merge detections");
    2426        exit(PS_EXIT_SYS_ERROR);
    2527    }
    2628
    27     if (!ppMopsWrite(detections, args)) {
     29    if (!ppMopsWrite(merged, args)) {
    2830        psErrorStackPrint(stderr, "Unable to write detections");
    2931        exit(PS_EXIT_SYS_ERROR);
    3032    }
    3133
    32     psFree(detections);
     34    psFree(merged);
    3335    psFree(args);
    3436
Note: See TracChangeset for help on using the changeset viewer.