fixed missing read call in PMsr2Data

This commit is contained in:
suter_a 2012-10-29 13:46:55 +00:00
parent 6c8ce66e1d
commit e1585a807e
2 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,7 @@ NEW 2012-05-12 added dump_header. This is a little program which dumps the
NEW 2012-04-24 added a first version for negative muon fitting. At the same
time substaintial bug fixing has been carried out (mainly the
logx/logy handling).
FIXED 2012-10-29 fixed missing read call in PMsr2Data.
FIXED 2012-09-23 fixed wrong chisq output in musrview if expected chisq is
present.
FIXED 2012-05-30 fixed RRF bug in single histo plotting.

View File

@ -526,6 +526,8 @@ int PMsr2Data::ReadRunDataFile()
else
fDataHandler = new PRunDataHandler(fMsrHandler);
fDataHandler->ReadData();
bool success = fDataHandler->IsAllDataAvailable();
if (!success) {
cerr << endl << ">> msr2data: **WARNING** Could not read all data files, will continue without the data file information..." << endl;