Index: trunk/ippToPsps/src/Batch.c
===================================================================
--- trunk/ippToPsps/src/Batch.c	(revision 30147)
+++ trunk/ippToPsps/src/Batch.c	(revision 30191)
@@ -2,4 +2,6 @@
  *
  *  @ingroup ippToPsps
+ *
+ *  Source for all methods in the Batch class
  *
  *  @author IfA
@@ -25,5 +27,5 @@
 static bool haveSurveyType = false;
 
-
+// some getter methods
 static bool gotResultsPath() {return haveResultsPath;}
 static bool gotFitsInPath() {return haveFitsInPath;}
@@ -35,10 +37,14 @@
   Gets uncalibrated instrumental flux from magnitude
   */
-__inline bool getFlux(const float exposureTime, const float magnitude, float* flux, const float magnitudeErr, float* fluxErr) {
+__inline bool getFlux(
+        const float exposureTime, 
+        const float magnitude, 
+        float* flux,
+        const float magnitudeErr,
+        float* fluxErr) {
 
     *flux = powf(10.0, -0.4*magnitude) / exposureTime;
     if (!isfinite(*flux) || *flux < 0.000001) return false;
     if (fluxErr) *fluxErr = fabsf((magnitudeErr * *flux)/1.085736);
-//      if (fluxErr)    printf("Mag = %03.03f, Flux = %03.03f, Mag err = %03.03f, Flux Err = %03.03f\n", magnitude, *flux, magnitudeErr, *fluxErr);
 
     return true;
@@ -87,5 +93,4 @@
 
     psFree(this->pmconfig);
-
 
     for(uint32_t i=0; i<this->numOfInputFiles; i++) free(this->inputFiles[i]);
@@ -335,5 +340,5 @@
 
 /**
-  Constructor
+  Constructor. Takes a Batch object and initialises it.
   */
 bool new_Batch(Batch *this) {
