1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-04-05 17:35:55 +01:00

Previous commit failed to compile: needed to remove leftover lines.

This commit is contained in:
Andrew Zhen Ning Yong 2021-05-21 15:33:34 +01:00
parent 375b8fd038
commit af31d1564d

View File

@ -323,7 +323,6 @@ SampleFitResult XYSampleData::fit(std::vector<Minimizer *> &minimizer,
{
sampleResult = data_.fit(*(minimizer.back()), initCopy, v);
chi2PerDof = sampleResult.getChi2PerDof();
checkChi2PerDof(chi2PerDof, badSampleFits);
}
result[s] = sampleResult;
result.chi2_[s] = sampleResult.getChi2();
@ -331,7 +330,6 @@ SampleFitResult XYSampleData::fit(std::vector<Minimizer *> &minimizer,
{
result.model_[j].resize(nSample_);
result.model_[j][s] = sampleResult.getModel(j);
}
}
}