aboutsummaryrefslogtreecommitdiff
path: root/src/detector.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-02-26 10:58:13 +0100
committerThomas White <taw@physics.org>2010-02-26 13:40:11 +0100
commit86dd71e8640394f4e4f5aa71b2e5f51f5fea4a11 (patch)
treee7039c5d4e9b5477bc1e350e0330d157125d5c9f /src/detector.h
parentb4664bc2a399463bd4e01f331a153749b3947b8f (diff)
Handle images as floats rather than int16_t
Also, remove bloom - it's not a useful model for what really happens and takes too long (this isn't a detector simulation..)
Diffstat (limited to 'src/detector.h')
-rw-r--r--src/detector.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/detector.h b/src/detector.h
index 4361d580..f71768c6 100644
--- a/src/detector.h
+++ b/src/detector.h
@@ -38,8 +38,7 @@ struct detector
int n_panels;
};
-extern void record_image(struct image *image, int do_water, int do_poisson,
- int do_bloom);
+extern void record_image(struct image *image, int do_water, int do_poisson);
extern struct panel *find_panel(struct detector *det, int x, int y);