Skip to content
Snippets Groups Projects
Commit 962ef02d authored by Rene Brun's avatar Rene Brun
Browse files

Fix shadowed variables.

git-svn-id: http://root.cern.ch/svn/root/trunk@23420 27541ba8-7e3a-0410-8455-c3a389f83636
parent 5410b874
No related branches found
No related tags found
No related merge requests found
......@@ -3609,13 +3609,13 @@ void TMultiDimFit::Print(Option_t *option) const
if (i != fNVariables-1) cout << ", ";
}
cout << ") = ";
for (Int_t i = 0; i < fNCoefficients; i++) {
for (i = 0; i < fNCoefficients; i++) {
if (i != 0)
cout << endl << "\t" << (fCoefficients(i) < 0 ? "- " : "+ ")
<< TMath::Abs(fCoefficients(i));
else
cout << fCoefficients(i);
for (Int_t j = 0; j < fNVariables; j++) {
for (j = 0; j < fNVariables; j++) {
Int_t p = fPowers[fPowerIndex[i] * fNVariables + j];
switch (p) {
case 1: break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment