Skip to content
Snippets Groups Projects
Commit 8a5fefc4 authored by Chad Hanna's avatar Chad Hanna
Browse files

lal_itac: fix wrong type for autocorrelation-mask array

parent cf79c2ac
No related branches found
No related tags found
No related merge requests found
......@@ -845,18 +845,17 @@ static void class_init(gpointer class, gpointer class_data)
ARG_AUTOCORRELATION_MASK,
g_param_spec_value_array(
"autocorrelation-mask",
"Autocorrelation Mask",
"Autocorrelation Mask Matrix",
"Array of integer autocorrelation mask vectors. Number of vectors (rows) in mask sets number of channels. All vectors must have the same length. The mask values are either 0 or 1 and indicate whether to use the corresponding matrix entry in computing the autocorrelation chi-sq statistic.",
g_param_spec_value_array(
"autocorrelation",
"Autocorrelation",
"autocorrelation-mask",
"Autocorrelation-mask",
"Array of autocorrelation mask values.",
/* FIXME: should be complex */
g_param_spec_double(
g_param_spec_int(
"sample",
"Sample",
"Autocorrelation mask value",
0, 1, 0.0,
0, 1, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS
),
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS
......
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