-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dynamic deepCoadd injection pipelines for RC2 & rc2_subset.
- Loading branch information
Showing
4 changed files
with
5,185 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
) |
Oops, something went wrong.