{
if (((Integer)this.adjustForMap.get("adjustForSmoothingMethod")).intValue() == DefaultComplexBufferPredictorGenerator.LOWESS_SMOOTHING)
{
SmoothingCbResidual.setDblAt(thisPointCb,smoothingDataIndex);
SmoothingSmoother.useSufficient(false);
DblMatrix complexCbContribution = SmoothingSmoother.predict(new DblMatrix[]{SmoothingpH.getDblAt(smoothingDataIndex)});
thisPointCb = thisPointCb.minus(complexCbContribution);
//System.out.println("Done with one!");
}
else if (((Integer)this.adjustForMap.get("adjustForSmoothingMethod")).intValue() == DefaultComplexBufferPredictorGenerator.POLYNOMIAL_SMOOTHING)