Mantid
Loading...
Searching...
No Matches
BackgroundFunction.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 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//----------------------------------------------------------------------
8// Includes
9//----------------------------------------------------------------------
11
13
14using namespace CurveFitting;
15
16using namespace Kernel;
17
18using namespace API;
19
20void BackgroundFunction::fit(const std::vector<double> &X, const std::vector<double> &Y) {
21 (void)X; // Avoid compiler warning
22 (void)Y; // Avoid compiler warning
23}
24
25} // namespace Mantid::CurveFitting::Functions
void fit(const std::vector< double > &X, const std::vector< double > &Y) override
Fits the function.