Skip to content

Commit

Permalink
Fix typo in exported stream label (AemAem -> AexAem)
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed May 1, 2018
1 parent 0a37558 commit f04e0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fretbursts/burstlib_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def burst_photons(dx, skip_ch=None):
"""
assert dx.nch == 1, 'Multispot photon-data export not implemented yet.'
ich = 0
stream_map = {0: 'DexDem', 1: 'DexAem', 2: 'AexDem', 3: 'AemAem'}
stream_map = {0: 'DexDem', 1: 'DexAem', 2: 'AexDem', 3: 'AexAem'}
stream_dtype = CategoricalDtype(categories=stream_map.values())
if dx.alternated:
stream = (dx.A_ex[ich].view('int8') << 1) + dx.A_em[ich].view('int8')
Expand Down

0 comments on commit f04e0e8

Please sign in to comment.