Skip to content
Snippets Groups Projects
Commit 87b32c4d authored by Francesco Pannarale's avatar Francesco Pannarale
Browse files

Updated explanations in the prepare_* python scripts

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/trunk@96 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent e6020bdf
No related branches found
No related tags found
No related merge requests found
"""
This script sets up a dag file to launch multiple BayesWaveBurst runs on condor. It also generates BBH waveforms in XML file using lalapps_inspinj.
The default number of waveforms is set to 20 in SNR range of 10 to 30. Waveforms are produced with IMRPhenomBthreePointFivePN rather than TaylorT4threePointFivePN.
This script sets up a dag file to launch multiple BayesWaveBurst runs on condor. It also generates the necessary BBH
waveform injections in an XML file using lalapps_inspinj.
Running this script requires six line arguments:
1) the fixed mass value for the primary component [solar masses]
......@@ -16,6 +16,18 @@ Running this script requires six line arguments:
11) the number of iterations
12) the value for the seed of the random number generator.
As the injections are uniformly distributed in SNR, it may be useful to know the SNRs of the single injections
beforehand. To do, uncomment the following lines
char SnrName[200];
sprintf(SnrName,"SNRfile.txt");
FILE * snrout = fopen(SnrName,"a");
fprintf(snrout,"%lf\n",proposedSNR);
fclose(snrout);
in lalapps/src/inspiral/inspinj.c and recompile LALapps. This will produce a txt file with the network SNR for
each injection.
This script was tested on ldas-pcdev1.ligo.caltech.edu only.
"""
......@@ -33,7 +45,6 @@ import os
import pwd
import subprocess
import sys
import pnutils
######################################################################################################################
# Parse the arguments
......
"""
This script
This script sets up the serial postprocessing of all BayesWaveBurst run results in the directory in which it is
launched. It assumes that the individual run directories are labelled job_*. Once the script is done, the
postprocessing may be completed by submitting the dagfile it produces to condor.
This script was tested on ldas-pcdev1.ligo.caltech.edu only.
"""
......
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