Skip to content

Commit

Permalink
Add new script to take CBP Throughput Scan
Browse files Browse the repository at this point in the history
  • Loading branch information
elanaku authored and edennihy committed Nov 18, 2024
1 parent 50b7f8c commit b112f50
Show file tree
Hide file tree
Showing 4 changed files with 815 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python
# This file is part of ts_externalscripts
#
# 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

import asyncio

from lsst.ts.externalscripts.maintel import MakeCBPThroughputScan

asyncio.run(MakeCBPThroughputScan.amain())
1 change: 1 addition & 0 deletions python/lsst/ts/externalscripts/maintel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from .make_cbp_throughput_scan import *
from .make_comcam_calibrations import *
from .parameter_march_comcam import *
from .parameter_march_lsstcam import *
Expand Down
Loading

0 comments on commit b112f50

Please sign in to comment.