Skip to content
Snippets Groups Projects
Commit 871408fb authored by Savici, Andrei T.'s avatar Savici, Andrei T.
Browse files

no need to verify

parent b8e3115d
No related merge requests found
...@@ -146,9 +146,6 @@ void MDNormDirectSC::exec() { ...@@ -146,9 +146,6 @@ void MDNormDirectSC::exec() {
// loop over all experiment infos // loop over all experiment infos
for (uint16_t expInfoIndex = 0; expInfoIndex < m_numExptInfos; for (uint16_t expInfoIndex = 0; expInfoIndex < m_numExptInfos;
expInfoIndex++) { expInfoIndex++) {
if (expInfoIndex > 0) {
m_accumulate = true;
}
// Check for other dimensions if we could measure anything in the original // Check for other dimensions if we could measure anything in the original
// data // data
bool skipNormalization = false; bool skipNormalization = false;
...@@ -164,6 +161,8 @@ void MDNormDirectSC::exec() { ...@@ -164,6 +161,8 @@ void MDNormDirectSC::exec() {
g_log.warning("Binning limits are outside the limits of the MDWorkspace. " g_log.warning("Binning limits are outside the limits of the MDWorkspace. "
"Not applying normalization."); "Not applying normalization.");
} }
//if more than one experiment info, keep accumulating
m_accumulate = true;
} }
// Set the display normalization based on the input workspace // Set the display normalization based on the input workspace
......
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