Skip to content
Snippets Groups Projects
Commit 65f00f8c authored by Martyn Gigg's avatar Martyn Gigg Committed by GitHub
Browse files

Merge pull request #19074 from mantidproject/19073_EQSANSPatchSensitivity_fixed_use_of_SpectrumInfo

Fixed EQSANSPatchSensitivity after SpectrumInfo rollout
parents 8564b573 080a21a7
No related branches found
No related tags found
No related merge requests found
...@@ -38,8 +38,8 @@ void EQSANSPatchSensitivity::exec() { ...@@ -38,8 +38,8 @@ void EQSANSPatchSensitivity::exec() {
const int numberOfSpectra = static_cast<int>(inputWS->getNumberHistograms()); const int numberOfSpectra = static_cast<int>(inputWS->getNumberHistograms());
auto &inSpectrumInfo = inputWS->mutableSpectrumInfo();
const auto &spectrumInfo = patchWS->spectrumInfo(); const auto &spectrumInfo = patchWS->spectrumInfo();
const auto &inSpectrumInfo = inputWS->spectrumInfo();
// Loop over all tubes and patch as necessary // Loop over all tubes and patch as necessary
for (int i = 0; i < nx_pixels; i++) { for (int i = 0; i < nx_pixels; i++) {
std::vector<int> patched_ids; std::vector<int> patched_ids;
...@@ -57,7 +57,7 @@ void EQSANSPatchSensitivity::exec() { ...@@ -57,7 +57,7 @@ void EQSANSPatchSensitivity::exec() {
for (int j = 0; j < ny_pixels; j++) { for (int j = 0; j < ny_pixels; j++) {
// EQSANS-specific: get detector ID from pixel coordinates // EQSANS-specific: get detector ID from pixel coordinates
int iDet = ny_pixels * i + j; int iDet = ny_pixels * i + j;
if (iDet > numberOfSpectra) { if (iDet >= numberOfSpectra) {
g_log.notice() << "Got an invalid detector ID " << iDet << '\n'; g_log.notice() << "Got an invalid detector ID " << iDet << '\n';
continue; continue;
} }
...@@ -70,7 +70,7 @@ void EQSANSPatchSensitivity::exec() { ...@@ -70,7 +70,7 @@ void EQSANSPatchSensitivity::exec() {
const MantidVec &YErrors = inputWS->readE(iDet); const MantidVec &YErrors = inputWS->readE(iDet);
// If this detector is masked, skip to the next one // If this detector is masked, skip to the next one
if (spectrumInfo.isMasked(i)) if (spectrumInfo.isMasked(iDet))
patched_ids.push_back(iDet); patched_ids.push_back(iDet);
else { else {
if (!inSpectrumInfo.isMasked(iDet)) { if (!inSpectrumInfo.isMasked(iDet)) {
...@@ -99,9 +99,8 @@ void EQSANSPatchSensitivity::exec() { ...@@ -99,9 +99,8 @@ void EQSANSPatchSensitivity::exec() {
// Apply patch // Apply patch
progress(0.91, "Applying patch"); progress(0.91, "Applying patch");
auto &spectrumInfo = inputWS->mutableSpectrumInfo();
for (auto patched_id : patched_ids) { for (auto patched_id : patched_ids) {
if (!spectrumInfo.hasDetectors(patched_id)) { if (!inSpectrumInfo.hasDetectors(patched_id)) {
g_log.warning() << "Spectrum " << patched_id g_log.warning() << "Spectrum " << patched_id
<< " has no detector, skipping (not clearing mask)\n"; << " has no detector, skipping (not clearing mask)\n";
continue; continue;
...@@ -109,13 +108,13 @@ void EQSANSPatchSensitivity::exec() { ...@@ -109,13 +108,13 @@ void EQSANSPatchSensitivity::exec() {
MantidVec &YValues = inputWS->dataY(patched_id); MantidVec &YValues = inputWS->dataY(patched_id);
MantidVec &YErrors = inputWS->dataE(patched_id); MantidVec &YErrors = inputWS->dataE(patched_id);
if (useRegression) { if (useRegression) {
YValues[0] = alpha + beta * spectrumInfo.position(patched_id).Y(); YValues[0] = alpha + beta * inSpectrumInfo.position(patched_id).Y();
YErrors[0] = error; YErrors[0] = error;
} else { } else {
YValues[0] = average; YValues[0] = average;
YErrors[0] = error; YErrors[0] = error;
} }
spectrumInfo.setMasked(patched_id, false); inSpectrumInfo.setMasked(patched_id, false);
} }
} }
} }
......
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