The HDF5 file contains the two-color diffraction patterns from the EuXFEL experiment analyzed in the manuscript. For each pattern with a specific pulse ID [pid], the following entries are present: "[pid]/data": Diffraction data, already background-corrected, as it was given to the reconstruction code. "[pid]/mask": Mask of the diffraction pattern. Ones indicate pixels to exclude. "[pid]/center": X,Y coordinates of the diffraction center "[pid]/pid" : Pulse ID A minimal python code to visualize the data is provided below: ########## import h5py import matplotlib.pyplot as plt from matplotlib.colors import LogNorm file = h5py.File("EuXFEL_twocolor.h5") for entry in file.keys(): pattern = file[entry]["data"][()] mask = file[entry]["mask"][()] plt.imshow(pattern*(1-mask), cmap="inferno", norm=LogNorm(vmin=100, clip=True)) plt.show() ########## For additional information or requests, please contact: Alessandro Colombo (ETH Zurich) alcolombo@phys.ethz.ch