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',
'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):