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

Set up a branch for Craig

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/branches/condor_compile@127 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent ac5c75f2
No related branches found
No related tags found
No related merge requests found
......@@ -34,11 +34,14 @@ loudsg = [gps[i] for i in range(len(gps)) if (waveform[i] == sgname) and (gps[i
segfmt = ['start', 'stop', 'dur']
h1segs = np.recfromtxt('H1_BURST_CAT2_LONG.txt', names=segfmt)
l1segs = np.recfromtxt('L1_BURST_CAT2_LONG.txt', names=segfmt)
v1segs = np.recfromtxt('V1_VSR3.txt', names=segfmt)
# -- Find which triggers are in the segment list somewhere
h1sg = find_in_segs(loudsg, h1segs)
l1sg = find_in_segs(loudsg, l1segs)
indx = np.logical_and(h1sg, l1sg)
v1sg = find_in_segs(loudsg, v1segs)
ligoindx = np.logical_and(h1sg, l1sg)
indx = np.logical_and(ligoindx, v1sg)
goodsg = np.array(loudsg)[indx]
print "Found {0} SGs in good times".format(goodsg.size)
......
......@@ -12,10 +12,10 @@ import subprocess
topdir = '/home/jkanner/baysewave/PEC/mdc_v3'
# topdir = '/home/jkanner/baysewave/test'
mdcdir = '/home/jkanner/baysewave/svn/branches/condor_compile/burstinj/s6'
waveformList = ['sg153']
scaleList = ['0.3']
mdccache = '/home/jkanner/baysewave/svn/trunk/burstinj/s6/brst_s6.cache'
mdclog = '/home/jkanner/baysewave/svn/trunk/burstinj/s6/BurstMDC-BRST_S6-Log.txt'
waveformList = ['elpsg153']
scaleList = ['0.15' , '0.3', '0.6', '1.2']
mdccache = '/home/jkanner/baysewave/svn/trunk/burstinj/s6/elptc_s6.cache'
mdclog = '/home/jkanner/baysewave/svn/trunk/burstinj/s6/BurstMDC-ELPTC_S6-Log.txt'
bwb = '/home/jkanner/baysewave/svn/branches/condor_compile/src/BayesWaveBurst'
ifoList = ['H1', 'L1', 'V1']
frtypeList = ['H1_LDAS_C02_L2', 'L1_LDAS_C02_L2', 'HrecV2']
......
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