IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 1, 2009, 11:43:05 AM (17 years ago)
Author:
eugene
Message:

merging Doxygen templates added by Bill G

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppArith/src/ppArithReadout.c

    r21183 r21244  
     1/** @file ppArithReadout.c
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup ppArith
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-01 21:40:52 $
     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;
     
    6173
    6274    // Look up appropriate values
    63     const char *op = psMetadataLookupStr(NULL, config->arguments, "OPERATION"); // Operation to perform
     75    const char *op = psMetadataLookupStr(NULL, config->arguments, "OPERATION"); ///< Operation to perform
    6476
    6577    if (input2) {
Note: See TracChangeset for help on using the changeset viewer.