Commit 5c802d75 authored by Andrey Filippov's avatar Andrey Filippov

fixed fwhm scale

parent e4ac0da9
...@@ -4487,10 +4487,10 @@ public boolean LevenbergMarquardt( ...@@ -4487,10 +4487,10 @@ public boolean LevenbergMarquardt(
int sampleIndex, // -1 for center int sampleIndex, // -1 for center
boolean corrected // boolean corrected //
){ ){
int r0Index=2; // index of "r0" parameter int r0Index=2; // index of "r0" parameter (fwhm is twice that)
double [] corrPars=corrected?getCorrPar(channel,sampleIndex):null; double [] corrPars=corrected?getCorrPar(channel,sampleIndex):null;
double r=(sampleIndex>=0)?getSampleRadius(sampleIndex):0.0; double r=(sampleIndex>=0)?getSampleRadius(sampleIndex):0.0;
double fwhm=curvatureModel[channel].getAr( r, corrPars)[r0Index]; double fwhm=2.0 * curvatureModel[channel].getAr( r, corrPars)[r0Index];
return fwhm; return fwhm;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment