Skip to content

Commit

Permalink
Merge pull request #137 from lsst-ts/tickets/DM-40213
Browse files Browse the repository at this point in the history
Tickets/DM-40213
  • Loading branch information
gmegh authored Oct 24, 2023
2 parents 115a6f7 + 0a4386d commit 56636be
Show file tree
Hide file tree
Showing 8 changed files with 845 additions and 0 deletions.
6 changes: 6 additions & 0 deletions doc/news/DM-40213.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Add new base_close_loop.py script, and executable.
This script allows to run the closed loop, that is, taking images, processing them, and apply ts_ofc corrections.

Add new maintel/close_loop_comcam.py script, unit test, and executable.

Add new maintel/close_loop_lsstcam.py script, unit test, and executable.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env python
# This file is part of ts_standardscripts
#
# Developed for the LSST Telescope and Site Systems.
# This product includes software developed by the LSST Project
# (https://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import asyncio

from lsst.ts.standardscripts.maintel import CloseLoopComCam

asyncio.run(CloseLoopComCam.amain())
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env python
# This file is part of ts_standardscripts
#
# Developed for the LSST Telescope and Site Systems.
# This product includes software developed by the LSST Project
# (https://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import asyncio

from lsst.ts.standardscripts.maintel import CloseLoopLSSTCam

asyncio.run(CloseLoopLSSTCam.amain())
3 changes: 3 additions & 0 deletions python/lsst/ts/standardscripts/maintel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from .apply_dof import *
from .base_close_loop import *
from .close_loop_comcam import *
from .close_loop_lsstcam import *
from .enable_comcam import *
from .enable_mtcs import *
from .home_both_axes import *
Expand Down
Loading

0 comments on commit 56636be

Please sign in to comment.