diff --git a/ChangeLog b/ChangeLog index 98cb092f..1a6ab43e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,7 @@ NEW the chi^2 calculation in single-histogram and asymmetry fits is parallelized if musrfit is built using a compiler supporting OpenMP (e.g. GCC >= 4.2) Using --disable-omp this feature can be disabled on the configure level. NEW any2many: force the user to define the exact NeXus ouput format (HDF4,HDF5,XML) +FIXED crash in non-interactive mode of musrt0 when data file doesn't exist (MUSR-133) FIXED wrong asymmetry fit plotting if data range is not provided (MUSR-203) FIXED broken run-list interface to msr2data in musredit/musrgui (MUSR-202) FIXED some severe issues in the run-number-digit determination of msr2data introduced in late 2010 diff --git a/src/musrt0.cpp b/src/musrt0.cpp index 3d0f85b5..5a361d2b 100644 --- a/src/musrt0.cpp +++ b/src/musrt0.cpp @@ -356,7 +356,7 @@ Int_t main(Int_t argc, Char_t *argv[]) } } - if (getT0FromPromptPeak) { + if (getT0FromPromptPeak && success) { Int_t histoNo = -1; UInt_t t0Bin = 0;