|
39 | 39 | from ..tasks.catalogMatch import CatalogMatchConfig, CatalogMatchConnections, CatalogMatchTask |
40 | 40 |
|
41 | 41 |
|
42 | | -class AstrometricCatalogMatchConfig(CatalogMatchConfig, pipelineConnections=CatalogMatchConnections): |
| 42 | +class AstrometricCatalogMatchConnections( |
| 43 | + CatalogMatchConnections, |
| 44 | + dimensions=("tract", "skymap"), |
| 45 | + defaultTemplates={"targetCatalog": "objectTable_tract", "refCatalog": "gaia_dr3_20230707"}, |
| 46 | +): |
| 47 | + matchedCatalog = pipeBase.connectionTypes.Output( |
| 48 | + doc="Catalog with matched target and reference objects with separations", |
| 49 | + name="{targetCatalog}_{refCatalog}_match_astrom", |
| 50 | + storageClass="ArrowAstropy", |
| 51 | + dimensions=("tract", "skymap"), |
| 52 | + ) |
| 53 | + |
| 54 | + |
| 55 | +class AstrometricCatalogMatchConfig( |
| 56 | + CatalogMatchConfig, pipelineConnections=AstrometricCatalogMatchConnections |
| 57 | +): |
43 | 58 | bands = pexConfig.ListField[str]( |
44 | 59 | doc="The bands to persist downstream", |
45 | 60 | default=["u", "g", "r", "i", "z", "y"], |
@@ -114,7 +129,7 @@ class AstrometricCatalogMatchVisitConnections( |
114 | 129 |
|
115 | 130 | matchedCatalog = pipeBase.connectionTypes.Output( |
116 | 131 | doc="Catalog with matched target and reference objects with separations", |
117 | | - name="{targetCatalog}_{refCatalog}_match", |
| 132 | + name="{targetCatalog}_{refCatalog}_match_astrom", |
118 | 133 | storageClass="ArrowAstropy", |
119 | 134 | dimensions=("visit",), |
120 | 135 | ) |
|
0 commit comments