From e1585a807ef07a47b40cced1e9dc6c278bd7d8cc Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Mon, 29 Oct 2012 13:46:55 +0000 Subject: [PATCH] fixed missing read call in PMsr2Data --- ChangeLog | 1 + src/classes/PMsr2Data.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index d3f17096..6d7e623a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/src/classes/PMsr2Data.cpp b/src/classes/PMsr2Data.cpp index fa338408..5b61dd4d 100644 --- a/src/classes/PMsr2Data.cpp +++ b/src/classes/PMsr2Data.cpp @@ -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;