IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 5, 2010, 10:16:10 AM (16 years ago)
Author:
Paul Price
Message:

Merging branches/pap_delete/ into trunk after successful testing. This provides automatic deletion of the convolved images from the diff stage.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/ppSub/src/ppSubArguments.c

    r27143 r27596  
    8787    psMetadataAddBool(arguments, PS_LIST_TAIL, "-photometry", 0, "Perform photometry?", NULL);
    8888    psMetadataAddF32(arguments, PS_LIST_TAIL, "-zp", 0, "Zero point for photometry", NAN);
    89     psMetadataAddBool(arguments, PS_LIST_TAIL, "-inverse", 0, "Generate inverse subtractions?", NULL);
     89    psMetadataAddBool(arguments, PS_LIST_TAIL, "-inverse", 0, "Generate inverse subtractions?", false);
     90    psMetadataAddBool(arguments, PS_LIST_TAIL, "-save-inconv", 0, "Save input convolved images?", false);
     91    psMetadataAddBool(arguments, PS_LIST_TAIL, "-save-refconv", 0, "Save reference convolved images?", false);
    9092    psMetadataAddBool(arguments, PS_LIST_TAIL, "-visual", 0, "Show diagnostic plots", NULL);
    9193
     
    154156    }
    155157
     158    data->saveInConv = psMetadataLookupBool(NULL, arguments, "-save-inconv");
     159    data->saveRefConv = psMetadataLookupBool(NULL, arguments, "-save-refconv");
     160
    156161    if (psMetadataLookupBool(NULL, arguments, "-visual")) {
    157162        pmVisualSetVisual(true);
Note: See TracChangeset for help on using the changeset viewer.