IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 18, 2006, 5:24:09 PM (20 years ago)
Author:
Paul Price
Message:

Adding pmReadoutWriteNext, which is to be used in concert with pmReadoutReadNext. Updated pmFPAWrite, pmChipWrite, pmCellWrite to optionally not write the pixels (i.e., PHU only), so that an output file should always have a PHU. This necessitated some small changes to the way the 'concepts' are written, in the case that they don't exist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/astrom/pmFPAfile.c

    r6872 r6896  
    634634    // pmFPAWrite takes care of all PHUs as needed
    635635    if (view->chip == -1) {
    636         pmFPAWrite (fpa, fits, NULL);
     636        pmFPAWrite (fpa, fits, NULL, true);
    637637        return true;
    638638    }
     
    660660
    661661    if (view->cell == -1) {
    662         pmChipWrite (chip, fits, NULL);
     662        pmChipWrite (chip, fits, NULL, true);
    663663        return true;
    664664    }
     
    670670
    671671    if (view->readout == -1) {
    672         pmCellWrite (cell, fits, NULL);
     672        pmCellWrite (cell, fits, NULL, true);
    673673        return true;
    674674    }
Note: See TracChangeset for help on using the changeset viewer.