(1) changed normalization of maximum likelihood. (2) ascii export from canvas adds initial space for empty column for easier parsing. (3) fix of some typos

This commit is contained in:
2013-11-08 11:55:43 +00:00
parent 258a0ce336
commit 392cd0b4b3
5 changed files with 24 additions and 21 deletions

View File

@ -492,6 +492,7 @@ Double_t PFunction::EvalNode(PFuncTreeNode &node)
if (denominator == 0.0) {
cerr << endl << "**PANIC ERROR**: PFunction::EvalNode: division by 0.0";
cerr << endl << "**PANIC ERROR**: PFunction::EvalNode: requested operation: " << EvalNode(node.children[0]) << "/" << EvalNode(node.children[1]);
cerr << endl << ">> " << fFuncString.Data() << endl;
cerr << endl;
assert(0);
}