Support new UB matrix format in ccl files

This commit is contained in:
usov_i 2022-05-06 11:19:25 +02:00
parent 2810cf3d2b
commit 4ebb343afb

View File

@ -56,7 +56,7 @@ META_VARS_FLOAT = (
"s2hl",
)
META_UB_MATRIX = ("ub1j", "ub2j", "ub3j")
META_UB_MATRIX = ("ub1j", "ub2j", "ub3j", "ub")
CCL_FIRST_LINE = (("idx", int), ("h", float), ("k", float), ("l", float))
@ -119,6 +119,9 @@ def parse_1D(fileobj, data_type):
metadata[variable] = float(value)
elif variable in META_UB_MATRIX:
if variable == "ub":
metadata["ub"] = np.array(value)
else:
if "ub" not in metadata:
metadata["ub"] = np.zeros((3, 3))
row = int(variable[-2]) - 1