Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit d094a2d

Browse files
committed
Merge pull request #84 from lsst/feature/SIM-1971-full-dcr-metric
Feature/sim 1971 full dcr metric
2 parents 0014a03 + e1083cd commit d094a2d

File tree

6 files changed

+373
-231
lines changed

6 files changed

+373
-231
lines changed

bin.src/sciencePerformance.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import lsst.sims.maf.utils as utils
1818

1919

20-
2120
def makeBundleList(dbFile, runName=None, nside=64, benchmark='design',
2221
lonCol='fieldRA', latCol='fieldDec', seeingCol='FWHMgeom'):
2322
"""
@@ -318,8 +317,8 @@ def makeBundleList(dbFile, runName=None, nside=64, benchmark='design',
318317
runName=runName, metadata=metadata)
319318
bundleList.append(bundle)
320319
order += 1
321-
metric = metrics.ParallaxHADegenMetric(metricName='Parallax-DCR degeneracy 20', rmag=20,
322-
seeingCol=seeingCol)
320+
metric = metrics.ParallaxDcrDegenMetric(metricName='Parallax-DCR degeneracy 20', rmag=20,
321+
seeingCol=seeingCol)
323322
plotDict = {}
324323
caption = 'Correlation between parallax offset magnitude and hour angle an r=20 star.'
325324
caption += ' (0 is good, near -1 or 1 is bad).'
@@ -330,8 +329,8 @@ def makeBundleList(dbFile, runName=None, nside=64, benchmark='design',
330329
runName=runName, metadata=metadata)
331330
bundleList.append(bundle)
332331
order += 1
333-
metric = metrics.ParallaxHADegenMetric(metricName='Parallax-DCR degeneracy 24', rmag=24,
334-
seeingCol=seeingCol)
332+
metric = metrics.ParallaxDcrDegenMetric(metricName='Parallax-DCR degeneracy 24', rmag=24,
333+
seeingCol=seeingCol)
335334
plotDict = {}
336335
caption = 'Correlation between parallax offset magnitude and hour angle an r=24 star.'
337336
caption += ' (0 is good, near -1 or 1 is bad).'

0 commit comments

Comments
 (0)