From 7aa81a2dfd15a257b313a72841d664802562ac6a Mon Sep 17 00:00:00 2001 From: Roy Stegeman Date: Fri, 15 Nov 2024 16:11:01 +0000 Subject: [PATCH] remove 'theory_covmat_flag' also from n3fit_exec --- n3fit/src/n3fit/scripts/n3fit_exec.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/n3fit/src/n3fit/scripts/n3fit_exec.py b/n3fit/src/n3fit/scripts/n3fit_exec.py index 80a21e4b74..85fa4f3ed8 100755 --- a/n3fit/src/n3fit/scripts/n3fit_exec.py +++ b/n3fit/src/n3fit/scripts/n3fit_exec.py @@ -156,7 +156,6 @@ def from_yaml(cls, o, *args, **kwargs): N3FIT_FIXED_CONFIG['positivity_bound'] = None # Theorycovmat flags and defaults - N3FIT_FIXED_CONFIG['theory_covmat_flag'] = False N3FIT_FIXED_CONFIG['use_thcovmat_in_fitting'] = False N3FIT_FIXED_CONFIG['use_thcovmat_in_sampling'] = False if (thconfig := file_content.get('theorycovmatconfig')) is not None: @@ -166,11 +165,6 @@ def from_yaml(cls, o, *args, **kwargs): N3FIT_FIXED_CONFIG['use_thcovmat_in_sampling'] = thconfig.get( 'use_thcovmat_in_sampling', True ) - if ( - N3FIT_FIXED_CONFIG['use_thcovmat_in_sampling'] - or N3FIT_FIXED_CONFIG['use_thcovmat_in_fitting'] - ): - N3FIT_FIXED_CONFIG['theory_covmat_flag'] = True N3FIT_FIXED_CONFIG['use_user_uncertainties'] = thconfig.get( 'use_user_uncertainties', False )