summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-18 22:48:25 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-18 22:48:25 +0100
commit7fa82e55ecb673165d7eba14e00e9c0479cf980f (patch)
treeb11497bbe12fd3a976cdf82f390dad8c5cc172ef
parent20f0e4a68816ae1207f3acf6dfde3d61f927c90e (diff)
remove debug output
-rw-r--r--src/GipfelWidget.cxx1
-rw-r--r--src/ProjectionLSQ.cxx3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/GipfelWidget.cxx b/src/GipfelWidget.cxx
index 907564e..f6a662e 100644
--- a/src/GipfelWidget.cxx
+++ b/src/GipfelWidget.cxx
@@ -114,7 +114,6 @@ GipfelWidget::load_image(char *file) {
pan->parms.k1 = 0.0;
}
}
- fprintf(stderr, "%f %f\n", pan->parms.k0, pan->parms.k1);
return 0;
}
diff --git a/src/ProjectionLSQ.cxx b/src/ProjectionLSQ.cxx
index 7841ef6..1349f4c 100644
--- a/src/ProjectionLSQ.cxx
+++ b/src/ProjectionLSQ.cxx
@@ -211,7 +211,6 @@ ProjectionLSQ::lsq(const Hills *h, ViewParams *parms,
status = gsl_multifit_fdfsolver_iterate (s);
if (status) {
- fprintf(stderr, "gsl_multifit_fdfsolver_iterate: %d\n", status);
break;
}
}
@@ -228,8 +227,6 @@ ProjectionLSQ::lsq(const Hills *h, ViewParams *parms,
gsl_multifit_fdfsolver_free (s);
- fprintf(stderr, "k0 %f, k1 %f\n", parms->k0, parms->k1);
-
return 0;
}