Skip to content

Commit

Permalink
Add OCPS option to base_close_loop.py script.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmegh committed Oct 25, 2024
1 parent 040f80e commit a61c380
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/news/DM-47064.perf.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add OCPS option to `base_close_loop.py` script.
6 changes: 6 additions & 0 deletions python/lsst/ts/standardscripts/maintel/base_close_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ def get_schema(cls) -> typing.Dict[str, typing.Any]:
Apply OFC corrections after each iteration.
type: boolean
default: true
ocps:
description: >-
Use OCPS to run the wavefront estimation pipeline.
type: boolean
default: true
ignore:
description: >-
CSCs from the group to ignore in status check. Name must
Expand Down Expand Up @@ -251,6 +256,7 @@ async def configure(self, config: types.SimpleNamespace) -> None:

# Set WEP configuration file
self.wep_config = config.wep_config
self.wep_config.useOCPS = config.ocps

# Set used dofs
selected_dofs = config.used_dofs
Expand Down

0 comments on commit a61c380

Please sign in to comment.