aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/integration.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-05-28 18:11:01 +0200
committerThomas White <taw@physics.org>2013-05-28 18:11:29 +0200
commit2c34acf304930286ab165b5059bbf8782333390d (patch)
tree806910e91b487436ed1a30df9cea54b87c987f7c /libcrystfel/src/integration.h
parenta2e0045930dfc005160ec8d10becde3847cd8048 (diff)
Add "-cen"
Diffstat (limited to 'libcrystfel/src/integration.h')
-rw-r--r--libcrystfel/src/integration.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libcrystfel/src/integration.h b/libcrystfel/src/integration.h
index fe939e21..913297fa 100644
--- a/libcrystfel/src/integration.h
+++ b/libcrystfel/src/integration.h
@@ -33,8 +33,8 @@
#include <config.h>
#endif
-#define INTEGRATION_DEFAULTS_RINGS (INTEGRATION_RINGS)
-#define INTEGRATION_DEFAULTS_PROF2D (INTEGRATION_PROF2D)
+#define INTEGRATION_DEFAULTS_RINGS (INTEGRATION_RINGS | INTEGRATION_CENTER)
+#define INTEGRATION_DEFAULTS_PROF2D (INTEGRATION_PROF2D | INTEGRATION_CENTER)
/**
* IntegrationMethod:
@@ -56,7 +56,8 @@ typedef enum {
/* Bits at the top of the IntegrationMethod are flags which modify the
* behaviour of the integration. */
- INTEGRATION_SATURATED = 256
+ INTEGRATION_SATURATED = 256,
+ INTEGRATION_CENTER = 512,
} IntegrationMethod;