Skip to content

Commit

Permalink
added DY_Z_Y process type, changed name of kinematics, identity for k…
Browse files Browse the repository at this point in the history
…in override
  • Loading branch information
comane committed Dec 8, 2024
1 parent a75261d commit b20b500
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 119 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def filter_ATLAS_Z0_8TEV_HIMASS_systematics():
error_definitions["ATLASLUMI12"] = {
"description": f"ATLASLUMI12",
"treatment": "MULT",
"type": "SPECIAL",
"type": "ATLASLUMI12",
}

else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def get_kinematics():
):

kin_value = {
'y': {
'abs_y': {
'min': indep_var1['low'],
'mid': 0.5 * (indep_var1['low'] + indep_var1['high']),
'max': indep_var1['high'],
},
'M2': {
'min': indep_var2['low'] ** 2,
'mid': (0.5 * (indep_var2['low'] + indep_var2['high'])) ** 2,
'max': indep_var2['high'] ** 2,
'm_ll2': {
'min': indep_var2['low']**2,
'mid': (0.5 * (indep_var2['low'] + indep_var2['high']))**2,
'max': indep_var2['high']**2,
},
'sqrts': {'min': None, 'mid': 8000.0, 'max': None},
}
Expand Down
Loading

0 comments on commit b20b500

Please sign in to comment.