scidavis-r9

This commit is contained in:
arcan1s
2013-09-12 23:00:46 +04:00
parent bc17b9985d
commit 03628c371c
4 changed files with 36 additions and 12 deletions

View File

@ -0,0 +1,22 @@
--- 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;