IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 29, 2009, 3:39:49 PM (17 years ago)
Author:
giebink
Message:

Doxygen place holders added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20081230/ppArith/src/ppArithReadout.c

    r21087 r21229  
     1/** @file ppArithReadout.c
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup ppArith
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.2.32.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-01-30 01:39:32 $
     10 *  Copyright 2009 Institute for Astronomy, University of Hawaii
     11 */
     12
    113#ifdef HAVE_CONFIG_H
    214#include <config.h>
     
    1729    PS_ASSERT_PTR_NON_NULL(view, false);
    1830
    19     bool mdok;                          // Status of MD lookup
     31    bool mdok;                          /** Status of MD lookup */
    2032    bool isMask = psMetadataLookupBool(&mdok, config->arguments, "MASK");
    2133
    22     psImage *inImage1;  // Input image 1
    23     psImage *outImage;  // Output image
     34    psImage *inImage1;  /** Input image 1 */
     35    psImage *outImage;  /** Output image */
    2436    if (isMask) {
    2537        inImage1 = input1->mask;
     
    4254    PS_ASSERT_IMAGE_NON_NULL(inImage1, false);
    4355
    44     psImage *inImage2 = NULL;           // Input image 2
     56    psImage *inImage2 = NULL;           /** Input image 2 */
    4557    if (input2) {
    4658        inImage2 = isMask ? input2->mask : input2->image;
Note: See TracChangeset for help on using the changeset viewer.