AnalysisSettings had begun collecting per-method parameters - the calibrant was already in it, and the grid thresholds were about to be. That makes the structure every method reads grow whenever any one method gains a knob, and it puts a field in front of readers for whom it means nothing. So: AnalysisSettings keeps what all methods share, which for now is the mode, and each method gets a class of its own bound the same way. GridScanAnalysisSettings holds the protein-score threshold, the minimum cells per crystal, the decisive single-cell score, the maximum crystals reported and the indexing switch. CalibrationSettings holds the calibrant and the ring source. Both sit on DiffractionExperiment outside the per-run dataset member, both have an Import/Get pair, and both have their own endpoint - /config/grid_scan_analysis and /config/calibration - which is how every other settings group in this API is already reached. Grid indexing is no longer fixed in the stages table. It was turned off there on cost grounds, and that reasoning does not hold: a raster runs at up to 100 Hz, which the FFT indexer keeps up with, and a fixed-target serial experiment with a known cell wants ffbidx on every cell, where a raster that indexes is most of the measurement. So it is a setting, and DEFAULTS ON. It is additive rather than a change of answer - blobs are still found on the protein score, so indexing alters nothing about which cells are called crystals and only adds what was found in them, including the per-cell lattice count, which is the cheapest multi-lattice or cracked-crystal signal there is. That makes indexing the one stage a mode does not decide. AnalysisModeStages still carries a value for it, but only as the setting's default, and DiffractionExperiment::GetAnalysisStages - which is what every gate reads - substitutes the configured one. The table row is marked so nobody reads it as the mode's answer. The calibration knobs stay coupled to the mode but the rule now lives with them: CalibrationSettings::ApplyToAzimuthalIntegration moves azimuthal integration onto the CPU and supplies sectors where fewer than four were asked for, carrying the reason with it - the FPGA integration core holds 2048 bins in total, so 32 sectors leave 64 q bins, which cannot locate a ring. Stated there because it will otherwise read as an FPGA defect to be fixed back onto that path, and it is not one: the core is sized for a detector at full rate, and a calibration exposure is a few images at a few Hz. Both imports apply it, so the order the mode and the calibration settings are set in does not matter. CalibrationMethod moves from image_analysis/geom_refinement/PowderCalibration.h into common/CalibrationSettings.h, which that header now includes. One enum, so the setting and the code consuming it are not two vocabularies; every existing user sees it unchanged. The grid thresholds have one home and it is this class. The raster work owns AnalyzeGridScan's parameter surface and carries PROTEIN_SCORE_THRESHOLD_DEFAULT / MIN_BLOB_CELLS_DEFAULT beside that header today; the header here states the signature that replaces them, so the two do not become competing defaults. The beam size deliberately stays a separate argument to AnalyzeGridScan: it is measured, not configured. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EFEJG6WBQv8th4UJFNe53N
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
// SPDX-FileCopyrightText: 2026 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include "GridScanAnalysisSettings.h"
|
|
|
|
GridScanAnalysisSettings &GridScanAnalysisSettings::ProteinScoreThreshold(float input) {
|
|
protein_score_threshold = input;
|
|
return *this;
|
|
}
|
|
|
|
GridScanAnalysisSettings &GridScanAnalysisSettings::MinBlobCells(int64_t input) {
|
|
min_blob_cells = input;
|
|
return *this;
|
|
}
|
|
|
|
GridScanAnalysisSettings &GridScanAnalysisSettings::DecisiveSingleCellScore(float input) {
|
|
decisive_single_cell_score = input;
|
|
return *this;
|
|
}
|
|
|
|
GridScanAnalysisSettings &GridScanAnalysisSettings::MaxCrystals(int64_t input) {
|
|
max_crystals = input;
|
|
return *this;
|
|
}
|
|
|
|
GridScanAnalysisSettings &GridScanAnalysisSettings::Indexing(bool input) {
|
|
indexing = input;
|
|
return *this;
|
|
}
|
|
|
|
float GridScanAnalysisSettings::GetProteinScoreThreshold() const {
|
|
return protein_score_threshold;
|
|
}
|
|
|
|
int64_t GridScanAnalysisSettings::GetMinBlobCells() const {
|
|
return min_blob_cells;
|
|
}
|
|
|
|
float GridScanAnalysisSettings::GetDecisiveSingleCellScore() const {
|
|
return decisive_single_cell_score;
|
|
}
|
|
|
|
int64_t GridScanAnalysisSettings::GetMaxCrystals() const {
|
|
return max_crystals;
|
|
}
|
|
|
|
bool GridScanAnalysisSettings::IsIndexing() const {
|
|
return indexing;
|
|
}
|