We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19dedd commit d59d63eCopy full SHA for d59d63e
1 file changed
src/main/java/org/jlab/clas/timeline/fitter/ALERTFitter.groovy
@@ -78,7 +78,7 @@ class ALERTFitter{
78
f1.setParameter(1, peak_location);
79
f1.setParameter(2, 1.0);
80
f1.setParameter(3, h1.getBinContent(0));
81
- if (maxz>0) f1.setParLimits(0, maxz*0.9,maxz*1.1);
+ if (maxz>0) f1.setParLimits(0, maxz*0.7,maxz*1.3);
82
f1.setParLimits(3, 0.0, 0.1*maxz);
83
f1.setParLimits(2,0,1.0);
84
f1.setParLimits(1,peak_location - sigma, peak_location + sigma);
@@ -167,7 +167,7 @@ class ALERTFitter{
167
double S = ftmp.getParameter(2)
168
169
// same validation as your code
170
- if (A > maxY * 0.3 &&
+ if (A > maxY * 0.4 &&
171
S < step && S > 0.1 &&
172
M < prevMean - prevSigma &&
173
hcut.integral() > 0.05 * entriesTotal)
0 commit comments