From e8047d49ff3daec3ead1e0e7e3c6281a68cb5203 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 31 Mar 2025 14:06:24 +0000 Subject: [PATCH] correct type for F_V0 --- corrlib/input/sfcf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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):