Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-03 | Fix typo and failing tests from previous commit | Thomas White | |
2021-09-03 | Reject geometry file if fs and ss directions are not specified | Thomas White | |
2021-08-20 | get_hkl: Complain more loudly if CCP4 libraries are not available | Thomas White | |
2021-08-20 | write_to_xds: Add missing 'S' (!) | Thomas White | |
2021-08-20 | Mosflm: Add -n option when probing | Thomas White | |
2021-08-20 | Update AUTHORS | Thomas White | |
2021-08-19 | Search for OpenCL header with OpenCL | Nicholas Devenish | |
Previously, this was searching for OpenCL, and then trying to use the OpenCL header from only system locations. | |||
2021-08-19 | Meson: Check for SLURM headers as well as library | Thomas White | |
It seems that some systems have "-lslurm" but no <slurm/slurm.h>. Therefore, we need to check for both. Of course, ideally the outer test using pkg-config should work. | |||
2021-08-16 | This is CrystFEL 0.10.00.10.0 | Thomas White | |
2021-08-16 | GUI: Avoid crash when trying to index no image | Thomas White | |
2021-08-13 | partialator: Relax rejection criterion for profile radius | Thomas White | |
The previous cutoff of 0.2*reflection_separation seems to have been too conservative. It cuts out over 1000 crystals from the 8000 crystals in one of the regression tests. Examining the values shows that 0.5 is better value. It's also a realistic physical limit - more than this, and the reflections should be overlapping. | |||
2021-08-13 | Increase threshold for integration warning | Thomas White | |
The warning about "XXX reflections couldn't be integrated" is tiresome - it appears for practically every indexed pattern because there are always some reflections that fall in bad regions or at panel edges. This suppresses the warning unless the number of integration failures is more than a quarter of the total number of reflections. | |||
2021-08-12 | Updates for manual pages | Thomas White | |
2021-08-12 | CrystFELImageView: Fix adjustment semantics | Thomas White | |
This changes how CrystFELImageView handles its adjustments for the GtkScrollable interface, to match the GTK examples. In particular, it adds a call to g_object_ref_sink() which prevents premature destruction of the adjustments when the GUI is closed down. | |||
2021-08-11 | Add a missing include | Thomas White | |
2021-08-10 | GUI: Use integer conversion for FoM minimum measurements | Thomas White | |
2021-07-23 | GUI: Expose partialator --no-logs | Thomas White | |
2021-07-23 | GUI: Write partialator log files ("pr-logs") in working folder | Thomas White | |
2021-07-23 | partialator: Add --log-folder | Thomas White | |
2021-07-23 | image_hdf5_write: Avoid weird pass-by-reference | Thomas White | |
2021-07-23 | Add field widths to all sscanf("%s") | Thomas White | |
2021-07-23 | indexamajig: Fix error path when worker pipe is closed mid-chunk | Thomas White | |
2021-07-23 | TakeTwo: Remove unused variables | Thomas White | |
2021-07-23 | TakeTwo: Avoid potential NULL dereference on error path | Thomas White | |
2021-07-23 | partial_sim: Fix printf format string | Thomas White | |
2021-07-23 | rtnl_cmp: Don't use rational type for intermediate result | Thomas White | |
See 4fbe2e349908a53032b3f23c2180a46e4f770c92. | |||
2021-07-23 | Formatting | Thomas White | |
2021-07-23 | scale_one_crystal: Remove unused exclusion total | Thomas White | |
2021-07-23 | indexamajig: Fix retry if file can't be opened with --wait-for-file | Thomas White | |
2021-07-23 | write_{radius,angle}_grid: Fix error path | Thomas White | |
2021-07-23 | pattern_sim: Remove duplicate assignment | Thomas White | |
2021-07-23 | pattern_sim: Rename shadowed variables | Thomas White | |
2021-07-23 | pattern_sim: Add missing error check | Thomas White | |
2021-07-23 | try_status: Remove duplicate assignment | Thomas White | |
2021-07-23 | SLURM: Fix printf type | Thomas White | |
2021-07-23 | do_op/get_matrix_name: Rename shadow variables | Thomas White | |
2021-07-23 | stream_make_index: Remove unused assignment | Thomas White | |
2021-07-23 | read_crystal: Remove unused varibales | Thomas White | |
2021-07-23 | spectrum_get_density_at_k: Switch order of checks | Thomas White | |
The old way could potentially read beyond the bounds of the array. | |||
2021-07-23 | rtnl_add: Don't use rational type for intermediate result | Thomas White | |
It's confusing and unnecessary. | |||
2021-07-23 | asdf: Rename shadow variable | Thomas White | |
2021-07-22 | GUI: Really use temporary folder for single-shot indexing | Thomas White | |
Somehow, I missed out the actual "chdir" call! | |||
2021-07-22 | GUI: Fix logic for ambiguity response | Thomas White | |
2021-07-22 | get_crystfel_exe: Fix logic | Thomas White | |
2021-07-22 | cell_explorer: Fix bug in cell enforcement | Thomas White | |
2021-07-22 | Clean up shadowed variables | Thomas White | |
2021-07-21 | read_cbf_data: Fix types | Thomas White | |
'buf' has to be char *, otherwise "buf+len" isn't portable. 'len_read' has to be int, because that's the return type of gzread. If the value is immediately put into a size_t, the sign information is lost and we can no longer tell if gzread() failed. | |||
2021-07-21 | do_integral: Remove unnecessary assignments | Thomas White | |
These local variables were being assigned just before returning. | |||
2021-07-21 | safe_khalf: Use NAN instead of 0.0/0.0 | Thomas White | |
2021-07-21 | image_hdf5_read_peaks_cxi: Fix error checks | Thomas White | |