From 5598807a938f9eea3f3663f770f598b6ece8edbc Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 4 Dec 2009 12:00:18 +0100 Subject: Fix counting of patterns --- src/process_hkl.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/process_hkl.c') diff --git a/src/process_hkl.c b/src/process_hkl.c index 0cb784bf..aed9856e 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -339,7 +339,10 @@ int main(int argc, char *argv[]) rval = fgets(line, 1023, fh); if ( strncmp(line, "New pattern", 11) == 0 ) { - n_patterns++; + if ( n_patterns == 0 ) { + n_patterns++; + continue; + } if ( n_patterns % config_every == 0 ) { process_reflections(ref, trueref, counts, @@ -350,6 +353,7 @@ int main(int argc, char *argv[]) if ( n_patterns == config_stopafter ) break; + n_patterns++; } r = sscanf(line, "%i %i %i %i", &h, &k, &l, &intensity); @@ -357,8 +361,6 @@ int main(int argc, char *argv[]) if ( (h==0) && (k==0) && (l==0) ) continue; - //if ( (abs(h)>3) || (abs(k)>3) || (abs(l)>3) ) continue; - if ( !config_maxonly ) { integrate_intensity(ref, h, k, l, intensity); integrate_count(counts, h, k, l, 1); -- cgit v1.2.3