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
ac65847e
Commit
ac65847e
authored
Jun 24, 2011
by
Thomas White
Browse files
Count badly refined images at end
parent
4aeeb2ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/partialator.c
View file @
ac65847e
...
...
@@ -176,6 +176,7 @@ int main(int argc, char *argv[])
char
*
reference_file
=
NULL
;
double
*
reference
=
NULL
;
RefList
*
reference_list
=
NULL
;
int
n_dud
;
/* Long options */
const
struct
option
longopts
[]
=
{
...
...
@@ -448,9 +449,12 @@ int main(int argc, char *argv[])
}
STATUS
(
"Final scale factors:
\n
"
);
n_dud
=
0
;
for
(
i
=
0
;
i
<
n_usable_patterns
;
i
++
)
{
if
(
images
[
i
].
pr_dud
)
n_dud
++
;
STATUS
(
"%4i : %5.2f
\n
"
,
i
,
images
[
i
].
osf
);
}
STATUS
(
"%i images could not be refined on the last cycle.
\n
"
,
n_dud
);
/* Output results */
write_reflist
(
outfile
,
full
,
images
[
0
].
indexed_cell
);
...
...
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