-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use multi-file widget in workflow widget #188
Conversation
Can we now remove some hard-coded hack like esssans/src/ess/loki/workflow.py Lines 118 to 119 in 7fba014
|
Needs scipp/essreduce#156 |
workflow = LokiAtLarmorWorkflow() | ||
# TODO This does not work with multiple | ||
workflow[sans.types.PixelMaskFilename] = data.loki_tutorial_mask_filenames()[0] | ||
|
||
workflow[sans.types.Filename[sans.types.SampleRun]] = ( | ||
data.loki_tutorial_sample_run_60339() | ||
) | ||
workflow[sans.types.Filename[sans.types.BackgroundRun]] = ( | ||
data.loki_tutorial_background_run_60393() | ||
) | ||
workflow[sans.types.Filename[sans.types.TransmissionRun[sans.types.SampleRun]]] = ( | ||
workflow[PixelMaskFilename] = data.loki_tutorial_mask_filenames() | ||
workflow[Filename[SampleRun]] = data.loki_tutorial_sample_run_60339() | ||
workflow[Filename[BackgroundRun]] = data.loki_tutorial_background_run_60393() | ||
workflow[Filename[TransmissionRun[SampleRun]]] = ( | ||
data.loki_tutorial_sample_transmission_run() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ISIS workflows may need similar changes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I searched but could not find a place to update.
No description provided.