You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "Data Loading" tab, MSlice has an option to "Load and Merge" data which sums all the selected datafiles and returns a single workspace. It would be good if a normalisation factor for each file could be included somehow. There should be three options for normalisation factors:
User specified
Integrated proton current
Summed of uncertainties
Detailed description.
The "Load" and "Load and Merge" code shares the same load_workspace function code here with a keyword option merge. It internally uses the Mantid Loadalgorithm but for merge=True passes a single string with + between each filename, taking advantage of Mantid's MultipleFileProperty (docs here to cause Load to sum all the input files. There is no easy way for a normalisation factor to be included in this call, so the implementation will have to load each file manually, apply the normalisation factor and sum the result.
In addition, there is the complication that reduced data files at both ISIS and SNS are already normalised, so this normalisation factor should be "undone" first. E.g. given N workspaces with normalisation factors A1, A2, ... AN, the final workspace intensity should be:
The text was updated successfully, but these errors were encountered:
Summary
In the "Data Loading" tab, MSlice has an option to "Load and Merge" data which sums all the selected datafiles and returns a single workspace. It would be good if a normalisation factor for each file could be included somehow. There should be three options for normalisation factors:
Detailed description.
The "Load" and "Load and Merge" code shares the same
load_workspace
function code here with a keyword optionmerge
. It internally uses the MantidLoad
algorithm but formerge=True
passes a single string with+
between each filename, taking advantage of Mantid'sMultipleFileProperty
(docs here to causeLoad
to sum all the input files. There is no easy way for a normalisation factor to be included in this call, so the implementation will have to load each file manually, apply the normalisation factor and sum the result.In addition, there is the complication that reduced data files at both ISIS and SNS are already normalised, so this normalisation factor should be "undone" first. E.g. given N workspaces with normalisation factors A1, A2, ... AN, the final workspace intensity should be:
The text was updated successfully, but these errors were encountered: