-
Notifications
You must be signed in to change notification settings - Fork 0
Description
I think noticed a bug in the read_ldata function. I encountered it using the lq_processor for old data(production v1.0) using the newest version of the DataManagement
For version 0.5.5 of the LegendDataManagement this line:
dsp=read_ldata(:dataQC, l200, :jlhit, :cal, period, run, ch)
returned a Table with columns of dsp-parameters and values:
Table with 53 columns and 298468 rows:
blmean blsigma blslope
┌───────────────────
1 │ 1.19915e5 67.0303 -0.000110961 ns^-1
But with version 0.5.6 a Table with the colum dataQC is returned. Its entries are a NamedTuple containing dsp-parameter and its values:
Table with 1 column and 298468 rows:
dataQC
┌───────────────────
1 | (blmean = 1.19915e5, blsigma = 67.0303, blslope = -0.000110961 ns^-1 …
Is this intended behaviour? It got introduced in Pr legend-exp/LegendDataManagement.jl#128.
If yes the processors would need an update.