本文整理汇总了Python中pycbc.workflow.plotting.PlotExecutable.add_multiifo_input_list_opt方法的典型用法代码示例。如果您正苦于以下问题:Python PlotExecutable.add_multiifo_input_list_opt方法的具体用法?Python PlotExecutable.add_multiifo_input_list_opt怎么用?Python PlotExecutable.add_multiifo_input_list_opt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pycbc.workflow.plotting.PlotExecutable
的用法示例。
在下文中一共展示了PlotExecutable.add_multiifo_input_list_opt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_trigger_timeseries
# 需要导入模块: from pycbc.workflow.plotting import PlotExecutable [as 别名]
# 或者: from pycbc.workflow.plotting.PlotExecutable import add_multiifo_input_list_opt [as 别名]
def make_trigger_timeseries(workflow,
singles,
ifo_times,
out_dir,
special_tids,
exclude=None,
require=None,
tags=None):
tags = [] if tags is None else tags
makedir(out_dir)
name = 'plot_trigger_timeseries'
secs = requirestr(workflow.cp.get_subsections(name), require)
secs = excludestr(secs, exclude)
files = FileList([])
for tag in secs:
node = PlotExecutable(
workflow.cp,
name,
ifos=workflow.ifos,
out_dir=out_dir,
tags=[tag] + tags).create_node()
node.add_multiifo_input_list_opt('--single-trigger-files', singles)
node.add_opt('--times', ifo_times)
node.new_output_file_opt(workflow.analysis_time, '.png',
'--output-file')
if special_tids is not None:
node.add_opt('--special-trigger-ids', special_tids)
workflow += node
files += node.output_files
return files