IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 30, 2010, 3:45:08 PM (16 years ago)
Author:
Paul Price
Message:

Branching to branches/pap_delete for development of deletion of convolved diffs.

  • ppSub will now only write the convolved images if explicitly requested on the command-line.
  • diff_skyfile.pl only requests convolved images for warps (because we don't need to run magic on stacks).
  • magic_process.pl deletes the convolved images when done.
  • If magic_process.pl can't find the convolved image to use (e.g., it's already been deleted because we're re-running magic), then it is created on the fly using ppSubConvolve and the previously calculated convolution kernel.
Location:
branches/pap_delete
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/pap_delete/ppSub/src/ppSubArguments.c

    r27143 r27537  
    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.