Skip to content
Snippets Groups Projects
Unverified Commit c04f7010 authored by Owen Arnold's avatar Owen Arnold Committed by GitHub
Browse files

Update in-alg documentation

Does not write to multiple file formats.
parent 3712c0a5
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ class ExportGeometry(PythonAlgorithm): ...@@ -53,7 +53,7 @@ class ExportGeometry(PythonAlgorithm):
return "ExportGeometry" return "ExportGeometry"
def summary(self): def summary(self):
return "Extract geometry into a variety of file formats" return "Extract components from larger in-memory instrument, save as IDF style xml"
def PyInit(self): def PyInit(self):
self.declareProperty(WorkspaceProperty("InputWorkspace", "", self.declareProperty(WorkspaceProperty("InputWorkspace", "",
...@@ -67,7 +67,7 @@ class ExportGeometry(PythonAlgorithm): ...@@ -67,7 +67,7 @@ class ExportGeometry(PythonAlgorithm):
doc="Euler angles convention used when writing angles.") doc="Euler angles convention used when writing angles.")
self.declareProperty(StringArrayProperty("Components", self.declareProperty(StringArrayProperty("Components",
direction=Direction.Input), direction=Direction.Input),
doc="Comma separated list of instrument components to export") doc="Comma separated list of instrument component names to export")
self.declareProperty(FileProperty(name="Filename", self.declareProperty(FileProperty(name="Filename",
defaultValue="", defaultValue="",
action=FileAction.Save, action=FileAction.Save,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment