Source code for gwcelery.tasks.detchar

"""Data quality and detector characterization tasks.

These tasks are mostly focused on checking interferometer state vectors. By
design, the [LIGO]_ and [Virgo]_ state vectors share the same definitions for
the first 8 fields.

LIGO also has a [DMT]_ DQ vector that provides some additional instrumental
checks.

References
----------
.. [LIGO] https://wiki.ligo.org/Calibration/TDCalibReview
.. [Virgo] https://dcc.ligo.org/G1801125/
.. [DMT] https://wiki.ligo.org/DetChar/DmtDqVector

"""
import getpass
import glob
import io
import json
import socket
import time

import matplotlib.pyplot as plt
import numpy as np
import sentry_sdk
from astropy.time import Time
from celery import group
from celery.utils.log import get_task_logger
from glue.lal import Cache
from gwdatafind import find_urls
from gwpy.plot import Plot
from gwpy.timeseries import Bits, StateVector, TimeSeries

from .. import _version, app
from ..jinja import env
from ..util import closing_figures
from . import gracedb

__author__ = 'Geoffrey Mo <geoffrey.mo@ligo.org>'

log = get_task_logger(__name__)


[docs]def create_cache(ifo, start, end): """Find .gwf files and create cache. Will first look in the llhoft, and if the frames have expired from llhoft, will call gwdatafind. Parameters ---------- ifo : str Interferometer name (e.g. ``H1``). start, end: int or float GPS start and end times desired. Returns ------- :class:`glue.lal.Cache` Example ------- >>> create_cache('H1', 1198800018, 1198800618) [<glue.lal.CacheEntry at 0x7fbae6b71278>, <glue.lal.CacheEntry at 0x7fbae6ae5b38>, <glue.lal.CacheEntry at 0x7fbae6ae5c50>, ... <glue.lal.CacheEntry at 0x7fbae6b15080>, <glue.lal.CacheEntry at 0x7fbae6b15828>] """ pattern = app.conf['llhoft_glob'].format(detector=ifo) filenames = glob.glob(pattern) cache = Cache.from_urls(filenames) try: cache_segment = list(cache.to_segmentlistdict().values())[0][0] cache_starttime = cache_segment[0] cache_endtime = cache_segment[1] except IndexError: log.exception('Files do not exist in llhoft_glob') return cache # returns empty cache if (cache_starttime <= start) and (end <= cache_endtime): # required data is in llhoft return cache # otherwise, required data is not in the low latency cache high_latency = app.conf['high_latency_frame_types'][ifo] urls = find_urls(ifo[0], high_latency, start, end) if urls: return Cache.from_urls(urls) # required data not in high latency frames low_latency = app.conf['low_latency_frame_types'][ifo] urls = find_urls(ifo[0], low_latency, start, end) if not urls: # required data not in low latency frames log.error('This data cannot be found, or does not exist.') return Cache.from_urls(urls)
[docs]@app.task(shared=False) @closing_figures() def make_omegascan(ifo, t0, durs): """Helper function to create a single omegascan image, with multiple durations. Parameters ---------- ifo : str 'H1', 'L1', or 'V1' t0 : int or float Central time of the omegascan. durs : list of tuples List of three tuples, with time before and time after t0 in seconds. Example: [(0.75, 0.25), (1.5, 0.5), (7.5, 2.5)] Returns ------- bytes or None bytes of png of the omegascan, or None if no omegascan created. """ # Explicitly use a non-interactive Matplotlib backend. plt.switch_backend('agg') # Collect data durs = np.array(durs) longest_before, longest_after = durs[:, 0].max(), durs[:, 1].max() # Add extra data buffer to avoid whitening window issues long_start, long_end = t0 - longest_before - 2, t0 + longest_after + 2 cache = create_cache(ifo, long_start, long_end) strain_name = app.conf['strain_channel_names'][ifo] try: ts = TimeSeries.read(cache, strain_name, start=long_start, end=long_end).astype('float64') # Do q_transforms for the different durations qgrams = [ts.q_transform( frange=(10, 4096), gps=t0, outseg=(t0 - before, t0 + after), logf=True) for before, after in durs] except (IndexError, FloatingPointError, ValueError) as err: # data from cache can't be properly read, or data is weird sentry_sdk.capture_exception(err) fig = plt.figure(figsize=(4, 1)) plt.axis("off") plt.text(0.5, 0.5, f"Failed to create {ifo} omegascan", horizontalalignment='center', verticalalignment='center', fontsize=17) else: fig = Plot(*qgrams, figsize=(12 * len(durs), 6), geometry=(1, len(durs)), yscale='log', method='pcolormesh', clim=(0, 30), cmap='viridis') for i, ax in enumerate(fig.axes): ax.set_title(f'Q = {qgrams[i].q:.3g}') if i in [1, 2]: ax.set_ylabel('') if i == 2: fig.colorbar(ax=ax, label='Normalized energy') ax.set_epoch(t0) fig.suptitle(f'Omegascans of {strain_name} at {t0}', fontweight="bold") plt.subplots_adjust(wspace=0.08) outfile = io.BytesIO() fig.savefig(outfile, format='png', dpi=150, bbox_inches='tight') return outfile.getvalue()
[docs]@app.task(shared=False) def omegascan(t0, graceid): """Create omegascan for a certain event. Parameters ---------- t0 : float Central event time. graceid : str GraceDB ID to which to upload the omegascan. """ durs = app.conf['omegascan_durations'] durs = np.array(durs) # Delay for early warning events (ie queries for times before now) longest_after = durs[:, 1].max() + 2 # extra data for whitening window if t0 + longest_after > Time.now().gps: log.info("Delaying omegascan because %s is in the future", graceid) waittime = t0 - Time.now().gps + longest_after + 10 else: waittime = longest_after + 10 group( make_omegascan.s(ifo, t0, durs).set(countdown=waittime) | gracedb.upload.s(f"{ifo}_omegascan.png", graceid, f"{ifo} omegascan", tags=['data_quality']) for ifo in ['H1', 'L1', 'V1'] ).delay()
[docs]def generate_table(title, high_bit_list, low_bit_list, unknown_bit_list): """Make a nice table which shows the status of the bits checked. Parameters ---------- title : str Title of the table. high_bit_list: list List of bit names which are high. low_bit_list: list List of bit names which are low. unknown_bit_list: list List of bit names which are unknown. Returns ------- str HTML string of the table. """ template = env.get_template('vector_table.jinja2') return template.render(title=title, high_bit_list=high_bit_list, low_bit_list=low_bit_list, unknown_bit_list=unknown_bit_list)
[docs]def dqr_json(state, summary): """Generate DQR-compatible json-ready dictionary from process results, as described in :class:`data-quality-report.design`. Parameters ---------- state : {'pass', 'fail'} State of the detchar checks. summary : str Summary of results from the process. Returns ------- dict Ready to be converted into json. """ links = [ { "href": "https://gwcelery.readthedocs.io/en/latest/gwcelery.tasks.detchar.html#gwcelery.tasks.detchar.check_vectors", # noqa "innerHTML": "a link to the documentation for this process" }, { "href": "https://git.ligo.org/emfollow/gwcelery/blob/main/gwcelery/tasks/detchar.py", # noqa "innerHTML": "a link to the source code in the gwcelery repo" } ] return dict( state=state, process_name=__name__, process_version=_version.get_versions()['version'], librarian='Geoffrey Mo (geoffrey.mo@ligo.org)', date=time.strftime("%H:%M:%S UTC %a %d %b %Y", time.gmtime()), hostname=socket.gethostname(), username=getpass.getuser(), summary=summary, figures=[], tables=[], links=links, extra=[], )
[docs]def ifo_from_channel(channel): '''Get detector prefix from a channel. Parameters ---------- channel : str Channel, e.g., H1:GDS-CALIB_STRAIN. Returns ------- str Detector prefix, e.g., H1. ''' ifo = channel.split(':')[0] assert len(ifo) == 2, "Detector name should be two letters" return ifo
[docs]def check_idq(cache, channel, start, end): """Looks for iDQ frame and reads them. Parameters ---------- cache : :class:`glue.lal.Cache` Cache from which to check. channel : str which idq channel (FAP) start, end: int or float GPS start and end times desired. Returns ------- tuple Tuple mapping iDQ channel to its minimum FAP. Example ------- >>> check_idq(cache, 'H1:IDQ-FAP_OVL_100_1000', 1216496260, 1216496262) ('H1:IDQ-FAP_OVL_100_1000', 0.003) """ if cache: try: idq_fap = TimeSeries.read( cache, channel, start=start, end=end) return (channel, float(idq_fap.min().value)) except (IndexError, RuntimeError, ValueError): log.exception('Failed to read from low-latency iDQ frame files') # FIXME: figure out how to get access to low-latency frames outside # of the cluster. Until we figure that out, actual I/O errors have # to be non-fatal. return (channel, None)
[docs]def check_vector(cache, channel, start, end, bits, logic_type='all'): """Check timeseries of decimals against a bitmask. This is inclusive of the start time and exclusive of the end time, i.e. [start, ..., end). Parameters ---------- cache : :class:`glue.lal.Cache` Cache from which to check. channel : str Channel to look at, e.g. ``H1:DMT-DQ_VECTOR``. start, end : int or float GPS start and end times desired. bits: :class:`gwpy.TimeSeries.Bits` Definitions of the bits in the channel. logic_type : str, optional Type of logic to apply for vetoing. If ``all``, then all samples in the window must pass the bitmask. If ``any``, then one or more samples in the window must pass. Returns ------- dict Maps each bit in channel to its state. Example ------- >>> check_vector(cache, 'H1:GDS-CALIB_STATE_VECTOR', 1216496260, 1216496262, ligo_state_vector_bits) {'H1:HOFT_OK': True, 'H1:OBSERVATION_INTENT': True, 'H1:NO_STOCH_HW_INJ': True, 'H1:NO_CBC_HW_INJ': True, 'H1:NO_BURST_HW_INJ': True, 'H1:NO_DETCHAR_HW_INJ': True} """ if logic_type not in ('any', 'all'): raise ValueError("logic_type must be either 'all' or 'any'.") else: logic_map = {'any': np.any, 'all': np.all} bitname = '{}:{}' if cache: try: statevector = StateVector.read(cache, channel, start=start, end=end, bits=bits) except (IndexError, TypeError, ValueError): log.exception('Failed to read from low-latency frame files') else: # FIXME: In the playground environment, the Virgo state vector # channel is stored as a float. Is this also the case in the # production environment? statevector = statevector.astype(np.uint32) if len(statevector) > 0: # statevector must not be empty return {bitname.format(ifo_from_channel(channel), key): bool(logic_map[logic_type]( value.value if len(value.value) > 0 else None)) for key, value in statevector.get_bit_series().items()} # FIXME: figure out how to get access to low-latency frames outside # of the cluster. Until we figure that out, actual I/O errors have # to be non-fatal. return {bitname.format(ifo_from_channel(channel), key): None for key in bits if key is not None}
[docs]@app.task(shared=False, bind=True, default_retry_delay=5) def check_vectors(self, event, graceid, start, end): """Perform data quality checks for an event and labels/logs results to GraceDB. Depending on the pipeline, a certain amount of time (specified in :obj:`~gwcelery.conf.check_vector_prepost`) is appended to either side of the superevent start and end time. This is to catch DQ issues slightly before and after the event, such as that appearing in L1 just before GW170817. A cache is then created for H1, L1, and V1, regardless of the detectors involved in the event. Then, the bits and channels specified in the configuration file (:obj:`~gwcelery.conf.llhoft_channels`) are checked. If an injection is found in the active detectors, 'INJ' is labeled to GraceDB. If an injection is found in any detector, a message with the injection found is logged to GraceDB. If no injections are found across all detectors, this is logged to GraceDB. A similar task is performed for the DQ states described in the DMT-DQ_VECTOR, LIGO GDS-CALIB_STATE_VECTOR, and Virgo DQ_ANALYSIS_STATE_VECTOR. If no DQ issues are found in active detectors, 'DQOK' is labeled to GraceDB. Otherwise, 'DQV' is labeled. In all cases, the DQ states of all the state vectors checked are logged to GraceDB. This skips MDC events. Parameters ---------- event : dict Details of event. graceid : str GraceID of event to which to log. start, end : int or float GPS start and end times desired. Returns ------- event : dict Details of the event, reflecting any labels that were added. """ # Skip early warning events (ie queries for times before now) if end > Time.now().gps: log.info("Skipping detchar checks because %s is in the future", event['graceid']) return event # Skip MDC events. if event.get('search') == 'MDC': log.info("Skipping detchar checks because %s is an MDC", event['graceid']) return event # Create caches for all detectors instruments = event['instruments'].split(',') pipeline = event['pipeline'] pre, post = app.conf['check_vector_prepost'][pipeline] start, end = start - pre, end + post prepost_msg = "Check looked within -{}/+{} seconds of superevent. ".format( pre, post) ifos = {ifo_from_channel(key) for key, val in app.conf['llhoft_channels'].items()} caches = {ifo: create_cache(ifo, start, end) for ifo in ifos} bit_defs = {channel_type: Bits(channel=bitdef['channel'], bits=bitdef['bits']) for channel_type, bitdef in app.conf['detchar_bit_definitions'].items()} # Examine injection and DQ states # Do not analyze DMT-DQ_VECTOR if pipeline uses gated h(t) states = {} analysis_channels = app.conf['llhoft_channels'].items() if app.conf['uses_gatedhoft'][pipeline]: analysis_channels = {k: v for k, v in analysis_channels if k[3:] != 'DMT-DQ_VECTOR'}.items() for channel, bits in analysis_channels: try: states.update(check_vector( caches[ifo_from_channel(channel)], channel, start, end, bit_defs[bits])) except ValueError as exc: # check_vector likely failed to find the requested data # in the cache because it has yet to arrive raise self.retry(exc=exc, max_retries=4) # Pick out DQ and injection states, then filter for active detectors dq_states = {key: value for key, value in states.items() if key.split('_')[-1] != 'INJ'} inj_states = {key: value for key, value in states.items() if key.split('_')[-1] == 'INJ'} active_dq_states = {key: value for key, value in dq_states.items() if ifo_from_channel(key) in instruments} active_inj_states = {key: value for key, value in inj_states.items() if ifo_from_channel(channel) in instruments} # Check iDQ states and filter for active instruments idq_faps = dict(check_idq(caches[ifo_from_channel(channel)], channel, start, end) for channel in app.conf['idq_channels'] if ifo_from_channel(channel) in instruments) idq_oks = dict(check_idq(caches[ifo_from_channel(channel)], channel, start, end) for channel in app.conf['idq_ok_channels'] if ifo_from_channel(channel) in instruments) # Logging iDQ to GraceDB # Checking the IDQ-OK vector idq_not_ok_ifos = [ ifo_from_channel(ok_channel) for ok_channel, min_value in idq_oks.items() if min_value == 0 or min_value is None] idq_not_ok_fap_chans = [ chan for chan in idq_faps.keys() if ifo_from_channel(chan) in idq_not_ok_ifos] # Remove iDQ FAP channels if their IDQ_OK values are bad for idq_not_ok_chan in idq_not_ok_fap_chans: del idq_faps[idq_not_ok_chan] if len(idq_not_ok_ifos) > 0: idq_ok_msg = (f"Not checking iDQ for {', '.join(idq_not_ok_ifos)} " "because it has times where IDQ_OK = 0. ") else: idq_ok_msg = '' if None not in idq_faps.values() and len(idq_faps) > 0: idq_faps_readable = {k: round(v, 3) for k, v in idq_faps.items()} if min(idq_faps.values()) <= app.conf['idq_fap_thresh']: idq_msg = ("iDQ false alarm probability is low " "(below {} threshold), " "i.e., there could be a data quality issue: " "minimum FAP is {}. ").format( app.conf['idq_fap_thresh'], json.dumps(idq_faps_readable)[1:-1]) # If iDQ FAP is low and pipeline enabled, apply DQV if app.conf['idq_veto'][pipeline]: gracedb.remove_label('DQOK', graceid) gracedb.create_label('DQV', graceid) # Add labels to return value to avoid querying GraceDB again. event = dict(event, labels=event.get('labels', []) + ['DQV']) try: event['labels'].remove('DQOK') except ValueError: # not in list pass else: idq_msg = ("iDQ false alarm probabilities for active detectors " "are good (above {} threshold). " "Minimum FAP is {}. ").format( app.conf['idq_fap_thresh'], json.dumps(idq_faps_readable)[1:-1]) elif None in idq_faps.values(): idq_msg = "iDQ false alarm probabilities unknown. " else: idq_msg = '' gracedb.upload.delay( None, None, graceid, idq_ok_msg + idq_msg + prepost_msg, ['data_quality']) # Labeling INJ to GraceDB if False in active_inj_states.values(): # Label 'INJ' if injection found in active IFOs gracedb.create_label('INJ', graceid) # Add labels to return value to avoid querying GraceDB again. event = dict(event, labels=event.get('labels', []) + ['INJ']) if False in inj_states.values(): # Write all found injections into GraceDB log injs = [k for k, v in inj_states.items() if v is False] inj_fmt = "Injection found.\n{}\n" inj_msg = inj_fmt.format( generate_table('Injection bits', [], injs, [])) elif all(inj_states.values()) and len(inj_states.values()) > 0: inj_msg = 'No HW injections found. ' gracedb.remove_label('INJ', graceid) event = dict(event, labels=list(event.get('labels', []))) try: event['labels'].remove('INJ') except ValueError: # not in list pass else: inj_msg = 'Injection state unknown. ' gracedb.upload.delay( None, None, graceid, inj_msg + prepost_msg, ['data_quality']) # Determining overall_dq_active_state if None in active_dq_states.values() or len( active_dq_states.values()) == 0: overall_dq_active_state = None elif False in active_dq_states.values(): overall_dq_active_state = False elif all(active_dq_states.values()): overall_dq_active_state = True goods = [k for k, v in dq_states.items() if v is True] bads = [k for k, v in dq_states.items() if v is False] unknowns = [k for k, v in dq_states.items() if v is None] fmt = "Detector state for active instruments is {}.\n{}" msg = fmt.format( {None: 'unknown', False: 'bad', True: 'good'}[overall_dq_active_state], generate_table('Data quality bits', goods, bads, unknowns) ) if app.conf['uses_gatedhoft'][pipeline]: gate_msg = ('Pipeline {} uses gated h(t),' ' LIGO DMT-DQ_VECTOR not checked.').format(pipeline) else: gate_msg = '' # Labeling DQOK/DQV to GraceDB gracedb.upload.delay( None, None, graceid, msg + prepost_msg + gate_msg, ['data_quality']) if overall_dq_active_state is True: state = "pass" gracedb.remove_label('DQV', graceid) gracedb.create_label('DQOK', graceid) # Add labels to return value to avoid querying GraceDB again. event = dict(event, labels=event.get('labels', []) + ['DQOK']) try: event['labels'].remove('DQV') except ValueError: # not in list pass elif overall_dq_active_state is False: state = "fail" gracedb.remove_label('DQOK', graceid) gracedb.create_label('DQV', graceid) # Add labels to return value to avoid querying GraceDB again. event = dict(event, labels=event.get('labels', []) + ['DQV']) try: event['labels'].remove('DQOK') except ValueError: # not in list pass else: state = "unknown" # Create and upload DQR-compatible json state_summary = '{} {} {}'.format( inj_msg, idq_ok_msg + idq_msg, msg) if state == "unknown": json_state = "error" else: json_state = state file = dqr_json(json_state, state_summary) filename = 'gwcelerydetcharcheckvectors-{}.json'.format(graceid) message = "DQR-compatible json generated from check_vectors results" gracedb.upload.delay( json.dumps(file), filename, graceid, message) return event