Skip to content
Snippets Groups Projects

Draft: Ingestion of SVOM ECLAIRS notices into LLAI workflow

Open Naresh Adhikari requested to merge naresh.adhikari/gwcelery:addsvom into main
Compare and
7 files
+ 219
35
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 11
5
@@ -84,12 +84,15 @@ kafka_consumer_config = {
'fermi': {'url': 'kafka://kafka.test.gcn.nasa.gov/'
'fermi.gbm.targeted.private.igwn', 'suffix': 'json'},
'swift': {'url': 'kafka://kafka.gcn.nasa.gov/'
'gcn.notices.swift.bat.guano', 'suffix': 'json'}
'gcn.notices.swift.bat.guano', 'suffix': 'json'},
'svom': {'url': 'kafka://kafka.test.gcn.nasa.gov/'
'gcn.notices.svom.eclairs', 'suffix': 'json'}
}
"""Kafka consumer configuration details. The keys describe the senders of the
messages to be consumed. The values are a dictionary of the URL to listen to
and information about the message serializer. NOTE: We will switch the Swift
URL to a test topic once the topic is regularly written to."""
URL to a test topic once the topic is regularly written to.
Also, fix this once SVOM starts sending kafka alerts. """
views_manual_preferred_event_log_message = 'User {} queued a preferred event' \
' change to {}.'
@@ -220,7 +223,8 @@ check_vector_prepost = {'gstlal': [2, 2],
'Fermi': [2, 2],
'INTEGRAL': [2, 2],
'AGILE': [2, 2],
'SNEWS': [10, 10]}
'SNEWS': [10, 10],
'SVOM': [2, 2]}
"""Seconds before and after the superevent start and end times which the DQ
vector check will include in its check. Pipeline dependent."""
@@ -237,7 +241,8 @@ uses_gatedhoft = {'gstlal': True,
'Fermi': False,
'INTEGRAL': False,
'AGILE': False,
'SNEWS': False}
'SNEWS': False,
'SVOM': False}
"""Whether or not a pipeline uses gated h(t). Determines whether or not
the DMT-DQ_VECTOR will be analyzed for data quality."""
@@ -282,7 +287,8 @@ idq_veto = {'gstlal': False,
'Fermi': False,
'INTEGRAL': False,
'AGILE': False,
'SNEWS': False}
'SNEWS': False,
'SVOM': False}
"""If true for a pipeline, iDQ values below the threshold defined in
:obj:`~gwcelery.conf.idq_fap_thresh` will cause DQV to be labeled.
Currently all False, pending iDQ review (should be done before O3).
@@ -449,4+455,4 @@
"""Config settings used for rapidpe"""
# Delete imported modules so that they do not pollute the config object
del os, getpass
Loading