-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
bdt_disc
flag, correct GloParT-v2 mass (#232)
* add bdt_disc flag * fix * fix * fix mass * style: pre-commit fixes * fix dict name * swap order * update mass window * dummy values * dummy * add new corrections * style: pre-commit fixes * fix bool * style: pre-commit fixes * fix fom report * style: pre-commit fixes * generalize * style: pre-commit fixes * 10.7 * update * update create datacard * style: pre-commit fixes --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Cristina Mantilla Suarez <[email protected]>
- Loading branch information
1 parent
bbfffc0
commit 0c16deb
Showing
45 changed files
with
3,141 additions
and
179 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
108 changes: 108 additions & 0 deletions
108
src/HH4b/corrections/data/ttbar_sfs/dummy/ttbar_bdtshapedummy_2022-2023.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"schema_version": 2, | ||
"corrections": [ | ||
{ | ||
"name": "ttbar_corr_bdtshape_2022-2023", | ||
"description": "ttbar correction bdtshape for 2022-2023", | ||
"version": 1, | ||
"inputs": [ | ||
{ | ||
"name": "bdtshape", | ||
"type": "real", | ||
"description": "bdtshape" | ||
}, | ||
{ | ||
"name": "systematic", | ||
"type": "string", | ||
"description": "Systematic variation" | ||
} | ||
], | ||
"output": { | ||
"name": "weight", | ||
"type": "real", | ||
"description": "ttbar efficiency" | ||
}, | ||
"data": { | ||
"nodetype": "category", | ||
"input": "systematic", | ||
"content": [ | ||
{ | ||
"key": "nominal", | ||
"value": { | ||
"nodetype": "binning", | ||
"input": "bdtshape", | ||
"edges": [ | ||
0.0, | ||
0.03, | ||
0.3, | ||
0.5, | ||
0.7, | ||
0.93, | ||
1.0 | ||
], | ||
"content": [ | ||
1.0, | ||
1.0, | ||
1.0, | ||
1.0, | ||
1.0, | ||
1.0 | ||
], | ||
"flow": 1.0 | ||
} | ||
}, | ||
{ | ||
"key": "stat_up", | ||
"value": { | ||
"nodetype": "binning", | ||
"input": "bdtshape", | ||
"edges": [ | ||
0.0, | ||
0.03, | ||
0.3, | ||
0.5, | ||
0.7, | ||
0.93, | ||
1.0 | ||
], | ||
"content": [ | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3 | ||
], | ||
"flow": 1.0 | ||
} | ||
}, | ||
{ | ||
"key": "stat_dn", | ||
"value": { | ||
"nodetype": "binning", | ||
"input": "bdtshape", | ||
"edges": [ | ||
0.0, | ||
0.03, | ||
0.3, | ||
0.5, | ||
0.7, | ||
0.93, | ||
1.0 | ||
], | ||
"content": [ | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3, | ||
0.3 | ||
], | ||
"flow": 1.0 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.