aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2012-10-21 18:11:15 -0700
committerThomas White <taw@physics.org>2012-10-21 21:28:24 -0700
commit6fecf05e83c13901e86fb84456536d9062a0fc4e (patch)
treeb9b1a34f39c030ae6c05230a6d1365194a49d9be /tests
parent897f86654afe36f57b7000a25c4489e1e534eede (diff)
indexamajig: Record number of saturated reflections in stream
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_check.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/integration_check.c b/tests/integration_check.c
index acadbdf8..7962e414 100644
--- a/tests/integration_check.c
+++ b/tests/integration_check.c
@@ -65,7 +65,7 @@ static void third_integration_check(struct image *image, int n_trials,
r = integrate_peak(image, 64, 64, &fsp, &ssp,
&intensity, &sigma, 10.0, 15.0, 17.0,
- 0, NULL);
+ 0, NULL, NULL);
if ( r == 0 ) {
mean_intensity += intensity;
@@ -127,7 +127,7 @@ static void fourth_integration_check(struct image *image, int n_trials,
r = integrate_peak(image, 64, 64, &fsp, &ssp,
&intensity, &sigma, 10.0, 15.0, 17.0,
- 0, NULL);
+ 0, NULL, NULL);
if ( r == 0 ) {
mean_intensity += intensity;
@@ -209,7 +209,7 @@ int main(int argc, char *argv[])
/* First check: no intensity -> no peak, or very low intensity */
r = integrate_peak(&image, 64, 64, &fsp, &ssp, &intensity, &sigma,
- 10.0, 15.0, 17.0, 0, NULL);
+ 10.0, 15.0, 17.0, 0, NULL, NULL);
STATUS(" First check: integrate_peak() returned %i", r);
if ( r == 0 ) {
@@ -235,7 +235,7 @@ int main(int argc, char *argv[])
}
r = integrate_peak(&image, 64, 64, &fsp, &ssp, &intensity, &sigma,
- 10.0, 15.0, 17.0, 0, NULL);
+ 10.0, 15.0, 17.0, 0, NULL, NULL);
if ( r ) {
ERROR(" Second check: integrate_peak() returned %i (wrong).\n",
r);
@@ -277,7 +277,7 @@ int main(int argc, char *argv[])
}
r = integrate_peak(&image, 64, 64, &fsp, &ssp, &intensity, &sigma,
- 10.0, 15.0, 17.0, 0, NULL);
+ 10.0, 15.0, 17.0, 0, NULL, NULL);
if ( r ) {
ERROR(" Fifth check: integrate_peak() returned %i (wrong).\n",
r);