Skip to content

Commit

Permalink
Merge pull request #127 from lsst/tickets/DM-21240
Browse files Browse the repository at this point in the history
DM-21240: Finish rename of AuxTel to LATISS
  • Loading branch information
timj committed Sep 10, 2019
2 parents bed7963 + 0488c76 commit 59306e7
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion config/latiss/bias.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))
2 changes: 1 addition & 1 deletion config/latiss/dark.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))

config.repair.cosmicray.nCrPixelMax = 100000
2 changes: 1 addition & 1 deletion config/latiss/flat.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))
2 changes: 1 addition & 1 deletion config/latiss/fringe.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))
2 changes: 1 addition & 1 deletion config/latiss/latiss.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Configuration for auxTel
# Configuration for latiss

# This file is part of obs_lsst.
#
Expand Down
2 changes: 1 addition & 1 deletion config/latiss/processStar.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))

# Configuration for processStarTask

Expand Down
2 changes: 1 addition & 1 deletion config/latiss/runIsr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import os.path
from lsst.utils import getPackageDir

config.load(os.path.join(getPackageDir("obs_lsst"), "config", "auxTel", "auxTel.py"))
config.load(os.path.join(getPackageDir("obs_lsst"), "config", "latiss", "latiss.py"))
2 changes: 1 addition & 1 deletion data/input/latiss/_mapper
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lsst.obs.lsst.auxTel.AuxTelMapper
lsst.obs.lsst.latiss.LatissMapper
4 changes: 1 addition & 3 deletions doc/lsst.obs.lsst/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ Python API reference

.. automodapi:: lsst.obs.lsst
:no-main-docstr:
.. automodapi:: lsst.obs.lsst.auxTel
.. automodapi:: lsst.obs.lsst.latiss
:no-main-docstr:
.. automodapi:: lsst.obs.lsst.imsim
:no-main-docstr:
.. automodapi:: lsst.obs.lsst.auxTel
:no-main-docstr:
.. automodapi:: lsst.obs.lsst.ts8
:no-main-docstr:
.. automodapi:: lsst.obs.lsst.ts3
Expand Down
2 changes: 1 addition & 1 deletion latiss/CALIB/_mapper
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lsst.obs.lsst.auxTel.AuxTelMapper
lsst.obs.lsst.latiss.LatissMapper
2 changes: 1 addition & 1 deletion policy/latiss/latissMapper.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defects: ../auxTel/defects
defects: ../latiss/defects

calibrations:
bias:
Expand Down
6 changes: 3 additions & 3 deletions tests/test_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ def test_phosim_translator(self):
with self.assertWarns(astropy.utils.exceptions.AstropyWarning):
self.assertObservationInfoFromYaml(filename, dir=self.datadir, **expected)

def test_auxtel_translator(self):
test_data = (("auxTel-2018-09-20-05700065-det000.yaml",
def test_latiss_translator(self):
test_data = (("latiss-2018-09-20-05700065-det000.yaml",
dict(telescope="LSSTAuxTel",
instrument="LATISS",
boresight_rotation_coord="unknown",
Expand All @@ -209,7 +209,7 @@ def test_auxtel_translator(self):
temperature=None,
visit_id=2018092000065,
)),
("auxTel-AT_O_20190329_000022-ats-wfs_ccd.yaml",
("latiss-AT_O_20190329_000022-ats-wfs_ccd.yaml",
dict(telescope="LSSTAuxTel",
instrument="LATISS",
boresight_rotation_coord="unknown",
Expand Down

0 comments on commit 59306e7

Please sign in to comment.