IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 5:20:29 PM (17 years ago)
Author:
watersc1
Message:

Finished up my edits to the detrend cleanup, and some changes to my
copy of burntool and the pslib astrometry. Detrend cleanup has not
been tested yet. That's up next.

Location:
branches/czw_branch/cleanup
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup

  • branches/czw_branch/cleanup/ppMerge/src/ppMergeFiles.c

    r23463 r24951  
    3939{
    4040    pmFPAfile *file = pmFPAfileSelectSingle(config->files, "PPMERGE.INPUT", num);
    41     if (!pmReadoutReadChunk(readout, file->fits, 0, rows, 0, config)) {
     41    if (!pmReadoutReadChunk(readout, file->fits, 0, NULL, rows, 0, config)) {
    4242        psError(PS_ERR_UNKNOWN, false, "Unable to read readout.");
    4343        return false;
     
    4646    if (psMetadataLookupBool(&mdok, config->arguments, "INPUTS.MASKS")) {
    4747        pmFPAfile *file = pmFPAfileSelectSingle(config->files, "PPMERGE.INPUT.MASK", num);
    48         if (!pmReadoutReadChunkMask(readout, file->fits, 0, rows, 0, config)) {
     48        if (!pmReadoutReadChunkMask(readout, file->fits, 0, NULL, rows, 0, config)) {
    4949            psError(PS_ERR_UNKNOWN, false, "Unable to read readout mask.");
    5050            return false;
     
    5353    if (psMetadataLookupBool(&mdok, config->arguments, "INPUTS.VARIANCES")) {
    5454        pmFPAfile *file = pmFPAfileSelectSingle(config->files, "PPMERGE.INPUT.VARIANCE", num);
    55         if (!pmReadoutReadChunkVariance(readout, file->fits, 0, rows, 0, config)) {
     55        if (!pmReadoutReadChunkVariance(readout, file->fits, 0, NULL, rows, 0, config)) {
    5656            psError(PS_ERR_UNKNOWN, false, "Unable to read readout variance.");
    5757            return false;
     
    220220      case PPMERGE_TYPE_FRINGE:
    221221        outSuffix = "FRINGE";
     222        break;
    222223      default:
    223224        psAbort("Unknown frame type: %x", type);
Note: See TracChangeset for help on using the changeset viewer.