Skip to content

Commit

Permalink
Consolidate ReferenceObjectLoaderBase into ReferenceObjectLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Jul 25, 2022
1 parent 54efbe3 commit 3037f42
Show file tree
Hide file tree
Showing 3 changed files with 536 additions and 21 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/ingestIndexReferenceTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from lsst.daf.base import PropertyList
from .indexerRegistry import IndexerRegistry
from .readTextCatalogTask import ReadTextCatalogTask
from .loadReferenceObjects import ReferenceObjectLoaderBase
from .loadReferenceObjects import ReferenceObjectLoader
from . import convertRefcatManager

# The most recent Indexed Reference Catalog on-disk format version.
Expand Down Expand Up @@ -407,7 +407,7 @@ def makeSchema(self, dtype):
- A map of catalog keys to use in filling the record
"""
# make a schema with the standard fields
schema = ReferenceObjectLoaderBase.makeMinimalSchema(
schema = ReferenceObjectLoader.makeMinimalSchema(
filterNameList=self.config.mag_column_list,
addCentroid=False,
addIsPhotometric=bool(self.config.is_photometric_name),
Expand Down

0 comments on commit 3037f42

Please sign in to comment.