IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2009, 12:00:45 PM (17 years ago)
Author:
giebink
Message:

Doxygen comments made consistent

File:
1 edited

Legend:

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

    r21229 r21239  
    66 *
    77 *  @author IfA
    8  *  @version $Revision: 1.2.32.2 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2009-01-30 01:39:32 $
     8 *  @version $Revision: 1.2.32.3 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-01-30 22:00:45 $
    1010 *  Copyright 2009 Institute for Astronomy, University of Hawaii
    1111 */
     
    2929    PS_ASSERT_PTR_NON_NULL(view, false);
    3030
    31     bool mdok;                          /** Status of MD lookup */
     31    bool mdok;                          ///< Status of MD lookup
    3232    bool isMask = psMetadataLookupBool(&mdok, config->arguments, "MASK");
    3333
    34     psImage *inImage1;  /** Input image 1 */
    35     psImage *outImage;  /** Output image */
     34    psImage *inImage1;  ///< Input image 1
     35    psImage *outImage;  ///< Output image
    3636    if (isMask) {
    3737        inImage1 = input1->mask;
     
    5454    PS_ASSERT_IMAGE_NON_NULL(inImage1, false);
    5555
    56     psImage *inImage2 = NULL;           /** Input image 2 */
     56    psImage *inImage2 = NULL;           ///< Input image 2
    5757    if (input2) {
    5858        inImage2 = isMask ? input2->mask : input2->image;
     
    7373
    7474    // Look up appropriate values
    75     const char *op = psMetadataLookupStr(NULL, config->arguments, "OPERATION"); // Operation to perform
     75    const char *op = psMetadataLookupStr(NULL, config->arguments, "OPERATION"); ///< Operation to perform
    7676
    7777    if (input2) {
Note: See TracChangeset for help on using the changeset viewer.