Skip to content
Snippets Groups Projects
Commit 0454ae9b authored by Bertram Kopf's avatar Bertram Kopf
Browse files

fix in script StatisticalTools

parent 4349aa0c
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,6 @@ class StatisticalTools
}
static double BIC(double NLL, int ndf, int nEvts){
return 2.*NLL+2.*ndf*log(nEvts);
return 2.*NLL+ndf*log(nEvts);
}
};
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