Skip to content

Commit

Permalink
SQUASHME renamed MatchTask to DirectMatchTask
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulPrice committed Aug 31, 2016
1 parent 1d2e24c commit 061f8d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from lsst.meas.base import SingleFrameMeasurementTask, ApplyApCorrTask, CatalogCalculationTask
from lsst.meas.deblender import SourceDeblendTask
from lsst.pipe.tasks.coaddBase import getSkyInfo, scaleVariance
from lsst.meas.astrom import MatchTask
from lsst.meas.astrom import DirectMatchTask
from lsst.pipe.tasks.setPrimaryFlags import SetPrimaryFlagsTask
from lsst.pipe.tasks.propagateVisitFlags import PropagateVisitFlagsTask
import lsst.afw.image as afwImage
Expand Down Expand Up @@ -844,7 +844,7 @@ class MeasureMergedCoaddSourcesConfig(Config):
)
propagateFlags = ConfigurableField(target=PropagateVisitFlagsTask, doc="Propagate visit flags to coadd")
doMatchSources = Field(dtype=bool, default=True, doc="Match sources to reference catalog?")
match = ConfigurableField(target=MatchTask, doc="Matching to reference catalog")
match = ConfigurableField(target=DirectMatchTask, doc="Matching to reference catalog")
coaddName = Field(dtype=str, default="deep", doc="Name of coadd")
checkUnitsParseStrict = Field(
doc = "Strictness of Astropy unit compatibility check, can be 'raise', 'warn' or 'silent'",
Expand Down Expand Up @@ -936,7 +936,7 @@ class MeasureMergedCoaddSourcesTask(CmdLineTask):
sources</DD>
<DT> \ref PropagateVisitFlagsTask_ "propagateFlags"
<DD> Propagate flags set in individual visits to the coadd.</DD>
<DT> \ref MatchTask_ "match"
<DT> \ref DirectMatchTask_ "match"
<DD> Match input sources to a reference catalog (optional).
</DD>
</DL>
Expand Down

0 comments on commit 061f8d4

Please sign in to comment.