13 lines
312 B
C++
13 lines
312 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include "../common/SpotToSave.h"
|
|
|
|
struct JFJochReaderSpots {
|
|
int64_t start_image;
|
|
int64_t stride;
|
|
std::vector<std::vector<SpotToSave>> spots;
|
|
};
|