Skip to content

Commit

Permalink
Rename dcrModel to dcrCoadd
Browse files Browse the repository at this point in the history
  • Loading branch information
isullivan committed May 5, 2017
1 parent 6ce27ba commit 6b18f76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions policy/LsstSimMapper.paf
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ exposures: {
tables: "raw"
tables: "raw_visit"
}
dcrModel_tempExp: {
template: "dcrModel/%(filter)s%(subfilter)s/%(tract)d/%(patch)stempExp/v%(visit)d-f%(filter)s%(subfilter)s.fits"
dcrCoadd_tempExp: {
template: "dcrCoadd/%(filter)s%(subfilter)s/%(tract)d/%(patch)stempExp/v%(visit)d-f%(filter)s%(subfilter)s.fits"
}
deepDiff_differenceExp: {
template: "deepDiff/v%(visit)d-f%(filter)s/R%(raft)s/diffexp-S%(sensor)s.fits"
Expand Down
4 changes: 2 additions & 2 deletions python/lsst/obs/lsstSim/lsstSimMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,10 @@ def bypass_deepCoaddId(self, datasetType, pythonType, location, dataId):
def bypass_deepCoaddId_bits(self, datasetType, pythonType, location, dataId):
return 1 + 7 + 13*2 + 3

def bypass_dcrModelId(self, datasetType, pythonType, location, dataId):
def bypass_dcrCoaddId(self, datasetType, pythonType, location, dataId):
return self._computeCoaddExposureId(dataId, True)

def bypass_dcrModelId_bits(self, datasetType, pythonType, location, dataId):
def bypass_dcrCoaddId_bits(self, datasetType, pythonType, location, dataId):
return 1 + 7 + 13*2 + 3

###############################################################################
Expand Down

0 comments on commit 6b18f76

Please sign in to comment.