Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-20 | Set crystal name in MTZ files | Thomas White | |
When using the GUI, it will be set to the corresponding indexing result name. | |||
2021-10-20 | Reject geometry file if wavelength isn't specified | Thomas White | |
2021-10-20 | image_hdf5_read_peaks_cxi: Make sure array is big enough | Thomas White | |
2021-10-20 | Fussiness | Thomas White | |
2021-10-20 | image_hdf5_read_header_to_cache: Make space for terminator | Thomas White | |
2021-10-20 | Add a comment | Thomas White | |
2021-10-13 | Make zlib dependency optional | Thomas White | |
2021-10-13 | Remove NCurses dependency | Thomas White | |
It's only used once, to get background colours for 'indexamajig --int-diag', itself a rarely used feature. The dependency itself seems to cause problems for some people, particularly those not using system libraries for everything. So I think it's better just to remove it, and use ANSI escape codes directly. | |||
2021-09-29 | Remove old references | Thomas White | |
2021-09-17 | Warn if in-memory CBF is attempted | Thomas White | |
2021-09-17 | Handle headers from in-memory HDF5s | Thomas White | |
2021-09-17 | Handle in-memory HDF5s | Thomas White | |
2021-09-17 | Avoid pointless passing of image/event | Thomas White | |
2021-09-07 | assplode(): Add some assertions | Thomas White | |
2021-09-07 | get_equiv: Bail out on error path | Thomas White | |
Error handling is sloppy here. | |||
2021-09-07 | check_box: Fix type used for sizeof | Thomas White | |
2021-09-07 | TakeTwo: Check for empty observed vector list | Thomas White | |
2021-09-07 | image_hdf5_read_header_to_cache: Remove double free on error path | Thomas White | |
2021-09-07 | fom_select_reflection_pairs: Keep zeroed intensities in dataset | Thomas White | |
Note the re-ordering of tasks, and the removal of 'continue'. | |||
2021-09-07 | init_fom: Clean up on error path | Thomas White | |
2021-09-07 | filter_noise_in_panel: Fix panel edge behaviour | Thomas White | |
2021-09-07 | lookup_panel: Check that panel name is not NULL | Thomas White | |
2021-09-07 | load_cell_from_file: Check fgets return value for first line | Thomas White | |
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 | write_to_xds: Add missing 'S' (!) | Thomas White | |
2021-08-20 | Mosflm: Add -n option when probing | Thomas White | |
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-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 | TakeTwo: Remove unused variables | Thomas White | |
2021-07-23 | TakeTwo: Avoid potential NULL dereference on error path | 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 | 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 | 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 | |
2021-07-21 | asdf: Remove unnecessary check | Thomas White | |
'changed' is initialised to zero, so there's no way this check can fail. | |||
2021-07-21 | Fix random_partiality() | Thomas White | |
2021-07-21 | Reduce variable scope where possible | Thomas White | |
2021-07-21 | Make sure that memory gets freed on realloc failure | Thomas White | |
2021-07-21 | Add missing cleanup on error paths | Thomas White | |