missed some brakets

This commit is contained in:
jkuhl-uni 2022-12-20 15:43:17 +01:00
parent 134fe7d3f7
commit ef2323e9bd

View file

@ -1084,7 +1084,7 @@ def read_ms5_xsf(path, prefix, qc, corr):
realObs = []
imagObs = []
compObs = []
for t in range(tmax): realObs.append(Obs(realsamples[t], names = prefix, idl = cnfgs))
for t in range(tmax): imagObs.append(Obs(imagsamples[t], names = prefix, idl = cnfgs))
for t in range(tmax): realObs.append(Obs([realsamples[t]], names = [prefix], idl = [cnfgs]))
for t in range(tmax): imagObs.append(Obs([imagsamples[t]], names = [prefix], idl = [cnfgs]))
for t in range(tmax): compObs.append(CObs(realObs[t], imagObs[t]))
return Corr(compObs)