From b275504e28a679011b50a56a3e157fd6a92c76c2 Mon Sep 17 00:00:00 2001
From: Paul Chote
Date: Sat, 9 Dec 2023 15:04:18 +0000
Subject: [PATCH] Add NGTS daemons.
---
rockit/common/daemons.py | 12 ++++++++++++
rockit/common/ip.py | 3 +++
2 files changed, 15 insertions(+)
diff --git a/rockit/common/daemons.py b/rockit/common/daemons.py
index ccb8c28..9c898ea 100644
--- a/rockit/common/daemons.py
+++ b/rockit/common/daemons.py
@@ -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)
diff --git a/rockit/common/ip.py b/rockit/common/ip.py
index e6a6852..e5b5e79 100644
--- a/rockit/common/ip.py
+++ b/rockit/common/ip.py
@@ -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'