aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-12Zero-weight negative intensity peaks in prediction refinementThomas White
Strongly negative peaks can occur if there are unmasked bad pixels. These cause the refinement to diverge badly. This change stabilises the refinement such that it works even in these cases. But of course, the real solution is to mask out those pixels. Negative intensity peaks are unlikely to show up "for real" in the peak search results (because we look for strong peaks!). However, if the intensity is negative, we aren't even sure that the peak exists at all and have no reason to assume it should be close to the Bragg condition.
2022-07-07indexamajig: Remove separate waitpid() calls when cleaning up last processesThomas White
2022-07-07indexamajig: --asapo-wait-for-stream doesn't require an argumentThomas White
2022-07-07indexamajig: Make sure data format is initialisedThomas White
2022-07-06indexamajig: Reset z->request_sent after receiving ZMQ replyThomas White
2022-07-06indexamajig: Add timeout for ZMQ socketThomas White
2022-07-06indexamajig: Add profiling and last_task info for ZMQ fetchThomas White
2022-07-06GUI: Invoke programs without pathThomas White
Including the path wasn't working very well. One of the problems is that it prevents the use of a wrapper script for the programs, which is needed for certain environments. This commit just removes the path prefixes altogether.
2022-07-06Merge branch 'container-test'Thomas White
2022-07-06CI: Build "latest" container only on master branchThomas White
2022-06-23indexamajig: Add --asapo-wait-for-streamThomas White
2022-06-22indexamajig: Wrap ZMQ parameters into separate structureThomas White
2022-06-22indexamajig: Wrap ASAP::O parameters up inside separate structureThomas White
2022-06-20tests/file-wait: Use older type of function definitionThomas White
The definition with the "function" keyword doesn't work on plain 'sh'.
2022-06-20Simplify DockerfileThomas White
2022-06-20Add Dockerfile and CI config for building imageThomas White
2022-06-17ASAP::O: Simplify by removing stream switching logicThomas White
2022-06-16ASAP::O: Exit quicker (and with explanation) if setup failsThomas White
2022-06-09pair_peaks: Use fabs instead of abs for floating point valuesThomas White
2022-06-09Remove some unused variablesThomas White
2022-06-08Meson: Update wrap for libccp4cThomas White
2022-06-02Meson: Don't look for cJSON unless Seedee is foundThomas White
2022-06-02indexamajig: Make all three input options mutually exclusiveThomas White
2022-06-02Update documentation to include ASAP::O and SeedeeThomas White
2022-06-02tests/stream_roundtrip: Clean up stream afterwardsThomas White
2022-06-02Merge branch 'asapo-consumer'Thomas White
2022-06-02Meson: Change HAVE_ASAPO conf_data from '1' to 'true'Thomas White
See 13a36408f3b867938cb029a9d11d952113d9bf64
2022-06-02ASAP::O: Add last_task for ASAPO fetchThomas White
2022-06-02Add worker ID to profiling dataThomas White
2022-06-02Add profiling for bad region generationThomas White
2022-06-02Use isfinite() instead of isnan() || isinf()Thomas White
These FP calls seem to be slower than expected. Using only one doubles the speed.
2022-06-02Fix horrific Seedee memory leakThomas White
2022-06-02indexamajig: Add --asapo-streamThomas White
2022-06-02ASAP::O: Add profilingThomas White
2022-06-02Seedee deserializationThomas White
2022-06-02indexamajig: Track metadata (e.g. for ASAP::O)Thomas White
2022-06-02ASAP::O: Add profiling bitsThomas White
2022-06-02ASAP::O: Give up if there are no streams at allThomas White
2022-06-02Add instance ID and pipeline stepThomas White
2022-06-02Generate placeholder filename/event earlierThomas White
Previously, a placeholder was put in the queue ("ZMQdata //" or "ASAPOdata //"), and replaced by image_read_data_block. Instead, the "final" placeholder can be put in the queue already. Note that ASAP::O, at least, will replace this placeholder with a filename delivered by the data transport.
2022-06-02ASAP::O: Increase timeout to 3 secondsThomas White
2022-06-02ASAP::O: Set path to "auto"Thomas White
2022-06-02ASAP::O: Comment out repetitive status messageThomas White
2022-06-02ASAP::O: Fix call to get filenameThomas White
2022-06-02ASAP::O: Pass filename throughThomas White
2022-06-02ASAP::O: Fix commentsThomas White
2022-06-02indexamajig(1): Mention ASAP::OThomas White
2022-06-02ASAP::O: Fix stream switchingThomas White
2022-06-02Refuse to overwrite an existing streamThomas White
With online processing, we might end up with a very long stream. It should not be so easily deleted if indexamajig is restarted!
2022-06-02ASAP::O: Fix memory leaksThomas White