Skip to content
Snippets Groups Projects
Commit 44495bea authored by Lan Dam's avatar Lan Dam
Browse files

fix bug using mpzne in place for mpabc in check_masspos()

parent 5266ceba
No related branches found
No related tags found
1 merge request!356Complete check for mass position channels
...@@ -225,14 +225,15 @@ def check_masspos(mp_data: Dict[str, Dict], ...@@ -225,14 +225,15 @@ def check_masspos(mp_data: Dict[str, Dict],
if include_mp123: if include_mp123:
req_mp123 = [] # represent 123/zne/abc req_mp123 = [] # represent 123/zne/abc
mp123 = ['1', '2', '3'] mp123 = ['1', '2', '3']
mpzne = ['E', 'N', 'Z'] mpzne = ['Z', 'N', 'E']
mpabc = ['A', 'B', 'C'] mpabc = ['A', 'B', 'C']
if any(chan in mp123 for chan in included_mp):
req_mp123 += mp123
if any(chan in mpzne for chan in included_mp): if any(chan in mpzne for chan in included_mp):
req_mp123 += mpzne req_mp123 += mpzne
if any(chan in mpzne for chan in included_mp): if any(chan in mpabc for chan in included_mp):
req_mp123 += mpabc req_mp123 += mpabc
if any(chan in mp123 for chan in included_mp):
req_mp123 += mp123
if req_mp123 == []: if req_mp123 == []:
# if none of 123/zne/abc, just report 123 # if none of 123/zne/abc, just report 123
req_mp123 += mp123 req_mp123 += mp123
......
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