Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
csst_proto
Commits
b4939d49
Commit
b4939d49
authored
Sep 05, 2023
by
BO ZHANG
🏀
Browse files
add some changes
parent
b90c65e5
Pipeline
#1191
failed with stage
in 0 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docs/source/c7_changes.rst
View file @
b4939d49
...
...
@@ -6,10 +6,27 @@ Change list
``top_level_interface.py`` 文件改名为 ``api.py`` , 这个文件中用于导入每个 python package 与流水线的接口函数
- 接口名称修改:
每个开发模块需要把接口函数命名为 ``base_`` 开头的函数,例如 ``base_phot``
- ``DataManager`` ``FileRecorder`` 不再使用, 底层接口都尽可能使用文件路径作为参数
- 使用 ``csst_common.status.Result`` 作为返回类型, 包含三个部分:
- 运行状态 ``status`` 必须是 ``CsstStatus`` 的三种类型之一
- 输出文件列表 ``file_list``, 是一个 ``list``, 需要包含所有输出文件,包括临时文件
- 额外输出 (一般不需要,除非有其他额外输出)
- 程序中禁止使用当前文件夹 ``.`` 或 ``./``,所有路径应使用绝对路径
- 接口定义修改:
样例代码如下
.. code-block:: python
def base_distortion(input_file, output_file, rc="./gaia_dr3.fits") -> :
return
from csst_common.status import CsstStatus, CsstResult
def base_distortion(input_file, output_file, rc="/path/to/gaia_dr3.fits", **kwargs) -> CsstResult:
""" your docstring here """
# do your calculation
process(input_file, output_fle)
# construct CsstResult
result = CsstResult(
status=CsstStatus.PERFECT,
file_list=[output_file, "an additional output file"]
)
return result
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment