Skip to content
Snippets Groups Projects
Commit 39bff513 authored by JohannesGaessler's avatar JohannesGaessler
Browse files

Fix value not being set to min for != NodeDensity

parent 4d98f0e9
Branches
No related tags found
No related merge requests found
......@@ -384,7 +384,7 @@ bool fastNLOInterpolBase::CheckX(double& x) {
return true;
}
//printf("x=%e, %e; fgrid=%e, %e; ratio: %e\n",x,x-1.,fgrid[0],fgrid[0]-1,x/fgrid[0]-1);
if ( x < fgrid[0] && false) {
if ( x < fgrid[0] && !fExtendLow) {
if ( x!=fLastVal[1] && fgrid[0]/x-1>1.e-6)
warn["CheckX"]<<"Value "<<x<<" is smaller than smallest node (min="<<fgrid[0]<<"). Using this first node."<<endl;
fLastVal[1] = x; // use this to monitor whenever there was an incident
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment