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

add module headers

parent 9a499f72
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
"""
Identifier:     KSC-SJ4-csst_common/__init__.py
Identifier:     csst_common/__init__.py
Name:           __init__.py
Description:    csst_common package
Author:         Bo Zhang
Created:        2022-09-13
Modified-History:
    2022-09-13, Bo Zhang, created
    2022-09-13, Bo Zhang, fixed a bug
    2023-12-15, Bo Zhang, created
    2023-12-15, Bo Zhang, add module header
"""

from .status import CsstResult, CsstStatus
+10 −0
Original line number Diff line number Diff line
"""
Identifier:     csst_common/ccds/__init__.py
Name:           __init__.py
Description:    CCDS wrapper
Author:         Bo Zhang
Created:        2022-09-13
Modified-History:
    2023-12-15, Bo Zhang, created
    2023-12-15, Bo Zhang, add CCDS wrapper
"""
from .ccds import CCDS
+10 −0
Original line number Diff line number Diff line
"""
Identifier:     csst_common/__init__.py
Name:           __init__.py
Description:    csst_common package
Author:         Bo Zhang
Created:        2022-09-13
Modified-History:
    2023-07-08, Bo Zhang, created
    2023-12-15, Bo Zhang, add module header
"""
import functools
import os

+10 −1
Original line number Diff line number Diff line
"""
Identifier:     csst_common/ccds/slsconf.py
Name:           slsconf.py
Description:    csst_common package
Author:         Bo Zhang
Created:        2022-09-13
Modified-History:
    2023-12-15, Bo Zhang, created
    2023-12-15, Bo Zhang, add module header
"""
import json
import os
import re

import astropy.io.fits as pyfits

from ccds import client


+11 −1
Original line number Diff line number Diff line
"""
Identifier:     csst_common/decorator.py
Name:           decorator.py
Description:    module wrapper
Author:         Bo Zhang
Created:        2022-09-13
Modified-History:
    2023-12-15, Bo Zhang, created
    2023-12-15, Bo Zhang, add module header
"""
import functools
import logging
import time
import traceback
from typing import Callable, NamedTuple, Optional

from csst_common.status import CsstResult, CsstStatus
from csst_common.logger import get_logger
from csst_common.status import CsstResult, CsstStatus

__all__ = ["ModuleResult", "parameterized_module_decorator"]

Loading