You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue for CHIME combination in enterprise/enterprise/signals/selections.py , starting line 118:
def nanograv_backends(backend_flags):
"""Selection function to split by NANOGRav backend flags only."""
flagvals = np.unique(backend_flags)
ngb = ["ASP", "GASP", "GUPPI", "PUPPI", "YUPPI"]
flagvals = [val for val in flagvals if any([b in val for b in ngb])]
return {val: backend_flags == val for val in flagvals}
Need to add in "CHIME" in line 121: ngb = ["ASP", "GASP", "GUPPI", "PUPPI", "YUPPI", "CHIME"]
The text was updated successfully, but these errors were encountered:
Issue for CHIME combination in
enterprise/enterprise/signals/selections.py
, starting line 118:Need to add in "CHIME" in line 121:
ngb = ["ASP", "GASP", "GUPPI", "PUPPI", "YUPPI", "CHIME"]
The text was updated successfully, but these errors were encountered: