When trying to run this task, I provide it the outputs of processCCD, skymaps and visit summaries I got from consolidateVisitSummary. It makes the quantum graph but can’t execute it because it looks for a visit summary psf, but when I try to turn this option to False in the configs, it gives me an error saying it needs it to be true if I’m providing a visit summary, but it also will not run without a visit summary. I’m at a bit of a loss, looking for any way to make a visit summary psf (updateVisitSummary returns empty quanta no matter how I twist it) or effectively disable it from makeDirectWarp.
Hi @lawzul , in this case are you also running with the latest version of the pipelines on a subset that was originally made in the v24 of the pipeline, as in this topic? I just wanted to check that first, as the potential solution (use the same version of the pipeline for all processing) might be the same.
The issue stemmed from trying to run that, yes, but I have also tried running makeDirectWarp by itself and the issue is the same. I have used this version of the pipeline for all previous processing here, what I meant on my previous topic is that the subset was assembled on a previous version (v24) and I have been trying to get it to work on v29 with data processed through v29 itself.
Hi @lawzul. Have you had a chance to look at DP1 tutorial 105.6. Create custom coadd images
? The situation you’re describing here sounds quite reminiscent of that DP1 tutorial. In particular, that tutorial sets makeDirectWarp
config overrides so as to avoid using any visit summary:
pipeline.addConfigOverride(‘makeDirectWarp’, ‘useVisitSummaryPsf’, False)
pipeline.addConfigOverride(‘makeDirectWarp’, ‘useVisitSummaryPhotoCalib’, False)
pipeline.addConfigOverride(‘makeDirectWarp’, ‘useVisitSummaryWcs’, False)
pipeline.addConfigOverride(‘makeDirectWarp’, ‘connections.calexp_list’, ‘visit_image’)
So I think it’s possible that this combination of config overrides, rather than only the first one for useVisitSummaryPSF
, may allow you to avoid the need for a visit summary. Thanks very much.