Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Thomas Kluyver
Pycrystfel
Commits
e9f1694e
Commit
e9f1694e
authored
Jan 08, 2021
by
Thomas Kluyver
Browse files
Fix passing path to C code
parent
772a45a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
pycrystfel/bindings.pyx
View file @
e9f1694e
import
os
from
.
cimport
crystfel
def
progress_bar
(
val
,
total
,
text
):
...
...
@@ -5,6 +7,6 @@ def progress_bar(val, total, text):
def
inspect_geom_file
(
path
):
cdef
crystfel
.
detector
*
det
det
=
crystfel
.
get_detector_geometry
(
path
,
NULL
)
det
=
crystfel
.
get_detector_geometry
(
os
.
fsencode
(
path
)
,
NULL
)
print
(
"n_panels:"
,
det
.
n_panels
)
print
(
"panel names:"
,
[
det
.
panels
[
i
].
name
for
i
in
range
(
det
.
n_panels
)])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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