Changeset 25027 for branches/pap/ppMerge/src/ppMergeFiles.c
- Timestamp:
- Aug 7, 2009, 4:08:25 PM (17 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppMerge/src/ppMergeFiles.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/ppMerge/src/ppMergeFiles.c
r23463 r25027 39 39 { 40 40 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)) { 42 42 psError(PS_ERR_UNKNOWN, false, "Unable to read readout."); 43 43 return false; … … 46 46 if (psMetadataLookupBool(&mdok, config->arguments, "INPUTS.MASKS")) { 47 47 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)) { 49 49 psError(PS_ERR_UNKNOWN, false, "Unable to read readout mask."); 50 50 return false; … … 53 53 if (psMetadataLookupBool(&mdok, config->arguments, "INPUTS.VARIANCES")) { 54 54 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)) { 56 56 psError(PS_ERR_UNKNOWN, false, "Unable to read readout variance."); 57 57 return false; … … 220 220 case PPMERGE_TYPE_FRINGE: 221 221 outSuffix = "FRINGE"; 222 break; 222 223 default: 223 224 psAbort("Unknown frame type: %x", type);
Note:
See TracChangeset
for help on using the changeset viewer.
