Ticket #3511 (closed: fixed)
Adjust Sequential fitting dialog to enable fitting across workspaces without log values
Reported by: | Nick Draper | Owned by: | Roman Tolchenov |
---|---|---|---|
Priority: | critical | Milestone: | Iteration 30 |
Component: | Mantid | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Tester: | Janik Zikovsky |
Description
Requested by Jon Taylor:
Jon wants to be able to fit multiple workspaces, but has no log value of particular interest, so would just like the data outputted with the workspace name. One option to do this would be to add a workspace option to the log drop down list. Another would be to identify if we have more than one WS in the input when no log is selected and then use ws_index as the column label.
In addition he would like the quality score (ch12) in the results table as well.
Change History
comment:4 Changed 9 years ago by Roman Tolchenov
- Status changed from accepted to verify
- Resolution set to fixed
comment:5 Changed 9 years ago by Janik Zikovsky
- Status changed from verify to verifying
- Tester set to Janik Zikovsky
comment:6 Changed 9 years ago by Janik Zikovsky
- Status changed from verifying to closed
Both aspects of the ticket tested and work.
###################################################################### #Python Script Generated by GeneratePythonScript Algorithm ###################################################################### LoadEventNexus(Filename='CNCS_7860_event.nxs',OutputWorkspace='cncs') Rebin(InputWorkspace='cncs',OutputWorkspace='cncs',Params='45000,10,55000') SumSpectra(InputWorkspace='cncs',OutputWorkspace='cncs2d') ConvertToMatrixWorkspace('cncs2d', 'cncs2d') for i in xrange(1,20): ws = 'cncs'+str(i) CloneWorkspace('cncs2d', ws) w = mtd[ws] w *= (i + 1)
Note: See
TracTickets for help on using
tickets.