Skip to content

Commit

Permalink
Fixup: PsfDeterminerTask/Config -> BasePsfDeterminerTask/Config
Browse files Browse the repository at this point in the history
  • Loading branch information
r-owen committed Jun 7, 2016
1 parent 462604a commit 2f74953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/extensions/psfex/psfexPsfDeterminer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import lsst.meas.algorithms.utils as maUtils
import lsst.meas.extensions.psfex as psfex

class PsfexPsfDeterminerConfig(measAlg.PsfDeterminerConfig):
class PsfexPsfDeterminerConfig(measAlg.BasePsfDeterminerConfig):
__nEigenComponents = pexConfig.Field(
doc = "number of eigen components for PSF kernel creation",
dtype = int,
Expand Down Expand Up @@ -130,7 +130,7 @@ class PsfexPsfDeterminerConfig(measAlg.PsfDeterminerConfig):
def setDefaults(self):
self.kernelSize = 81

class PsfexPsfDeterminerTask(measAlg.PsfDeterminerTask):
class PsfexPsfDeterminerTask(measAlg.BasePsfDeterminerTask):
ConfigClass = PsfexPsfDeterminerConfig

def determinePsf(self, exposure, psfCandidateList, metadata=None, flagKey=None):
Expand Down

0 comments on commit 2f74953

Please sign in to comment.