本文整理汇总了Python中SANSUtility.bundle_added_event_data_as_group方法的典型用法代码示例。如果您正苦于以下问题:Python SANSUtility.bundle_added_event_data_as_group方法的具体用法?Python SANSUtility.bundle_added_event_data_as_group怎么用?Python SANSUtility.bundle_added_event_data_as_group使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SANSUtility
的用法示例。
在下文中一共展示了SANSUtility.bundle_added_event_data_as_group方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_load_valid_added_event_data_and_monitor_file_produces_group_ws
# 需要导入模块: import SANSUtility [as 别名]
# 或者: from SANSUtility import bundle_added_event_data_as_group [as 别名]
def test_load_valid_added_event_data_and_monitor_file_produces_group_ws(self):
# Arrange
names = ['event_data', 'monitor']
file_names = self._prepare_workspaces(names = names)
self._cleanup_workspaces(names = names)
# Act
group_ws_name = 'g_ws'
output_group_file_name = su.bundle_added_event_data_as_group(file_names[0], file_names[1])
Load(Filename = output_group_file_name, OutputWorkspace = group_ws_name)
group_ws = mtd[group_ws_name]
# Assert
self.assertTrue(isinstance(group_ws, WorkspaceGroup))
self.assertEqual(group_ws.size(), 2)
self.assertTrue(os.path.exists(file_names[0])) # File for group workspace exists
self.assertFalse(os.path.exists(file_names[1])) # File for monitors is deleted
# Clean up
ws_names_to_delete = []
for ws_name in mtd.getObjectNames():
if ws_name != group_ws_name:
ws_names_to_delete.append(str(ws_name))
self._cleanup_workspaces(names = ws_names_to_delete)
if os.path.exists(file_names[0]):
os.remove(file_names[0])