Expected behavior
When using SumFiles=True expect a single workspace of summed individual input
Actual behavior
returns two workspaces that seem to have identical histories but different data when plotted
Steps to reproduce the behavior
Script below - you will need to change the code pointing to the files.
# import mantid algorithms, numpy and matplotlib
from mantid.simpleapi import *
import matplotlib.pyplot as plt
import numpy as np
import sys
# setting stuff up
#######################
output = os.path.normpath("~/Desktop/2010536-Alison")
instrument = 'IRIS'
ConfigService.Instance().setString('defaultsave.directory', output)
ConfigService.Instance().setString('default.instrument', instrument)
# "list" of run numbers should be CSV string
runs = '96294,96295'
ISISIndirectDiffractionReduction(InputFiles=runs,
SumFiles=True,
OutputWorkspace='DiffractionReductions',
Instrument='IRIS',
Mode='diffspec',
SpectraRange=[107,109])
print('Done!')
Platforms affected
Mac OS (M1 chip), Workbench 6.1.0