This commit is contained in:
Ramona
2018-11-15 15:26:43 +01:00

View File

@@ -81,7 +81,7 @@ def read_chirp_times(dataset):
if "#Key" in l:
chirp_times[(index, df, contrast, cs)] = []
if len(l.strip()) != 0 and "#" not in l:
chirp_times[(index, df, contrast, cs)].append(float(l.split()[1]))
chirp_times[(index, df, contrast, cs)].append(float(l.split()[1]) * 1000.)
return chirp_times