Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-42278: Add band constraints to step 1, step 5 HSC-RC2 weekly reprocessing defaults #37

Merged
merged 3 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
226 changes: 113 additions & 113 deletions examples/error_code_decisions.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/lsst/cm/prod/configs/DC2/test/dc2_test-med-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
2 changes: 1 addition & 1 deletion src/lsst/cm/prod/configs/HSC/test/hsc_rc2_subset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
2 changes: 1 addition & 1 deletion src/lsst/cm/prod/configs/HSC/test/hsc_single_coll.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
12 changes: 6 additions & 6 deletions src/lsst/cm/prod/configs/HSC/test/hsc_weekly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand All @@ -40,7 +40,7 @@ step1:
prerequisites: []
includes: ["step"]
pipeline_yaml: "${DRP_PIPE_DIR}/pipelines/HSC/DRP-RC2.yaml#step1"
data_query_base: "instrument = 'HSC' and skymap = 'hsc_rings_v1'"
data_query_base: "instrument = 'HSC' and skymap = 'hsc_rings_v1' and band IN ('g','r','i','z','y')"
split_args:
dataset: raw
field: exposure
Expand Down Expand Up @@ -90,7 +90,7 @@ step5:
prerequisites: ["step4"]
includes: ["step"]
pipeline_yaml: "${DRP_PIPE_DIR}/pipelines/HSC/DRP-RC2.yaml#step5"
data_query_base: "instrument = 'HSC' and skymap = 'hsc_rings_v1'"
data_query_base: "instrument = 'HSC' and skymap = 'hsc_rings_v1' and band IN ('g','r','i','z','y')'"
split_vals:
field: tract
values:
Expand Down Expand Up @@ -125,17 +125,17 @@ faro_visit:
prerequisites: ["step6"]
includes: ["step"]
pipeline_yaml: "${DRP_PIPE_DIR}/pipelines/HSC/DRP-RC2.yaml#faro_visit"
data_query_base: "instrument = 'HSC' AND band != 'N921' and skymap = 'hsc_rings_v1'"
data_query_base: "instrument = 'HSC' and band != 'N921' and skymap = 'hsc_rings_v1'"
faro_matched:
prerequisites: ["step6"]
includes: ["step"]
pipeline_yaml: "${DRP_PIPE_DIR}/pipelines/HSC/DRP-RC2.yaml#faro_matched"
data_query_base: "instrument = 'HSC' AND band != 'N921' and skymap = 'hsc_rings_v1' and tract in (9615, 9697, 9813)"
data_query_base: "instrument = 'HSC' and band != 'N921' and skymap = 'hsc_rings_v1' and tract in (9615, 9697, 9813)"
faro_tract:
prerequisites: ["step3"]
includes: ["step"]
pipeline_yaml: "${DRP_PIPE_DIR}/pipelines/HSC/DRP-RC2.yaml#faro_tract"
data_query_base: "instrument = 'HSC' AND band != 'N921' and skymap = 'hsc_rings_v1' and band in ('g', 'r', 'i', 'z', 'y')"
data_query_base: "instrument = 'HSC' and skymap = 'hsc_rings_v1' and band in ('g', 'r', 'i', 'z', 'y')"
campaign:
class_name: lsst.cm.tools.db.campaign_handler.CampaignHandler
root_coll: dummy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ workflow:
job_config: job
rescue_workflow:
includes: ["workflow"]
rescue: True
rescue: true
group:
class_name: lsst.cm.tools.db.group_handler.GroupHandler
input_type: source
Expand Down
Loading