Skip to content

Commit

Permalink
Add pipeline preview daemons.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Dec 20, 2023
1 parent 8277200 commit 57e5a12
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions rockit/common/daemons.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ def launch(self, daemon):
superwasp_operations = PyroDaemon('superwasp_operations_daemon', IP.SWASPTCS, 9015)
superwasp_lensheater = PyroDaemon('superwasp_lensheater_daemon', IP.SWASPTCS, 9050)
superwasp_pipeline = PyroDaemon('superwasp_pipeline', IP.SWASPTCS, 9032)
superwasp_pipeline_preview_tcs = PyroDaemon('superwasp_pipeline_preview_tcs', IP.SWASPTCS, 9060)
superwasp_pipeline_preview_das1 = PyroDaemon('superwasp_pipeline_preview_das1', IP.SWASPDAS1, 9060)
superwasp_pipeline_preview_das2 = PyroDaemon('superwasp_pipeline_preview_das2', IP.SWASPDAS2, 9060)
superwasp_power_relay = PyroDaemon('superwasp_powerrelay_daemon', IP.SWASPTCS, 9033)

superwasp_cam1 = PyroDaemon('superwasp_camera_daemon_1', IP.SWASPCameraVM1, 9040)
Expand Down Expand Up @@ -109,6 +112,8 @@ def launch(self, daemon):
onemetre_blue_camera = PyroDaemon('onemetre_camera_blue', IP.OneMetreTCS, 9011)
onemetre_red_camera = PyroDaemon('onemetre_camera_red', IP.OneMetreTCS, 9010)
onemetre_pipeline = PyroDaemon('onemetre_pipeline', IP.OneMetreTCS, 9012)
onemetre_pipeline_preview_tcs = PyroDaemon('onemetre_pipeline_preview_tcs', IP.OneMetreTCS, 9060)
onemetre_pipeline_preview_dome = PyroDaemon('onemetre_pipeline_preview_dome', IP.OneMetreDome 9060)
onemetre_pipeline_blue = PyroDaemon('onemetre_pipeline_blue', IP.OneMetreTCS, 9013)
onemetre_pipeline_red = PyroDaemon('onemetre_pipeline_red', IP.OneMetreTCS, 9014)

Expand Down Expand Up @@ -141,6 +146,7 @@ def launch(self, daemon):
halfmetre_cam = PyroDaemon('halfmetre_camera_daemon', IP.HalfMetreTCS, 9040)
halfmetre_focuser = PyroDaemon('halfmetre_focuser_daemon', IP.HalfMetreTCS, 9041)
halfmetre_pipeline = PyroDaemon('halfmetre_pipeline_daemon', IP.HalfMetreTCS, 9032)
halfmetre_pipeline_preview = PyroDaemon('halfmetre_pipeline_preview', IP.HalfMetreTCS, 9060)
halfmetre_pipeline_cam = PyroDaemon('halfmetre_pipeline_daemon_cam', IP.HalfMetreTCS, 9033)
halfmetre_diskspace = PyroDaemon('halfmetre_diskspace_daemon', IP.HalfMetreTCS, 9008)
halfmetre_vaisala = PyroDaemon('halfmetre_vaisala_daemon', IP.CLASPDAS, 9020)
Expand All @@ -152,6 +158,8 @@ def launch(self, daemon):
clasp_telescope = PyroDaemon('clasp_telescope_daemon', IP.CLASPTCS, 9035)
clasp_focus = PyroDaemon('clasp_focus_daemon', IP.CLASPTCS, 9036)
clasp_pipeline = PyroDaemon('clasp_pipeline_daemon', IP.CLASPTCS, 9032)
clasp_pipeline_preview_tcs = PyroDaemon('clasp_pipeline_preview_tcs', IP.CLASPTCS, 9060)
clasp_pipeline_preview_das = PyroDaemon('clasp_pipeline_preview_das', IP.CLASPDAS, 9060)
clasp_camera_1 = PyroDaemon('clasp_camera_daemon_1', IP.CLASPCMOSVM, 9037)
clasp_camera_2 = PyroDaemon('clasp_camera_daemon_2', IP.CLASPSWIRVM, 9038)
clasp_pipeline_cam1 = PyroDaemon('clasp_pipeline_daemon_cam1', IP.CLASPDAS, 9031)
Expand All @@ -168,6 +176,7 @@ def launch(self, daemon):
warwick_focuser = PyroDaemon('warwick_focuser_daemon', IP.WarwickTCS, 9004)
warwick_filterwheel = PyroDaemon('warwick_filterwheel_daemon', IP.WarwickTCS, 9005)
warwick_pipeline = PyroDaemon('warwick_pipeline_daemon', IP.WarwickTCS, 9006)
warwick_pipeline_preview = PyroDaemon('warwick_pipeline_preview', IP.WarwickTCS, 9060)
warwick_pipeline_cam = PyroDaemon('warwick_pipeline_daemon_cam', IP.WarwickTCS, 9007)
warwick_diskspace = PyroDaemon('warwick_diskspace_daemon', IP.WarwickTCS, 9008)
warwick_vaisala = PyroDaemon('warwick_vaisala_daemon', IP.WarwickTCS, 9009)
Expand All @@ -189,6 +198,7 @@ def launch(self, daemon):
ngts_m06_focuser = PyroDaemon('ngts_m06_focuser_daemon', IP.NGTSDASNUC, 9002)
ngts_m06_camera = PyroDaemon('ngts_m06_camera_daemon', IP.NGTSDASNUC, 9003)
ngts_m06_pipeline = PyroDaemon('ngts_m06_pipeline_daemon', IP.NGTSDASNUC, 9004)
ngts_m06_pipeline_preview = PyroDaemon('ngts_m06_pipeline_preview', IP.NGTSDASNUC, 9060)
ngts_m06_pipeline_cam = PyroDaemon('ngts_m06_pipeline_daemon_cam', IP.NGTSDASNUC, 9005)
ngts_m06_diskspace = PyroDaemon('ngts_m06_diskspace_daemon', IP.NGTSDASNUC, 9006)
ngts_m06_operations = PyroDaemon('ngts_m06_operations_daemon', IP.NGTSDASNUC, 9007)
Expand Down

0 comments on commit 57e5a12

Please sign in to comment.