From 9ab16521f4753cb06cde3e89bd3c7f6ac1fafedd Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 16 Aug 2003 15:39:59 +0000 Subject: [PATCH] Minor tweaks for better debugging/monitoring --- src/Prep/TerraFit/terrafit.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Prep/TerraFit/terrafit.py b/src/Prep/TerraFit/terrafit.py index b84af07c..fc51ea5e 100755 --- a/src/Prep/TerraFit/terrafit.py +++ b/src/Prep/TerraFit/terrafit.py @@ -45,14 +45,15 @@ def run_terra(thresh, minnodes, count, factor, objName, pgmName): r,w,e = os.popen3(command) for line in e.readlines(): line = line.lstrip() + print line if line.startswith("points="): line = line.split()[0] npts = string.atof(line[len("points="):]) - print "npts = %d"%(npts) + print " npts = %d"%(npts) if line.startswith("error="): line = line.split()[0] error = string.atof(line[len("error="):]) - print "error = %d"%(error) + print " error = %.2f"%(error) return npts @@ -196,7 +197,7 @@ def main(): sys.exit(1) minnodes = 50 maxnodes = 600 - maxerror = 5.0 + maxerror = 50.0 factor = 1.0/30.0 infile = None quiet = 0 @@ -236,4 +237,4 @@ if __name__ == "__main__": except: sys.stderr.write("%s: %s\n" % (os.path.basename(sys.argv[0]), sys.exc_info()[1])) - \ No newline at end of file +