aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/integration.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-04-01 16:48:35 +0200
committerThomas White <taw@physics.org>2014-04-01 16:48:35 +0200
commit1e7a4f59997dea30d0b7aa720684d82fd0d3c9c0 (patch)
treef1b039c0876b1f2772f22c6570e0b2bab17a60d5 /libcrystfel/src/integration.h
parent27a1684b8ede89de565f125f228f82f8885bef9e (diff)
Fix resolution cutoff so that it (apparently) works
Diffstat (limited to 'libcrystfel/src/integration.h')
-rw-r--r--libcrystfel/src/integration.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcrystfel/src/integration.h b/libcrystfel/src/integration.h
index e023318a..ee13b980 100644
--- a/libcrystfel/src/integration.h
+++ b/libcrystfel/src/integration.h
@@ -3,11 +3,11 @@
*
* Integration of intensities
*
- * Copyright © 2012-2013 Deutsches Elektronen-Synchrotron DESY,
+ * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY,
* a research centre of the Helmholtz Association.
*
* Authors:
- * 2010-2013 Thomas White <taw@physics.org>
+ * 2010-2014 Thomas White <taw@physics.org>
*
* This file is part of CrystFEL.
*
@@ -56,6 +56,7 @@ typedef enum {
* @INTEGRATION_PROF2D: Two dimensional profile fitting
* @INTEGRATION_SATURATED: Integrate saturated reflections
* @INTEGRATION_CENTER: Center the peak in the box prior to integration
+ * @INTEGRATION_RESCUT: Stop integrating at the diffraction limit of the crystal
*
* An enumeration of all the available integration methods.
**/
@@ -71,6 +72,7 @@ typedef enum {
* behaviour of the integration. */
INTEGRATION_SATURATED = 256,
INTEGRATION_CENTER = 512,
+ INTEGRATION_RESCUT = 1024,
} IntegrationMethod;