Skip to content

Commit

Permalink
renamed stat as stat_mult
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Jan 15, 2025
1 parent 05ae257 commit 0f4c4f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ def filter_ATLAS_Z0_8TEV_HIMASS_systematics():
errors = []

for sys in systematics:
if (sys[0]['name'] == 'stat') or (sys[0]['name'] == 'sys,unc'):
if sys[0]['name'] == 'stat':
error_definitions[sys[0]['name']] = {
"description": "stat_mult", # stat is required to have treatment == ADD
"treatment": "MULT",
"type": "UNCORR",
}

elif sys[0]['name'] == 'sys,unc':
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,6 +1,6 @@
definitions:
stat:
description: stat
description: stat_mult
treatment: MULT
type: UNCORR
sys,unc:
Expand Down

0 comments on commit 0f4c4f0

Please sign in to comment.