Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
0787f3a9
Commit
0787f3a9
authored
Jul 12, 2011
by
Thomas White
Browse files
Ignore PR-dud images when scaling
parent
35745413
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/hrs-scaling.c
View file @
0787f3a9
...
...
@@ -54,6 +54,8 @@ static double iterate_scale(struct image *images, int n, RefList *reference)
double
den
=
0
.
0
;
double
corr
;
if
(
image
->
pr_dud
)
continue
;
for
(
refl
=
first_refl
(
image
->
reflections
,
&
iter
);
refl
!=
NULL
;
refl
=
next_refl
(
refl
,
iter
)
)
...
...
src/partialator.c
View file @
0787f3a9
...
...
@@ -201,6 +201,8 @@ static void select_reflections_for_refinement(struct image *images, int n,
int
n_fewmatch
=
0
;
int
n_ref
=
0
;
if
(
images
[
i
].
pr_dud
)
continue
;
for
(
refl
=
first_refl
(
images
[
i
].
reflections
,
&
iter
);
refl
!=
NULL
;
refl
=
next_refl
(
refl
,
iter
)
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment