Index: trunk/pswarp/src/pswarpPixelFraction.c
===================================================================
--- trunk/pswarp/src/pswarpPixelFraction.c	(revision 21183)
+++ trunk/pswarp/src/pswarpPixelFraction.c	(revision 21323)
@@ -1,2 +1,14 @@
+/** @file pswarpPixelFraction.c
+ *
+ *  @brief
+ *
+ *  @ingroup pswarp
+ *
+ *  @author IfA
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2009-02-05 20:44:04 $
+ *  Copyright 2009 Institute for Astronomy, University of Hawaii
+ */
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
@@ -30,5 +42,5 @@
     bool status; 
 
-    float minFrac = psMetadataLookupF32(NULL, config->arguments, "ACCEPT.FRAC"); // Minimum fraction
+    float minFrac = psMetadataLookupF32(NULL, config->arguments, "ACCEPT.FRAC"); ///< Minimum fraction
 
     // load the recipe
@@ -43,8 +55,8 @@
     psAssert (status, "MASK.OUTPUT was not defined");
 
-    psImage *image = readout->image;    // Image of interest
-    psImage *mask = readout->mask;      // Mask image
+    psImage *image = readout->image;    ///< Image of interest
+    psImage *mask = readout->mask;      ///< Mask image
 
-    int numCols = image->numCols, numRows = image->numRows; // Size of image
+    int numCols = image->numCols, numRows = image->numRows; ///< Size of image
     long numPix = numCols * numRows;
 
@@ -52,5 +64,5 @@
     int xMin = INT_MAX, xMax = -INT_MAX, yMin = INT_MAX, yMax = -INT_MAX;
 
-    long numBad = 0;                     // Number of bad pixels
+    long numBad = 0;                     ///< Number of bad pixels
     for (int y = 0; y < numRows; y++) {
         for (int x = 0; x < numCols; x++) {
@@ -74,6 +86,6 @@
     }
 
-    float goodFrac = (numPix - numBad) / (float)numPix; // Fraction of good pixels
-    bool accept = (goodFrac >= minFrac ? true : false); // Accept this readout?
+    float goodFrac = (numPix - numBad) / (float)numPix; ///< Fraction of good pixels
+    bool accept = (goodFrac >= minFrac ? true : false); ///< Accept this readout?
 
     if (stats) {
