IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 14, 2009, 6:39:06 PM (17 years ago)
Author:
eugene
Message:

mod to pmReadoutReadChunk API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeFiles.c

    r24782 r24795  
    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;
Note: See TracChangeset for help on using the changeset viewer.