We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For auto-generating workflow parameter input widgets, a base class and implementations for common param types are needed
See #28. Have a look at, e.g., https://docs.mantidproject.org/v6.1.0/algorithms/LoadEventNexus-v1.html. The widget and the table of properties in the docs page was generated programmatically. Each line corresponds to a "param" as described here (Mantid calls these "algorithm properties").
The param classes will have a number of required and optional inputs. Something like:
Required:
Optional:
The Param base class (working title) should run things such as validators.
Param
Implementations of the Param class must be able to construct a simple widget that can be included in higher-level widgets as part of #28.
Examples of required Param implementations:
BinEdgeParam
Python module / function
Params for ESSsans inputs make a good scenario for prototyping and testing
The text was updated successfully, but these errors were encountered:
See also scipp/sciline#139 for a discussion and prototypes.
Sorry, something went wrong.
Note that the Param described in the requirement does not need any relation/interaction with Sciline, unlike in the linked issue.
No branches or pull requests
Executive summary
For auto-generating workflow parameter input widgets, a base class and implementations for common param types are needed
Context and background knowledge
See #28. Have a look at, e.g., https://docs.mantidproject.org/v6.1.0/algorithms/LoadEventNexus-v1.html. The widget and the table of properties in the docs page was generated programmatically. Each line corresponds to a "param" as described here (Mantid calls these "algorithm properties").
Inputs
The param classes will have a number of required and optional inputs. Something like:
Required:
Optional:
Methodology
The
Param
base class (working title) should run things such as validators.Outputs
Implementations of the
Param
class must be able to construct a simple widget that can be included in higher-level widgets as part of #28.Examples of required
Param
implementations:BinEdgeParam
(linear/log, start, stop, num, unit, ...)Which interfaces are required?
Python module / function
Test cases
Params for ESSsans inputs make a good scenario for prototyping and testing
Comments
The text was updated successfully, but these errors were encountered: