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
bb0cd5c3
Commit
bb0cd5c3
authored
Jul 03, 2012
by
Thomas White
Browse files
check_hkl: Add Angstrom column as well
parent
6734aced
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/check_hkl.c
View file @
bb0cd5c3
...
...
@@ -282,13 +282,13 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
fprintf
(
fh
,
"1/d centre # refs Possible Compl "
"Meas Red SNR Std dev Mean
\n
"
);
"Meas Red SNR Std dev Mean
d(A)
\n
"
);
for
(
i
=
0
;
i
<
NBINS
;
i
++
)
{
double
cen
;
cen
=
rmins
[
i
]
+
(
rmaxs
[
i
]
-
rmins
[
i
])
/
2
.
0
;
fprintf
(
fh
,
"%10.3f %8i %8i %6.2f %10i %5.1f"
" %5.2f %10.2f %10.2f
\n
"
,
" %5.2f %10.2f %10.2f
%8.2f
\n
"
,
cen
*
1.0e-9
,
measured
[
i
],
possible
[
i
],
...
...
@@ -297,7 +297,7 @@ static void plot_shells(RefList *list, UnitCell *cell, const SymOpList *sym,
(
double
)
measurements
[
i
]
/
measured
[
i
],
snr
[
i
]
/
(
double
)
measured
[
i
],
sqrt
(
var
[
i
]
/
measured
[
i
]),
mean
[
i
]);
mean
[
i
]
,
(
1
.
0
/
cen
)
*
1e10
);
}
...
...
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