Skip to content
Snippets Groups Projects
Unverified Commit 0d5ab0c9 authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony Committed by GitHub
Browse files

Merge pull request #27685 from mantidproject/27878_fix_MayersSampleCorrection_with_dummy_pixels

Fix bug with dummy detectors in MayersSampleCorrection
parents 4310fa72 4e933cd8
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ void MayersSampleCorrection::exec() {
PARALLEL_START_INTERUPT_REGION
if (!spectrumInfo.hasDetectors(i) || spectrumInfo.isMonitor(i) ||
spectrumInfo.isMasked(i)) {
spectrumInfo.isMasked(i) || spectrumInfo.l2(i) == 0) {
continue;
}
......
......@@ -41,6 +41,7 @@ Powder Diffraction
------------------
- A bug has been fixed that prevented unicode strings being given as a lim file directory in polaris create_total_scattering_pdf merging banks.
- A bug has been fixed that caused Polaris.focus to fail with `do_absorption_Corrections=True`.
Engineering Diffraction
-----------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment