Skip to content

Commit

Permalink
Add NGTS daemons.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Dec 9, 2023
1 parent cfe1d3a commit b275504
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions rockit/common/daemons.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,18 @@ def launch(self, daemon):
goto_south_vaisala = PyroDaemon('goto_south_vaisala_daemon', IP.GOTOSSO, 9022)
goto_south_cloudwatcher = PyroDaemon('goto_south_cloudwatcher_daemon', IP.GOTOSSO, 9021)

ngts_m06_power = PyroDaemon('ngts_m06_power_daemon', IP.NGTSDASNUC, 9000)
ngts_m06_telescope = PyroDaemon('ngts_m06_telescope_daemon', IP.NGTSDASNUC, 9001)
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_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)
ngts_database = PyroDaemon('ngts_database_daemon', IP.NGTSDASNUC, 9008)
ngts_ephemeris = PyroDaemon('ngts_ephemeris_daemon', IP.NGTSDASNUC, 9009)
ngts_environment = PyroDaemon('ngts_environment_daemon', IP.NGTSDASNUC, 9010)

localhost_test = PyroDaemon('localhost_test_daemon', IP.LocalHost, 9000)
localhost_test2 = PyroDaemon('localhost_test_daemon2', IP.LocalHost, 9001)
localhost_test3 = PyroDaemon('localhost_test_daemon3', IP.LocalHost, 9002)
Expand Down
3 changes: 3 additions & 0 deletions rockit/common/ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@ class IP:

# GOTO South (Siding Spring Observatory)
GOTOSSO = '192.55.98.154'

# NGTS CMOS test machine (Paranal Observatory)
NGTSDASNUC = '10.2.5.115'

0 comments on commit b275504

Please sign in to comment.