Skip to content

Commit

Permalink
Add LATISS configs required for analysis_tools
Browse files Browse the repository at this point in the history
This is for running the analysis_tools QA tasks (they need to know
what bands to look for in the parquet tables).
  • Loading branch information
laurenam committed Oct 16, 2023
1 parent 32fff34 commit 5f50ddc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/latiss/analysisToolsCatalogMatch.py
@@ -0,0 +1,7 @@
import os.path
from lsst.pipe.tasks.postprocess import TransformObjectCatalogConfig

# By default loop over all the same bands that are present in the Object Table
objectConfig = TransformObjectCatalogConfig()
objectConfig.load(os.path.join(os.path.dirname(__file__), "transformObjectCatalog.py"))
config.bands = objectConfig.outputBands
7 changes: 7 additions & 0 deletions config/latiss/objectTableTractAnalysis.py
@@ -0,0 +1,7 @@
import os.path
from lsst.pipe.tasks.postprocess import TransformObjectCatalogConfig

# By default loop over all the same bands that are present in the Object Table
objectConfig = TransformObjectCatalogConfig()
objectConfig.load(os.path.join(os.path.dirname(__file__), "transformObjectCatalog.py"))
config.bands = objectConfig.outputBands
7 changes: 7 additions & 0 deletions config/latiss/refCatObjectAnalysisTask.py
@@ -0,0 +1,7 @@
import os.path
from lsst.pipe.tasks.postprocess import TransformObjectCatalogConfig

# By default loop over all the same bands that are present in the Object Table
objectConfig = TransformObjectCatalogConfig()
objectConfig.load(os.path.join(os.path.dirname(__file__), "transformObjectCatalog.py"))
config.bands = objectConfig.outputBands

0 comments on commit 5f50ddc

Please sign in to comment.