Mantid
Loading...
Searching...
No Matches
RealFFT.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2008 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
12
13namespace Mantid {
14namespace Algorithms {
20class MANTID_ALGORITHMS_DLL RealFFT : public API::ParallelAlgorithm {
21public:
23 const std::string name() const override { return "RealFFT"; }
25 const std::string summary() const override { return "Performs real Fast Fourier Transform"; }
26
28 int version() const override { return 1; }
29 const std::vector<std::string> seeAlso() const override {
30 return {"ExtractFFTSpectrum", "FFT", "FFTDerivative", "MaxEnt", "SassenaFFT", "FFTSmooth"};
31 }
33 const std::string category() const override { return "Arithmetic\\FFT"; }
34
35private:
36 // Overridden Algorithm methods
37 void init() override;
38 void exec() override;
39};
40
41} // namespace Algorithms
42} // namespace Mantid
Base class for algorithms that can run in parallel on all MPI ranks but not in a distributed fashion.
Performs a Fast Fourier Transform of real data.
Definition: RealFFT.h:20
const std::string summary() const override
Summary of algorithms purpose.
Definition: RealFFT.h:25
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso algorithms related to this algorithm.
Definition: RealFFT.h:29
const std::string category() const override
Algorithm's category for identification overriding a virtual method.
Definition: RealFFT.h:33
int version() const override
Algorithm's version for identification overriding a virtual method.
Definition: RealFFT.h:28
const std::string name() const override
Algorithm's name for identification overriding a virtual method.
Definition: RealFFT.h:23
Helper class which provides the Collimation Length for SANS instruments.