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
9bd287bf
Commit
9bd287bf
authored
Jul 09, 2011
by
Thomas White
Committed by
Thomas White
Feb 22, 2012
Browse files
Put selection routines in the right order
parent
45d75531
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/partialator.c
View file @
9bd287bf
...
...
@@ -475,9 +475,6 @@ int main(int argc, char *argv[])
STATUS
(
"Performing initial scaling.
\n
"
);
full
=
scale_intensities
(
images
,
n_usable_patterns
,
reference
);
select_reflections_for_refinement
(
images
,
n_usable_patterns
,
full
,
have_reference
);
/* Iterate */
for
(
i
=
0
;
i
<
n_iter
;
i
++
)
{
...
...
@@ -510,6 +507,8 @@ int main(int argc, char *argv[])
}
/* Refine the geometry of all patterns to get the best fit */
select_reflections_for_refinement
(
images
,
n_usable_patterns
,
comp
,
have_reference
);
refine_all
(
images
,
n_usable_patterns
,
det
,
comp
,
nthreads
,
fhg
,
fhp
);
...
...
@@ -518,9 +517,6 @@ int main(int argc, char *argv[])
struct
image
*
cur
=
&
images
[
j
];
update_partialities
(
cur
,
&
n_expected
,
&
n_found
,
&
n_notfound
);
nobs
+=
select_scalable_reflections
(
cur
->
reflections
,
reference
);
...
...
@@ -531,9 +527,6 @@ int main(int argc, char *argv[])
full
=
scale_intensities
(
images
,
n_usable_patterns
,
reference
);
select_reflections_for_refinement
(
images
,
n_usable_patterns
,
full
,
have_reference
);
fclose
(
fhg
);
fclose
(
fhp
);
...
...
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