Skip to content

Commit

Permalink
Add cov mat file to config builder
Browse files Browse the repository at this point in the history
  • Loading branch information
andreicuceu committed Dec 1, 2023
1 parent dbfc2a3 commit 40b86d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vega/build_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ def _build_corr_config(self, name, corr_info, git_hash):
config['data']['filename'] = corr_info.get('corr_path')
if 'distortion-file' in corr_info:
config['data']['distortion-file'] = corr_info.get('distortion-file')
if 'covariance-file' in corr_info:
config['data']['covariance-file'] = corr_info.get('covariance-file')

Check warning on line 219 in vega/build_config.py

View check run for this annotation

Codecov / codecov/patch

vega/build_config.py#L219

Added line #L219 was not covered by tests

config['cuts']['r-min'] = str(corr_info.get('r-min', 10))
config['cuts']['r-max'] = str(corr_info.get('r-max', 180))
Expand Down

0 comments on commit 40b86d8

Please sign in to comment.