本文整理汇总了Python中mantid.simpleapi.AnalysisDataService.getObjectNames方法的典型用法代码示例。如果您正苦于以下问题:Python AnalysisDataService.getObjectNames方法的具体用法?Python AnalysisDataService.getObjectNames怎么用?Python AnalysisDataService.getObjectNames使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mantid.simpleapi.AnalysisDataService
的用法示例。
在下文中一共展示了AnalysisDataService.getObjectNames方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: scanEventWorkspaces
# 需要导入模块: from mantid.simpleapi import AnalysisDataService [as 别名]
# 或者: from mantid.simpleapi.AnalysisDataService import getObjectNames [as 别名]
def scanEventWorkspaces(self):
"""
"""
wsnames = AnalysisDataService.getObjectNames()
eventwsnames = []
for wsname in wsnames:
wksp = AnalysisDataService.retrieve(wsname)
if wksp.__class__.__name__.count("Event") == 1:
eventwsnames.append(wsname)
# ENDFOR
if len(eventwsnames) > 0:
self.ui.comboBox.clear()
self.ui.comboBox.addItems(eventwsnames)
示例2: _searchTableWorkspaces
# 需要导入模块: from mantid.simpleapi import AnalysisDataService [as 别名]
# 或者: from mantid.simpleapi.AnalysisDataService import getObjectNames [as 别名]
def _searchTableWorkspaces(self):
""" Search table workspaces and add to 'comboBox_corrWS'
"""
wsnames = AnalysisDataService.getObjectNames()
tablewsnames = []
for wsname in wsnames:
wksp = AnalysisDataService.retrieve(wsname)
if isinstance(wksp, mantid.api.ITableWorkspace):
tablewsnames.append(wsname)
# ENDFOR
self.ui.comboBox_corrWS.clear()
if len(tablewsnames) > 0:
self.ui.comboBox_corrWS.addItems(tablewsnames)