aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-05-30 11:50:03 -0700
committerThomas White <taw@physics.org>2013-05-30 11:50:03 -0700
commit9b7a434a1154e8f7d6ffbd86eace8534025bb7b1 (patch)
treed3e3c6247cae208bb9383bb062e0d6734f4ae693 /libcrystfel
parent0f5fc3a4fdeac81c78793600fe6efb433d44509d (diff)
Remove unused parameter
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/integration.c3
-rw-r--r--libcrystfel/src/integration.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/libcrystfel/src/integration.c b/libcrystfel/src/integration.c
index 10e2b8a8..16d5710a 100644
--- a/libcrystfel/src/integration.c
+++ b/libcrystfel/src/integration.c
@@ -1618,8 +1618,7 @@ static void integrate_rings(IntegrationMethod meth, Crystal *cr,
void integrate_all(struct image *image, IntegrationMethod meth,
- double ir_inn, double ir_mid, double ir_out,
- int integrate_saturated)
+ double ir_inn, double ir_mid, double ir_out)
{
int i;
diff --git a/libcrystfel/src/integration.h b/libcrystfel/src/integration.h
index 8edcb91f..7ea55143 100644
--- a/libcrystfel/src/integration.h
+++ b/libcrystfel/src/integration.h
@@ -68,7 +68,6 @@ typedef enum {
extern IntegrationMethod integration_method(const char *t, int *err);
extern void integrate_all(struct image *image, IntegrationMethod meth,
- double ir_inn, double ir_mid, double ir_out,
- int integrate_saturated);
+ double ir_inn, double ir_mid, double ir_out);
#endif /* INTEGRATION_H */