Skip to content

Commit

Permalink
remove getEupsProductName method from CameraMapper subclasses
Browse files Browse the repository at this point in the history
Replaced by the packageName class variable and getPackageName() method.
  • Loading branch information
jhoblitt committed May 26, 2015
1 parent ebcd384 commit dad37e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/lsst/obs/sdss/sdssMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@
import lsst.meas.algorithms as measAlgo

class SdssMapper(CameraMapper):
packageName = 'obs_sdss'

def __init__(self, inputPolicy=None, **kwargs):
policyFile = pexPolicy.DefaultPolicyFile("obs_sdss", "SdssMapper.paf", "policy")
policyFile = pexPolicy.DefaultPolicyFile(self.packageName, "SdssMapper.paf", "policy")
policy = pexPolicy.Policy(policyFile)

self.doFootprints = False
Expand Down

0 comments on commit dad37e2

Please sign in to comment.