Skip to content
Snippets Groups Projects
Commit e27251d7 authored by Chad Hanna's avatar Chad Hanna
Browse files

gstlal_inspiral_marginalize_likelihoods_online: program to marginalize...

gstlal_inspiral_marginalize_likelihoods_online: program to marginalize likelihoods in the online dag in a never ending loop
parent ecca605c
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
REGPATH=$1
OUTPUT=$2
while true ; do
# FIXME the correct thing to do!
gstlal_inspiral_marginalize_likelihood --verbose --ignore-missing --output ${OUTPUT}.next.gz $(grep -h likelihood.xml ${REGPATH}/*registry*.txt) || break
mv -f ${OUTPUT}.next.gz ${OUTPUT} || break
sleep 300 # five minutes
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment