IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 5, 2009, 10:44:04 AM (17 years ago)
Author:
eugene
Message:

merging Doxygen comments by Bill G from eam_branch_20081230

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pswarp/src/pswarpSetMaskBits.c

    r21183 r21323  
     1/** @file pswarpSetMaskBits.c
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup pswarp
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-05 20:44:04 $
     10 *  Copyright 2009 Institute for Astronomy, University of Hawaii
     11 */
     12
    113# include "pswarp.h"
    214
    3 // This function is called by the stand-alone pswarp program to set the mask values in the
    4 // config file.  It sets the named mask values MASK.PSPHOT and MARK.PSPHOT in the PSPHOT
    5 // recipe.  Functions or programs which call psphotReadout as a library function must set these
    6 // named mask values in the PSPHOT recipe on their own.  This function should only be called
    7 // after the first header of the input mask image has been loaded and the named mask bits
    8 // updated in the config metadata.
    9 
     15/** This function is called by the stand-alone pswarp program to set the mask values in the
     16 * config file.  It sets the named mask values MASK.PSPHOT and MARK.PSPHOT in the PSPHOT
     17 * recipe.  Functions or programs which call psphotReadout as a library function must set these
     18 * named mask values in the PSPHOT recipe on their own.  This function should only be called
     19 * after the first header of the input mask image has been loaded and the named mask bits
     20 * updated in the config metadata.
     21 */
    1022bool pswarpSetMaskBits (pmConfig *config) {
    1123
    12     psImageMaskType maskIn = 0x00;                      // mask for the input image
    13     psImageMaskType markIn = 0x00;                      // mark for the input image
    14     psImageMaskType maskOut = 0x00;                     // mask for the output image
     24    psImageMaskType maskIn = 0x00;                      ///< mask for the input image
     25    psImageMaskType markIn = 0x00;                      ///< mark for the input image
     26    psImageMaskType maskOut = 0x00;                     ///< mask for the output image
    1527
    1628    // this function sets the required single-image mask bits
Note: See TracChangeset for help on using the changeset viewer.