Mantid
Loading...
Searching...
No Matches
ChudleyElliotSQE.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2007 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
9// Mantid Coding standars <http://www.mantidproject.org/Coding_Standards>
10// Mantid Headers from the same project
11// Mantid headers from other projects
13// 3rd party library headers (N/A)
14// standard library headers (N/A)
15
16namespace API {
17//----------------------------------------------------------------------
18// Forward declaration
19//----------------------------------------------------------------------
20class Jacobian;
21} // namespace API
22
23namespace Mantid {
24namespace CurveFitting {
25namespace Functions {
29class MANTID_CURVEFITTING_DLL ChudleyElliotSQE : public FunctionQDepends {
30
31public:
32 std::string name() const override { return "ChudleyElliotSQE"; }
33 const std::string category() const override { return "QuasiElastic"; }
34 void function1D(double *out, const double *xValues, const size_t nData) const override;
35 void functionDeriv1D(Mantid::API::Jacobian *jacobian, const double *xValues, const size_t nData) override;
36
37protected:
38 void declareParameters() override;
39};
40
41} // namespace Functions
42} // namespace CurveFitting
43} // namespace Mantid
Represents the Jacobian in IFitFunction::functionDeriv.
Definition: Jacobian.h:22
Chudley-Elliots jump diffusion model.
std::string name() const override
Returns the function's name.
const std::string category() const override
The categories the Fit function belong to.
This is a specialization of IFunction1D for functions having the magnitude of the momentum transfer (...
Helper class which provides the Collimation Length for SANS instruments.