aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-03-23 15:38:38 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:21 +0100
commit93edf713312e949034d79507d464cf79549a874f (patch)
tree9a5be01ee9462e7ed92f6cba12334fe8263d4e5d
parent2ef8c12a392e23a1155225a3c35ed429599dc50d (diff)
Don't count hot pixels
The hot pixel rejection stuff was removed a while ago
-rw-r--r--src/peaks.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/peaks.c b/src/peaks.c
index e02e9747..e5ba5337 100644
--- a/src/peaks.c
+++ b/src/peaks.c
@@ -258,7 +258,6 @@ static void search_peaks_in_panel(struct image *image, float threshold,
double f_ss = 0.0;
double intensity = 0.0;
int nrej_dis = 0;
- int nrej_hot = 0;
int nrej_pro = 0;
int nrej_fra = 0;
int nrej_bad = 0;
@@ -389,9 +388,9 @@ static void search_peaks_in_panel(struct image *image, float threshold,
ncull = 0;
}
-// STATUS("%i accepted, %i box, %i hot, %i proximity, %i outside panel, "
+// STATUS("%i accepted, %i box, %i proximity, %i outside panel, "
// "%i in bad regions, %i badrow culled.\n",
-// nacc, nrej_dis, nrej_hot, nrej_pro, nrej_fra, nrej_bad, ncull);
+// nacc, nrej_dis, nrej_pro, nrej_fra, nrej_bad, ncull);
}