Fix read_detector_data usage in open_h5meta
This commit is contained in:
parent
5d1fb85d91
commit
18efa5db54
@ -60,10 +60,8 @@ def open_h5meta(filepath):
|
|||||||
dict: A dictionary with h5 names and their detector data and angles.
|
dict: A dictionary with h5 names and their detector data and angles.
|
||||||
"""
|
"""
|
||||||
data = dict()
|
data = dict()
|
||||||
angles = dict()
|
|
||||||
h5meta_content = read_h5meta(filepath)
|
h5meta_content = read_h5meta(filepath)
|
||||||
for file in h5meta_content["filelist"]:
|
for file in h5meta_content["filelist"]:
|
||||||
data[file] = read_detector_data(file)
|
data[file] = read_detector_data(file)
|
||||||
angles[file] = read_detector_data(file)
|
|
||||||
|
|
||||||
return data, angles
|
return data
|
||||||
|
Loading…
x
Reference in New Issue
Block a user