diff options
Diffstat (limited to 'libcrystfel/src/integration.h')
-rw-r--r-- | libcrystfel/src/integration.h | 7 |
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; |