pkgbuild/scidavis/multipeakfit.h.patch
2013-09-12 23:00:46 +04:00

23 lines
891 B
Diff

--- src/MultiPeakFit.h.old 2008-04-17 01:53:25.000000000 +0400
+++ src/MultiPeakFit.h 2013-09-12 22:40:34.965752536 +0400
@@ -48,6 +48,9 @@
static QString generateFormula(int order, PeakProfile profile);
static QStringList generateParameterList(int order);
static QStringList generateExplanationList(int order);
+
+ //! Used by the GaussFit and LorentzFit derived classes to calculate initial values for the parameters
+ void guessInitialValues();
private:
QString logFitInfo(double *par, int iterations, int status, const QString& plotName);
@@ -57,9 +60,6 @@
void insertPeakFunctionCurve(double *x, double *y, int peak);
void storeCustomFitResults(double *par);
- //! Used by the GaussFit and LorentzFit derived classes to calculate initial values for the parameters
- void guessInitialValues();
-
//! Number of peaks
int d_peaks;