19 lines
626 B
C++
19 lines
626 B
C++
// Copyright (2019-2023) Paul Scherrer Institute
|
|
|
|
#ifndef JUNGFRAUJOCH_SPOTFINDINGSETTINGS_H
|
|
#define JUNGFRAUJOCH_SPOTFINDINGSETTINGS_H
|
|
|
|
#include <cstdint>
|
|
|
|
struct SpotFindingSettings {
|
|
float signal_to_noise_threshold; // STRONG_PIXEL in XDS
|
|
int64_t photon_count_threshold; // Threshold in photon counts
|
|
int64_t min_pix_per_spot; // Minimum pixels per spot
|
|
int64_t max_pix_per_spot; // Maximum pixels per spot
|
|
float high_resolution_limit;
|
|
float low_resolution_limit;
|
|
bool preview_indexed_only;
|
|
};
|
|
|
|
#endif //JUNGFRAUJOCH_SPOTFINDINGSETTINGS_H
|