Files
Jungfraujoch/viewer/widgets/JFJochViewerImageStatistics.h
T
leonarski_fandClaude Opus 4.8 fa121f0079 jfjoch_viewer: show "Multiple lattices detected" in image statistics
Add a row after the Indexing solution that flags images with more than
one indexed lattice (indexing_lattice_count > 1).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-01 21:30:10 +02:00

40 lines
898 B
C++

// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#pragma once
#include <QWidget>
#include <QLabel>
#include "../../reader/JFJochReader.h"
class JFJochViewerImageStatistics : public QWidget {
Q_OBJECT
QLabel *source_name;
QLabel *sample_name;
QLabel *dataset_name;
QLabel *detector_name;
QLabel *exposure_time;
QLabel *rotation_angle_label;
QLabel *rotation_angle;
QLabel *spots;
QLabel *valid_values;
QLabel *indexed;
QLabel *multiple_lattices;
QLabel *bkg_estimate;
QLabel *res_estimate;
QLabel *masked_pixels;
QLabel *b_factor;
QLabel *profile_radius_label;
QLabel *profile_radius;
public:
JFJochViewerImageStatistics(QWidget *parent);
public slots:
void loadImage(std::shared_ptr<const JFJochReaderImage> image);
};