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

initiate position calibration pipeline

parent 6885d1cd
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
from ..core.processor import CsstProcessor


class CsstProcMscPositionCalibration(CsstProcessor):
    def prepare(self, **args):
        # prepare the environment
        # for example, if you make use of some third-party software like SEXTRACTOR,
        # do your preparation here.
        pass

    def run(self, data, *args, **kwargs):
        # run your pipeline here
        # make sure that your input data should be a child class instance of CsstData.
        pass

    def cleanup(self, **kwargs):
        # clean up environment
        pass