IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 10, 2009, 12:52:50 PM (17 years ago)
Author:
watersc1
Message:

Fixes things that I thought were merged, but then discovered hadn't been. This includes the changes for cleanup, astrometry, and burntool.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/ppImage/src/ppImageOptions.c

    r25299 r25324  
    6666    options->markValue       = 0x00;    // A safe bit for internal marking
    6767    options->burntoolMask    = 0x00;    // Suspect pixels that fall where a burntool trail is expected.
    68     options->burntoolTrails  = 0x00;    // Which types of burntool areas to mask.
     68    options->burntoolTrails  = 0x07;    // Which types of burntool areas to mask.
    6969    // crosstalk options
    7070    options->doCrosstalkMeasure = false;   // measure crosstalk
     
    248248    options->applyParity = psMetadataLookupBool(NULL, recipe, "APPLY.CELL.PARITY");
    249249
    250     options->burntoolTrails = psMetadataLookupU16(&status, recipe, "BURNTOOL.TRAILS");
     250    options->burntoolTrails = psMetadataLookupS32(&status, recipe, "BURNTOOL.TRAILS");
     251    fprintf(stderr,"TRAILS: %d %d %d\n",options->burntoolTrails,psMetadataLookupS32(&status,recipe,"BURNTOOL.TRAILS"),status);
    251252    if (!status) {
    252253      psWarning("BURNTOOL.TRAILS not found in recipe: setting to default value.\n");
Note: See TracChangeset for help on using the changeset viewer.