correct type for F_V0

This commit is contained in:
Justus Kuhlmann 2025-03-31 14:06:24 +00:00
parent 3630d570df
commit e8047d49ff

View file

@ -48,7 +48,6 @@ bb_corrs = [
'f_1', 'f_1',
'F1ll', 'F1ll',
'k_1', 'k_1',
'F_V0',
'F_AA_a', 'F_AA_a',
'F_AA_d', 'F_AA_d',
'F_AdP_a', 'F_AdP_a',
@ -63,12 +62,18 @@ bb_corrs = [
'F_sPdP_d', 'F_sPdP_d',
] ]
bib_corrs = [
'F_V0',
]
corr_types = {} corr_types = {}
for c in bi_corrs: for c in bi_corrs:
corr_types[c] = 'bi' corr_types[c] = 'bi'
for c in bb_corrs: for c in bb_corrs:
corr_types[c] = 'bb' corr_types[c] = 'bb'
for c in bib_corrs:
corr_types[c] = 'bib'
def read_param(path, project, file_in_project): def read_param(path, project, file_in_project):