diff --git a/src/geomtools/detector/crystfel_frm.py b/src/geomtools/detector/crystfel_frm.py index 6ae4e1b2dc16222c1ed9527dd36b783b187e86db..0319151fa5eae26b3e90c3faf58c521679897bf2 100644 --- a/src/geomtools/detector/crystfel_frm.py +++ b/src/geomtools/detector/crystfel_frm.py @@ -4,6 +4,9 @@ import pandas as pd from cfelpyutils.geometry import load_crystfel_geometry from natsort import natsorted +from .geom import get_detector_shape + + HEADER_TEMPLATE = """\ ; {detector} geometry file written by geomtools ; You may need to edit this file to add: @@ -163,5 +166,8 @@ def read_crystfel_geom(filename, indexes=dict()): (np.bitwise_and(mask, mask_goodbits) != mask_goodbits) | (np.bitwise_and(mask, mask_badbits) != 0) ) + else: + shape = get_detector_shape(panels) + mask = np.zeros(shape, bool) return panels, geom.beam, mask