(i) add PRINT_LEVEL to the command block (0='nothing' to

3='everything'). This allows to tune the Minuit2 output. (ii) added the
possibilty to give the fit range in bins. For details see the docu.
This commit is contained in:
2012-10-25 14:44:16 +00:00
parent 8f057d9967
commit 6c8ce66e1d
34 changed files with 1084 additions and 247 deletions

View File

@@ -502,6 +502,10 @@ int main(int argc, char *argv[])
else
dataHandler = new PRunDataHandler(&info);
// read and convert all data
dataHandler->ConvertData();
// check if it has been successfull
bool success = dataHandler->IsAllDataAvailable();
if (!success) {
cout << endl << ">> any2many **ERROR** Couldn't read all data files, will quit ..." << endl;