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
e21d69a9
Commit
e21d69a9
authored
Nov 09, 2011
by
Thomas White
Browse files
partialator: Use an I/sig(I) cutoff for determining scalability
parent
667c06f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/partialator.c
View file @
e21d69a9
...
...
@@ -155,14 +155,15 @@ static int select_scalable_reflections(RefList *list, RefList *reference)
refl
=
next_refl
(
refl
,
iter
)
)
{
int
sc
=
1
;
double
v
;
double
v
,
esd
;
/* This means the reflection was not found on the last check */
if
(
get_redundancy
(
refl
)
==
0
)
sc
=
0
;
if
(
get_partiality
(
refl
)
<
0
.
1
)
sc
=
0
;
v
=
fabs
(
get_intensity
(
refl
));
if
(
v
<
0
.
1
)
sc
=
0
;
/* FIXME: Yuk */
esd
=
get_esd_intensity
(
refl
);
if
(
v
<
0
.
5
*
esd
)
sc
=
0
;
/* If we are scaling against a reference set, we additionally
* require that this reflection is in the reference list. */
...
...
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