-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSConstruct
95 lines (88 loc) · 2.87 KB
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- python -*-
import os
from lsst.sconsUtils import scripts
from lsst.sconsUtils.state import env
from lsst.sconsUtils.utils import libraryLoaderEnvironment
from SCons.Script import Default
# Python-only package
# Force shebang and policy to come first so the file first appears in the bin
# directory before it is used. This is required to run on macos.
targetList = (
"version",
"shebang",
"policy",
) + scripts.DEFAULT_TARGETS
scripts.BasicSConstruct(
"drp_pipe", disableCc=True, noCfgFile=True, defaultTargets=targetList
)
PKG_ROOT = env.ProductDir("drp_pipe")
additional_pipeline_RC2 = os.path.join(
PKG_ROOT,
"pipelines",
"HSC",
"DRP-RC2-post-injected-stars.yaml",
)
additional_pipeline_LSSTComCam = os.path.join(
PKG_ROOT,
"pipelines",
"LSSTComCam",
"DRP-post-injected-stars.yaml",
)
subset_name = "injected_stars_coadd_analysis"
subset_description = "Analysis tasks for object_table level injected catalogs."
# Make deepCoadd injection pipelines for rc2_subset, RC2, and LSSTComCam.
rc2_subset_injected_deepCoadd_stars = env.Command(
target=os.path.join(
PKG_ROOT, "pipelines", "HSC", "DRP-RC2_subset+injected_deepCoadd_stars.yaml"
),
source=os.path.join(PKG_ROOT, "pipelines", "HSC", "DRP-RC2_subset.yaml"),
action=" ".join(
[
libraryLoaderEnvironment(),
f"make_injection_pipeline -t deepCoadd -r $SOURCE -f $TARGET -a {additional_pipeline_RC2} "
f"-s {subset_name} -d '{subset_description}' --overwrite",
]
),
)
RC2_injected_deepCoadd_stars = env.Command(
target=os.path.join(
PKG_ROOT, "pipelines", "HSC", "DRP-RC2+injected_deepCoadd_stars.yaml"
),
source=os.path.join(PKG_ROOT, "pipelines", "HSC", "DRP-RC2.yaml"),
action=" ".join(
[
libraryLoaderEnvironment(),
f"make_injection_pipeline -t deepCoadd -r $SOURCE -f $TARGET -a {additional_pipeline_RC2} "
f"-s {subset_name} -d '{subset_description}' --overwrite",
]
),
)
LSSTComCam_excluded_tasks = [
"jointcal",
"gbdesAstrometricFit",
"fgcmBuildFromIsolatedStars",
"fgcmFitCycle",
"fgcmOutputProducts",
"skyCorr",
]
LSSTComCam_injected_deepCoadd_stars = env.Command(
target=os.path.join(
PKG_ROOT, "pipelines", "LSSTComCam", "DRP+injected_deepCoadd_stars.yaml"
),
source=os.path.join(PKG_ROOT, "pipelines", "LSSTComCam", "DRP.yaml"),
action=" ".join(
[
libraryLoaderEnvironment(),
f"make_injection_pipeline -t deepCoadd -r $SOURCE -f $TARGET -a {additional_pipeline_LSSTComCam} "
f"-s {subset_name} -d '{subset_description}' -x {','.join(LSSTComCam_excluded_tasks)} "
"--overwrite",
]
),
)
Default(
[
rc2_subset_injected_deepCoadd_stars,
RC2_injected_deepCoadd_stars,
LSSTComCam_injected_deepCoadd_stars,
]
)