16 lines
856 B
C
16 lines
856 B
C
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_AZIMUTHALINTEGRATIONCPU_H
|
|
#define JFJOCH_AZIMUTHALINTEGRATIONCPU_H
|
|
|
|
#include "../common/AzimuthalIntegration.h"
|
|
#include "../common/AzimuthalIntegrationProfile.h"
|
|
|
|
void AzimuthalIntegrationCPU(const AzimuthalIntegration &azint, AzimuthalIntegrationProfile& result, const int32_t *data);
|
|
void AzimuthalIntegrationCPU(const AzimuthalIntegration &azint, AzimuthalIntegrationProfile& result, const uint32_t *data);
|
|
void AzimuthalIntegrationCPU(const AzimuthalIntegration &azint, AzimuthalIntegrationProfile& result, const uint16_t *data);
|
|
void AzimuthalIntegrationCPU(const AzimuthalIntegration &azint, AzimuthalIntegrationProfile& result, const int16_t *data);
|
|
|
|
#endif //JFJOCH_AZIMUTHALINTEGRATIONCPU_H
|