Commit a5ee2b51 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

update module headers

parent f7e79bc6
Loading
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -3,17 +3,18 @@ Identifier: csst_common/__init__.py
Name:           __init__.py
Description:    csst_common package
Author:         Bo Zhang
Created:        2022-09-13
Created:        2022-09-21
Modified-History:
    2023-12-15, Bo Zhang, created
    2022-09-21, Bo Zhang, created
    2023-09-22, Bo Zhang, updates
    2023-12-15, Bo Zhang, add module header
"""

from .status import CsstResult, CsstStatus
from .pipeline import Pipeline
from .ccds import CCDS
from .dfs import DFS
from .decorator import parameterized_module_decorator
from .dfs import DFS
from .file import File
from .pipeline import Pipeline
from .status import CsstResult, CsstStatus

__version__ = "0.0.2"
+1 −2
Original line number Diff line number Diff line
@@ -30,11 +30,10 @@ from csst_dfs_api.facility.level1prc import Level1PrcApi
from csst_dfs_api.mbi.level2 import Level2DataApi as MbiLevel2DataApi
from csst_dfs_api.sls.level2spectra import Level2SpectraApi as SlsLevel2DataApi

from .dfs import DFS
from .logger import get_logger
from .params import CSST_PARAMS as CP
from .time import now
from .ccds import CCDS
from .dfs import DFS


class CsstMsDataManager:
+2 −2
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@ Identifier: csst_common/decorator.py
Name:           decorator.py
Description:    module wrapper
Author:         Bo Zhang
Created:        2022-09-13
Created:        2023-12-10
Modified-History:
    2023-12-15, Bo Zhang, created
    2023-12-10, Bo Zhang, rewrite ModuleResult and decorator
    2023-12-15, Bo Zhang, add module header
"""
import functools
+1 −1
Original line number Diff line number Diff line
"""
Identifier:     csst_common/dfs.py
Name:           dfs.py
Description:    csst_common package
Description:    DFS wrapper
Author:         Bo Zhang
Created:        2023-07-08
Modified-History:
+3 −3
Original line number Diff line number Diff line
"""
Identifier:     csst_common/__init__.py
Name:           __init__.py
Description:    csst_common package
Identifier:     csst_common/file.py
Name:           file.py
Description:    file operation
Author:         Bo Zhang
Created:        2023-12-13
Modified-History:
Loading