diff --git a/corrlib/input/sfcf.py b/corrlib/input/sfcf.py index 2133fdb..b2eb630 100644 --- a/corrlib/input/sfcf.py +++ b/corrlib/input/sfcf.py @@ -48,7 +48,6 @@ bb_corrs = [ 'f_1', 'F1ll', 'k_1', - 'F_V0', 'F_AA_a', 'F_AA_d', 'F_AdP_a', @@ -63,12 +62,18 @@ bb_corrs = [ 'F_sPdP_d', ] +bib_corrs = [ + 'F_V0', + ] + corr_types = {} for c in bi_corrs: corr_types[c] = 'bi' for c in bb_corrs: corr_types[c] = 'bb' +for c in bib_corrs: + corr_types[c] = 'bib' def read_param(path, project, file_in_project):