Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
tribeiro committed Dec 3, 2024
1 parent a143d82 commit 1e90e06
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 15 additions & 3 deletions python/lsst/ts/observatory/control/auxtel/latiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,11 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
components_attr=self.components_attr,
readonly=False,
generics=["summaryState"],
atcamera=["takeImages", "endReadout"],
atcamera=[
"takeImages",
"endReadout",
"startIntegration",
],
atspectrograph=[
"changeFilter",
"changeDisperser",
Expand All @@ -341,7 +345,11 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
components_attr=["atcamera"],
readonly=False,
generics=["summaryState"],
atcamera=["takeImages", "endReadout"],
atcamera=[
"takeImages",
"endReadout",
"startIntegration",
],
)
usages[self.valid_use_cases.Setup] = UsagesResources(
components_attr=["atspectrograph"],
Expand All @@ -360,7 +368,11 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
components_attr=["atcamera", "atspectrograph", "atheaderservice"],
readonly=False,
generics=["summaryState"],
atcamera=["takeImages", "endReadout"],
atcamera=[
"takeImages",
"endReadout",
"startIntegration",
],
atheaderservice=["largeFileObjectAvailable"],
atspectrograph=[
"changeFilter",
Expand Down
3 changes: 3 additions & 0 deletions python/lsst/ts/observatory/control/maintel/comcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"takeImages",
"setFilter",
"endReadout",
"startIntegration",
"endSetFilter",
"availableFilters",
],
Expand All @@ -334,6 +335,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"takeImages",
"setFilter",
"endReadout",
"startIntegration",
"endSetFilter",
"availableFilters",
],
Expand All @@ -350,6 +352,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"setFilter",
"endReadout",
"endSetFilter",
"startIntegration",
"availableFilters",
],
ccheaderservice=["largeFileObjectAvailable"],
Expand Down
3 changes: 3 additions & 0 deletions python/lsst/ts/observatory/control/maintel/lsstcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"setFilter",
"endReadout",
"endSetFilter",
"startIntegration",
"availableFilters",
],
mtheaderservice=["largeFileObjectAvailable"],
Expand All @@ -330,6 +331,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"setFilter",
"endReadout",
"endSetFilter",
"startIntegration",
"availableFilters",
],
)
Expand All @@ -342,6 +344,7 @@ def usages(self) -> typing.Dict[int, UsagesResources]:
"setFilter",
"endReadout",
"endSetFilter",
"startIntegration",
"availableFilters",
],
mtheaderservice=["largeFileObjectAvailable"],
Expand Down

0 comments on commit 1e90e06

Please sign in to comment.