Skip to content

Commit

Permalink
Merge pull request #38683 from mantidproject/fix-argus-loading-crash
Browse files Browse the repository at this point in the history
Fix crash from loading into Muon Analysis interface
  • Loading branch information
SilkeSchomann authored Jan 27, 2025
2 parents ccfa649 + ef97d87 commit 727a603
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def load_workspace_from_filename(filename, input_properties=DEFAULT_INPUTS, outp
load_result["OutputWorkspace"] = [MuonWorkspaceWrapper(load_result["OutputWorkspace"])]
run = int(workspace.getRunNumber())

load_result["DataDeadTimeTable"] = load_result["DeadTimeTable"]
load_result["DataDeadTimeTable"] = AnalysisDataService.retrieve(load_result["DeadTimeTable"]).name()
load_result["DeadTimeTable"] = None
load_result["FirstGoodData"] = round(load_result["FirstGoodData"] - load_result["TimeZero"], 3)

Expand Down

0 comments on commit 727a603

Please sign in to comment.