Index: branches/eam_branches/gDiff.20200202/src/gDiffFiles.c
===================================================================
--- branches/eam_branches/gDiff.20200202/src/gDiffFiles.c	(revision 41260)
+++ branches/eam_branches/gDiff.20200202/src/gDiffFiles.c	(revision 41413)
@@ -1,10 +1,9 @@
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <stdio.h>
-#include <pslib.h>
-#include <psmodules.h>
-#include <psphot.h>
+/** @file gDiffFiles.c
+ *  @brief: image subtraction based on matched Gaussians profiles
+ *  @author Eugene Magnier @ IfA
+ *  @version $Revision: 1.12 $
+ *  @date $Date: 2020-01-25 $
+ *  Copyright 2020 Institute for Astronomy, University of Hawaii
+ */
 
 #include "gDiff.h"
@@ -12,11 +11,16 @@
 
 // Input files
-static const char *inputFiles[] = { "GDIFF.INPUT", "GDIFF.INPUT.MASK", "GDIFF.INPUT.VARIANCE",
-                                    "GDIFF.INPUT.SOURCES", "GDIFF.REF", "GDIFF.REF.MASK",
-                                    "GDIFF.REF.VARIANCE", "GDIFF.REF.SOURCES", NULL };
+static const char *inputFiles[] = { "GDIFF.INPUT",
+				    "GDIFF.INPUT.MASK",
+				    "GDIFF.INPUT.VARIANCE",
+                                    "GDIFF.INPUT.SOURCES",
+				    "GDIFF.REF",
+				    "GDIFF.REF.MASK",
+                                    "GDIFF.REF.VARIANCE",
+				    "GDIFF.REF.SOURCES", NULL };
 
 // Convolved files
 static const char *convFiles[] = { "GDIFF.INPUT.CONV", "GDIFF.INPUT.CONV.MASK", "GDIFF.INPUT.CONV.VARIANCE",
-                                   "GDIFF.REF.CONV", "GDIFF.REF.CONV.MASK", "GDIFF.REF.CONV.VARIANCE",
+                                   "GDIFF.REF.CONV",   "GDIFF.REF.CONV.MASK",   "GDIFF.REF.CONV.VARIANCE",
                                    NULL };
 
@@ -234,2 +238,3 @@
     return true;
 }
+
