Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-49346: Add a park projector function #193

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/news/DM-49346.feature.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated the indices for the linear stages and fibers spectrographs
1 change: 1 addition & 0 deletions doc/news/DM-49346.feature.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
added homing to the setup_calsys and turned off LEDs in the prepare_for_flat
1 change: 1 addition & 0 deletions doc/news/DM-49346.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a function to park the LED Projector.
80 changes: 70 additions & 10 deletions python/lsst/ts/observatory/control/maintel/mtcalsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ def __init__(
) -> None:

self.electrometer_projector_index = 103
self.fiberspectrograph_blue_index = 1
self.fiberspectrograph_red_index = 2
self.linearstage_led_select_index = 1
self.linearstage_led_focus_index = 2
self.linearstage_laser_focus_index = 3
self.linearstage_select_index = 4
self.fiberspectrograph_blue_index = 101
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this change was documented in the news fragment.

self.fiberspectrograph_red_index = 102
self.linearstage_led_select_index = 102
self.linearstage_led_focus_index = 104
self.linearstage_laser_focus_index = 101
self.linearstage_select_index = 103

super().__init__(
components=[
Expand Down Expand Up @@ -196,14 +196,33 @@ async def setup_calsys(self, sequence_name: str) -> None:

calibration_type = getattr(CalibrationType, str(config_data["calib_type"]))

# Home all linear stages.
await self.linearstage_projector_select.cmd_getHome.start(
timeout=self.long_timeout
)
await self.linearstage_led_select.cmd_getHome.start(timeout=self.long_timeout)
led_focus_home = self.linearstage_led_focus.cmd_getHome.start(
timeout=self.long_timeout
)
laser_focus_home = self.linearstage_laser_focus.cmd_getHome.start(
timeout=self.long_timeout
)

await asyncio.gather(
led_focus_home,
laser_focus_home,
)

# Move LED Select stage to a safe position
await self.linearstage_led_select.cmd_moveAbsolute.set_start(
distance=self.led_rest_position, timeout=self.long_timeout
)

if calibration_type == CalibrationType.WhiteLight:
await self.linearstage_projector_select.cmd_moveAbsolute.set_start(
distance=self.ls_select_led_location, timeout=self.long_timeout
)
else:
await self.linearstage_led_select.cmd_moveAbsolute.set_start(
distance=self.led_rest_position, timeout=self.long_timeout
)
await self.linearstage_projector_select.cmd_moveAbsolute.set_start(
distance=self.ls_select_laser_location, timeout=self.long_timeout
)
Expand All @@ -214,6 +233,33 @@ async def setup_calsys(self, sequence_name: str) -> None:
)
await self.laser_start_propagate()

async def park_projector(self) -> None:
"""Put the LEDProjector into a safe state and turn off all LEDs.
This will not turn off the TunableLaser
"""
# Move vertical and LED Select stages to a safe position (not Home)
await self.linearstage_led_select.cmd_moveAbsolute.set_start(
distance=self.led_rest_position, timeout=self.long_timeout
)
await self.linearstage_projector_select.cmd_moveAbsolute.set_start(
distance=self.ls_select_led_location, timeout=self.long_timeout
)
# Home the focus stages
led_focus_home = self.linearstage_led_focus.cmd_getHome.start(
timeout=self.long_timeout
)
laser_focus_home = self.linearstage_laser_focus.cmd_getHome.start(
timeout=self.long_timeout
)
await asyncio.gather(
led_focus_home,
laser_focus_home,
)
# Turn off the LEDs
await self.rem.ledprojector.cmd_switchAllOff.start(
timeout=self.long_timeout,
)

def calculate_laser_focus_location(self, wavelength: float = 500.0) -> float:
"""Calculates the location of the linear stage that provides the focus
for the laser projector. This location is dependent on the
Expand Down Expand Up @@ -439,6 +485,21 @@ async def prepare_for_flat(self, sequence_name: str) -> None:
)

if calibration_type == CalibrationType.WhiteLight:
# Turn off all LEDs
await self.rem.ledprojector.cmd_switchAllOff.set_start(
timeout=self.long_timeout,
)
# Confirm that Projector selection is at the LED location
vertical_pos = await self.linearstage_projector_select.tel_position.next(
flush=True, timeout=self.long_timeout
)
if vertical_pos.position != self.ls_select_led_location:
self.log.info("Projector select stage is not aligned with LED position")
self.linearstage_projector_select.cmd_moveAbsolute.set_start(
distance=self.ls_select_led_location, timeout=self.long_timeout
)

# Move stages to properly align the selected LED and focus
task_select_led = self.linearstage_led_select.cmd_moveAbsolute.set_start(
distance=config_data.get("led_location"), timeout=self.long_timeout
)
Expand All @@ -451,7 +512,6 @@ async def prepare_for_flat(self, sequence_name: str) -> None:
serialNumbers=config_data.get("led_name"),
timeout=self.long_timeout,
)

await asyncio.gather(
task_select_led,
task_adjust_led_focus,
Expand Down
6 changes: 4 additions & 2 deletions tests/maintel/test_mtcalsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def setup_mocks(self) -> None:
"evt_largeFileObjectAvailable.next.side_effect": self.mock_electrometer_lfoa
}
)
self.mtcalsys.rem.fiberspectrograph_1.configure_mock(
self.mtcalsys.rem.fiberspectrograph_101.configure_mock(
**{
"evt_largeFileObjectAvailable.next.side_effect": self.mock_fiberspectrograph_lfoa
}
Expand Down Expand Up @@ -158,7 +158,9 @@ async def test_prepare_for_whitelight_flat(self) -> None:
)

self.mtcalsys.mtcamera = mock_comcam

self.mtcalsys.linearstage_projector_select.tel_position.position = (
unittest.mock.Mock(return_value=9.96)
)
try:
await self.mtcalsys.prepare_for_flat("whitelight_r")
finally:
Expand Down