IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 14, 2006, 2:40:02 PM (20 years ago)
Author:
Paul Price
Message:

Adding functions to write masks. For this to work, had to add mask handling to pmHDUGenerate, and figured I may as well add weights as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAWrite.h

    r9949 r9983  
    77/// @author Paul Price, IfA
    88///
    9 /// @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    10 /// @date $Date: 2006-11-13 22:15:05 $
     9/// @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10/// @date $Date: 2006-11-15 00:40:02 $
    1111///
    1212/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
     
    6767               );
    6868
     69/// Write a cell mask to a FITS file
     70///
     71/// Generates CELL.TRIMSEC, CELL.BIASSEC and the HDU pixels if required.  Writes the concepts to the various
     72/// locations, and then the HDU mask to the FITS file.
     73bool pmCellWriteMask(pmCell *cell,      ///<  Cell to write
     74                     psFits *fits,      ///<  FITS file to which to write
     75                     psDB *db           ///<  Database handle for "concepts" update
     76                    );
     77
     78/// Write a chip mask to a FITS file
     79///
     80/// Generates CELL.TRIMSEC, CELL.BIASSEC and the HDU pixels if required.  Writes the concepts to the various
     81/// locations, and then the HDU mask to the FITS file.
     82bool pmChipWriteMask(pmChip *chip,      ///<  Chip to write
     83                     psFits *fits,      ///<  FITS file to which to write
     84                     psDB *db           ///<  Database handle for "concepts" update
     85                    );
     86
     87/// Write an FPA mask to a FITS file
     88///
     89/// Generates CELL.TRIMSEC, CELL.BIASSEC and the HDU pixels if required.  Writes the concepts to the various
     90/// locations, and then the HDU mask to the FITS file.
     91bool pmFPAWriteMask(pmFPA *fpa,         ///<  FPA to write
     92                    psFits *fits,       ///<  FITS file to which to write
     93                    psDB *db            ///<  Database handle for "concepts" update
     94                   );
     95
    6996/// Write a FITS table from the cell's analysis metadata.
    7097///
Note: See TracChangeset for help on using the changeset viewer.