Skip to content

Commit

Permalink
Merge pull request #866 from lsst/tickets/DM-39776
Browse files Browse the repository at this point in the history
DM-39776: Add columns needed for gbdesAstrometricFit
  • Loading branch information
cmsaunders authored Feb 14, 2024
2 parents cadf7aa + 80a3f4e commit 0864cba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/lsst/pipe/tasks/isolatedStarAssociation.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,16 @@ class IsolatedStarAssociationConfig(pipeBase.PipelineTaskConfig,
dtype=str,
default=['x',
'y',
'xErr',
'yErr',
'apFlux_17_0_instFlux',
'apFlux_17_0_instFluxErr',
'apFlux_17_0_flag',
'localBackground_instFlux',
'localBackground_flag']
'localBackground_flag',
'ixx',
'iyy',
'ixy',]
)
source_selector = sourceSelectorRegistry.makeField(
doc='How to select sources. Under normal usage this should not be changed.',
Expand Down

0 comments on commit 0864cba

Please sign in to comment.