Skip to content

Commit

Permalink
Merge pull request #306 from lsst/tickets/DM-47010
Browse files Browse the repository at this point in the history
DM-47010: Change default to assume preSources used for matching
  • Loading branch information
TallJimbo authored Nov 7, 2024
2 parents b70190b + 2be3a49 commit 46ae9e1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 0 additions & 2 deletions pipelines/matchedVisitQualityCore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ tasks:
config:
connections.sourceCatalogs: preSourceTable_visit
connections.outputName: matchedPreVisitCore
connections.associatedSources: isolated_star_presources
connections.associatedSourcesInputName: isolated_star_presources
# Proper motion catalogs are not available for `preSourceTables`
applyAstrometricCorrections: false
atools.stellarAstrometricSelfRepeatabilityRA: AstrometricRepeatability
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ def setDefaults(self):
self.prep.selectors.bandSelector = BandSelector()
# Following what was done in faro, only sources with S/N between 50
# and 50000 are included. The other filtering that was done in faro
# is now covered by only including sources from isolated_star_sources.
# is now covered by only including sources from
# isolated_star_presources.
self.prep.selectors.snSelector = SnSelector()
self.prep.selectors.snSelector.threshold = 50
self.prep.selectors.snSelector.maxSN = 50000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class AssociatedSourcesTractAnalysisConnections(
AnalysisBaseConnections,
dimensions=("skymap", "tract", "instrument"),
defaultTemplates={
"outputName": "isolated_star_sources",
"associatedSourcesInputName": "isolated_star_sources",
"outputName": "isolated_star_presources",
"associatedSourcesInputName": "isolated_star_presources",
},
):
sourceCatalogs = ct.Input(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class SourceObjectTableAnalysisConnections(
defaultTemplates={
"inputName": "sourceTable_visit",
"inputCoaddName": "deep",
"associatedSourcesInputName": "isolated_star_sources",
"associatedSourcesInputName": "isolated_star_presources",
"outputName": "sourceObjectTable",
},
):
Expand Down

0 comments on commit 46ae9e1

Please sign in to comment.