Skip to content
Snippets Groups Projects
Commit 3a8f28bc authored by Jonah Kanner's avatar Jonah Kanner :nerd:
Browse files

Edits to log reading

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/trunk@59 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent e8928933
No related branches found
No related tags found
No related merge requests found
......@@ -70,17 +70,34 @@ print "Found {0} loud WNB in good times".format(goodloudwnb.size)
# -- Set how many triggers we want
N = 20
outfile = open('setup_sg153.sh','w')
outfile = open('trigs_sg153.txt','w')
for time in goodsg[0:N]:
outfile.write("./condor_setup.sh {0} \n".format(time) )
outfile.write("{0} \n".format(time) )
outfile.close()
outfile = open('setup_qwnb.sh','w')
outfile = open('trigs_qwnb.txt','w')
for time in goodwnb[0:N]:
outfile.write("./condor_setup.sh {0} \n".format(time) )
outfile.write("{0} \n".format(time) )
outfile.close()
outfile = open('setup_lwnb.sh','w')
outfile = open('trigs_lwnb.txt','w')
for time in goodloudwnb[0:N]:
outfile.write("./condor_setup.sh {0} \n".format(time) )
outfile.write("{0} \n".format(time) )
outfile.close()
# outfile = open('setup_sg153','w')
# for time in goodsg[0:N]:
# outfile.write("./condor_setup.sh {0} \n".format(time) )
# outfile.close()
#outfile = open('setup_qwnb.sh','w')
#for time in goodwnb[0:N]:
# outfile.write("./condor_setup.sh {0} \n".format(time) )
#outfile.close()
#outfile = open('setup_lwnb.sh','w')
#for time in goodloudwnb[0:N]:
# outfile.write("./condor_setup.sh {0} \n".format(time) )
#outfile.close()
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