added missing *** FIT DID NOT CONVERGE *** check :-(

This commit is contained in:
nemu 2009-06-25 08:38:22 +00:00
parent 8cb69a2011
commit 2114c1670c

View File

@ -2692,7 +2692,8 @@ bool PMsrHandler::HandleStatisticEntry(PMsrLines &lines)
tstr = lines[i].fLine;
tstr.Remove(TString::kLeading, ' ');
if (tstr.Length() > 0) {
if (!tstr.BeginsWith("#") && (!tstr.BeginsWith("STATISTIC")) && (!tstr.BeginsWith("chisq")) && (!tstr.BeginsWith("maxLH"))) {
if (!tstr.BeginsWith("#") && !tstr.BeginsWith("STATISTIC") && !tstr.BeginsWith("chisq") &&
!tstr.BeginsWith("maxLH") && !tstr.BeginsWith("*** FIT DID NOT CONVERGE ***")) {
cout << endl << ">> PMsrHandler::HandleStatisticEntry: **SYNTAX ERROR** in line " << lines[i].fLineNo;
cout << endl << ">> '" << lines[i].fLine.Data() << "'";
cout << endl << ">> not a valid STATISTIC block line";