BraggPrediction: Rotation settings removed from BraggPredictionSettings

This commit is contained in:
2026-01-22 13:03:00 +01:00
parent 8c7bf61fa7
commit d3f311dc97
2 changed files with 1 additions and 8 deletions

View File

@@ -155,8 +155,7 @@ void IndexAndRefine::QuickPredictAndIntegrate(DataMessage &msg,
.high_res_A = experiment.GetBraggIntegrationSettings().GetDMinLimit_A(),
.ewald_dist_cutoff = ewald_dist_cutoff,
.max_hkl = 100,
.centering = outcome.symmetry.centering,
.image_number = static_cast<int>(-msg.number)
.centering = outcome.symmetry.centering
};
auto nrefl = prediction.Calc(outcome.experiment, latt, settings_prediction);

View File

@@ -15,12 +15,6 @@ struct BraggPredictionSettings {
float ewald_dist_cutoff = 0.0005;
int max_hkl = 100;
char centering = 'P';
// Rotation parameters
Coord rotation_axis = Coord(1, 0, 0);
int image_number = 0;
float wedge_size_deg = 0.1f;
float mosaicity_deg = 0.1f;
};
class BraggPrediction {