Mantid
Loading...
Searching...
No Matches
ConvTempCorrection.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2020 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
11#include "MantidCurveFitting/DllConfig.h"
12
13namespace Mantid {
14namespace CurveFitting {
15namespace Functions {
24class MANTID_CURVEFITTING_DLL ConvTempCorrection : public API::ParamFunction, public API::IFunction1D {
25public:
26 std::string name() const override { return "ConvTempCorrection"; }
27 const std::string category() const override { return "QuasiElastic"; }
28
29protected:
30 void function1D(double *out, const double *xValues, const size_t nData) const override;
31 void init() override;
32
33private:
34};
35
36} // namespace Functions
37} // namespace CurveFitting
38} // namespace Mantid
This is a specialization of IFunction for functions of one real argument.
Definition: IFunction1D.h:43
Implements the part of IFunction interface dealing with parameters.
Definition: ParamFunction.h:33
Temperature correction used in the convolution fitting tab within the IDA GUI.
const std::string category() const override
The categories the Fit function belong to.
std::string name() const override
Returns the function's name.
Helper class which provides the Collimation Length for SANS instruments.