You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the simulator generates random data for each detector image with np.random.uniform. It probably makes sense to have at least an option for sending blank frames (np.zeros), which is fast to generate and still useful for testing that tools can receive the data successfully.
We could extend that to simulating things like diffraction rings and crystallography peaks, to allow more complete testing of analysis software.
The text was updated successfully, but these errors were encountered:
From Sandor's talk today, a couple of programs that could be useful:
nonBragg simulates scattering from materials like water and ice.
MLFSOM can take a pdb protein structure and simulate Bragg peaks, including various sources of error.
nonBragg is in C, and MLFSOM in tcsh, so it may not be practical to integrate them directly, but potentially we could generate some fixed samples and overlay them with random noise in Python.
Currently, the simulator generates random data for each detector image with
np.random.uniform
. It probably makes sense to have at least an option for sending blank frames (np.zeros
), which is fast to generate and still useful for testing that tools can receive the data successfully.We could extend that to simulating things like diffraction rings and crystallography peaks, to allow more complete testing of analysis software.
The text was updated successfully, but these errors were encountered: