Skip to content

Commit

Permalink
Add dynamic deepCoadd injection pipelines for RC2 & rc2_subset.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmccann committed Nov 9, 2023
1 parent 395e857 commit 1ff5164
Show file tree
Hide file tree
Showing 4 changed files with 5,185 additions and 12 deletions.
19 changes: 19 additions & 0 deletions SConstruct
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# -*- python -*-
from lsst.sconsUtils import scripts
from lsst.source.injection import make_injection_pipeline

# Python-only package
scripts.BasicSConstruct("drp_pipe", disableCc=True, noCfgFile=True)

# Construct pipelines for deepCoadd injection into rc2_subset and RC2.
rc2_subset_injection_pipeline = make_injection_pipeline(
dataset_type_name="deepCoadd",
reference_pipeline="$DRP_PIPE_DIR/pipelines/HSC/DRP-RC2_subset.yaml",
)
rc2_subset_injection_pipeline.write_to_uri(
"$DRP_PIPE_DIR/pipelines/HSC/DRP-RC2_subset+injected_deepCoadd.yaml"
)

RC2_injection_pipeline = make_injection_pipeline(
dataset_type_name="deepCoadd",
reference_pipeline="$DRP_PIPE_DIR/pipelines/HSC/DRP-RC2.yaml",
)
RC2_injection_pipeline.write_to_uri(
"$DRP_PIPE_DIR/pipelines/HSC/DRP-RC2+injected_deepCoadd.yaml"
)
Loading

0 comments on commit 1ff5164

Please sign in to comment.