Dear all, I was wondering if I could ask some questions about LSST DM. I was reprocessing DECam archive data with obs_decam
in weekly release w_2019_05
.
-
calexp
s are generated at different steps of the pipeline:processCcd
,assembleCoadd
,detectCoaddSources
, etc. Are thosecalexp
images all background-subtracted (default)? However, I found the config ofdetectCoaddSources
has
# Do temporary wide (large-scale) background subtraction before footprint detection?
config.detection.doTempWideBackground=True
# Enable temporary local background subtraction? (see tempLocalBackground)
config.detection.doTempLocalBackground=True
But the config of processCcd has
config.charImage.detection.doTempLocalBackground=False
config.charImage.detection.doTempWideBackground=False
config.calibrate.detection.doTempLocalBackground=False
config.calibrate.detection.doTempWideBackground=False
and the config of assembleCoadd has
config.clipDetection.doTempWideBackground=False
config.clipDetection.doTempLocalBackground=False
Do these mean that the calexp
s generated by processCcd
and assembleCoadd
are not background-subtracted? Is the âbackground subtractionâ used for the output catalog or for the generated calexp
images?
- For reference catalogs (Gaia, PS1, SDSS), which calibrate astrometry and photometry, they are used in
processCcd
,jointcal
,measureCoaddSources
. InprocessCcd
, it is given by
config.calibrate.astromRefObjLoader
config.calibrate.photoRefObjLoader
In jointcal
, it is given by
config.astrometryRefObjLoader
config.photometryRefObjLoader
But in measureCoaddSources
, it is only given by (does it include both astrometry and photometry?)
config.match.refObjLoader
Are processCcd
, jointcal
, and measureCoaddSources
the only three places we should import reference catalog?
A related question is, how to import color terms (to convert color info from reference catalog to DECam)? In processCcd
, we have
config.calibrate.photoCal.applyColorTerms = True
config.calibrate.photoCal.colorterms
But I donât know how to include them in jointcal
and measureCoaddSources
configs. Can the color terms for these steps be inherited from processCcd
?
Thank you.