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 54ad6a9
Show file tree
Hide file tree
Showing 3 changed files with 5,168 additions and 0 deletions.
16 changes: 16 additions & 0 deletions SConstruct
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# -*- 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 54ad6a9

Please sign in to comment.