Index: trunk/Mars/hawc/star.C
===================================================================
--- trunk/Mars/hawc/star.C	(revision 19820)
+++ trunk/Mars/hawc/star.C	(revision 19821)
@@ -29,6 +29,12 @@
 int star(const char *datafile, const char *outpath=".")
 {
+    // minimum number of pixels that can make an island
+    int mincount = 0;
+
+    // minimum size for a valid island
+    double minsize = 25;
+
     // The delta t [ns/deg] for the image cleaning
-    double deltat = 17.5;
+    double deltat = 2.5;
 
     // --------------------------------------------------------
@@ -118,7 +124,7 @@
     // Instantiate the image cleaning as described in the TRAC
     MImgCleanTime clean;
-    clean.SetMinCount(0);
-    clean.SetMinSize(25);
-    clean.SetDeltaT(2.5);
+    clean.SetMinCount(mincount);
+    clean.SetMinSize(minsize);
+    clean.SetDeltaT(deltat);
 
     // Instantiate the calculation of the image parameters
