diff --git a/CHANGES.rst b/CHANGES.rst index 757436d0848e2fc24425006e84e83970794c16eb..f2def2502fe481696f47e0440eb2b15ca8a60401 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,9 @@ Changelog - Change RAVEN to grab sky map from superevent. Block joint FAR calculation for SNEWS coincidences. +- Skip Virgo data when online PE is started on O2Replay data since its + statevector can not be read with gwpy. + 0.9.0 (2019-11-23) ------------------ diff --git a/gwcelery/templates/online_pe.jinja2 b/gwcelery/templates/online_pe.jinja2 index 293a1d756f5a80739f644eeaa7e320239a04eb68..7400be2f9fe48714535384779b04e6187c448f40 100644 --- a/gwcelery/templates/online_pe.jinja2 +++ b/gwcelery/templates/online_pe.jinja2 @@ -25,6 +25,10 @@ explanation on jinja is here http://jinja.pocoo.org . #} {% endif %} {% if 'playground' in service_url %} + {# FIXME: lalinference_pipe fails to read state vector in Virgo's Replay + data with gwpy. This issue will be solved by + https://git.ligo.org/lscsoft/lalsuite/merge_requests/1110. #} + {% set ifos = '["H1", "L1"]' %} {% set accounting_group = 'ligo.dev.o3.cbc.pe.lalinference' %} {% set engine = 'lalinferencemcmc' %} {% set nparallel = '2' %} @@ -32,6 +36,7 @@ explanation on jinja is here http://jinja.pocoo.org . #} {% set neff = '100' %} {% set zeroLogLike = 'zeroLogLike=' %} {% else %} + {% set ifos = '["H1", "L1", "V1"]' %} {% set accounting_group = 'ligo.prod.o3.cbc.pe.lalinference' %} {% endif %} @@ -41,7 +46,7 @@ explanation on jinja is here http://jinja.pocoo.org . #} [analysis] -ifos=['H1', 'L1', 'V1'] +ifos={{ ifos | safe }} engine={{ engine }} nparallel={{ nparallel }} service-url={{ service_url }}