Fix parse_h5meta

This commit is contained in:
usov_i 2022-02-03 17:12:48 +01:00
parent b401d2f459
commit 4bd6c6760e

View File

@ -2,9 +2,9 @@ import h5py
import numpy as np import numpy as np
from lmfit.models import Gaussian2dModel, GaussianModel from lmfit.models import Gaussian2dModel, GaussianModel
META_MATRIX = ("UB") META_MATRIX = ("UB", )
META_CELL = ("cell") META_CELL = ("cell", )
META_STR = ("name") META_STR = ("name", )
def read_h5meta(filepath): def read_h5meta(filepath):
"""Open and parse content of a h5meta file. """Open and parse content of a h5meta file.