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

add CPIC DAGs

parent f0c06285
Loading
Loading
Loading
Loading
+20 −0
Original line number Original line Diff line number Diff line
@@ -79,6 +79,26 @@ CSST_DAGS = {
            obs_type=["BIAS", "DARK", "FLAT"],
            obs_type=["BIAS", "DARK", "FLAT"],
            detector=csst["MSC"].effective_detector_names,
            detector=csst["MSC"].effective_detector_names,
        ),
        ),
        dispatcher=Dispatcher.dispatch_obsgroup_detector,
    ),
    "csst-cpic-l1": BaseDAG(
        dag="csst-cpic-l1",
        pattern=generate_permutations(
            instrument=["CPIC"],
            obs_type=["SCI", "DSF", "CALS"],
            detector=csst["CPIC"].effective_detector_names,
        ),
        dispatcher=Dispatcher.dispatch_file,
    ),
    "csst-cpic-l1-qc0": BaseDAG(
        dag="csst-cpic-l1-qc0",
        pattern=generate_permutations(
            instrument=["CPIC"],
            obs_type=["BIAS", "DARK", "FLAT", "BKG", "LASER"],
            detector=csst["CPIC"].effective_detector_names,
        ),
        dispatcher=Dispatcher.dispatch_file,
        dispatcher=Dispatcher.dispatch_file,
    ),
    ),
    # other DAGS
    # ...
}
}