Skip to content

Commit

Permalink
Added Yakunin to MDC tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
transientlunatic committed Mar 27, 2018
1 parent 726d988 commit 1ea7c59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion minke/mdctools.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def source_from_row(row):
"s10" : lsctables.SimBurstTable,
"m12" : lsctables.SimBurstTable,
"o13" : lsctables.SimBurstTable,
"y10" : lsctables.SimBurstTable,
# Long Duration
"adi" : lsctables.SimBurstTable,
# Ringdown
Expand Down Expand Up @@ -127,6 +128,7 @@ class MDCSet():
's10' : 'Scheidegger+10',
'm12' : 'Mueller+12',
'o13' : 'Ott+13',
'y10' : "Yakunin+10",
# Long-duration
'adi' : 'ADI',
# Ringdown
Expand Down Expand Up @@ -402,7 +404,7 @@ def _simID(self, row):
row = self.waveforms[row]
name = ''
numberspart = ''
if row.waveform in ("Dimmelmeier+08", "Scheidegger+10", "Mueller+12", "Ott+13"):
if row.waveform in ("Dimmelmeier+08", "Scheidegger+10", "Mueller+12", "Ott+13", "Yakunin+10"):
#print row
numberspart = os.path.basename(row.numrel_data).split('.')[0]

Expand Down

0 comments on commit 1ea7c59

Please sign in to comment.