correct type for F_V0
This commit is contained in:
parent
3630d570df
commit
e8047d49ff
1 changed files with 6 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue