Skip to content

Commit

Permalink
set stat unc to ADD
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Oct 21, 2024
1 parent c917763 commit 699177f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_7TEV_LOMASS/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ def filter_ATLAS_Z0_7TEV_LOMASS_systematics():
errors = []

for sys in systematics:
if sys[0]['name'] == 'stat':
error_definitions[sys[0]['name']] = {
"description": f"{sys[0]['name']}",
"treatment": "ADD",
"type": "UNCORR",
}

if (
(sys[0]['name'] == 'stat')
or (sys[0]['name'] == 'sys_res')
or (sys[0]['name'] == 'sys_MC')
):
elif (sys[0]['name'] == 'sys_res') or (sys[0]['name'] == 'sys_MC'):
error_definitions[sys[0]['name']] = {
"description": f"{sys[0]['name']}",
"treatment": "MULT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
definitions:
stat:
description: stat
treatment: MULT
treatment: ADD
type: UNCORR
sys_reco:
description: sys_reco
Expand Down

0 comments on commit 699177f

Please sign in to comment.