Skip to content

Commit

Permalink
added process type to metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Dec 7, 2024
1 parent fcab0ae commit d86c293
Show file tree
Hide file tree
Showing 8 changed files with 183 additions and 25,747 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def filter_ATLAS_Z0_8TEV_LOWMASS_systematics(version=3):
error_definitions[sys[0]['name']] = {
"description": f"{sys[0]['name']}",
"treatment": "MULT",
"type": "SPECIAL",
"type": "UNCORR",
}

else:
Expand Down Expand Up @@ -90,4 +90,4 @@ def filter_ATLAS_Z0_8TEV_LOWMASS_systematics(version=3):
if __name__ == "__main__":
filter_ATLAS_Z0_8TEV_LOWMASS_data_kinetic()
filter_ATLAS_Z0_8TEV_LOWMASS_systematics(version=3)
filter_ATLAS_Z0_8TEV_LOWMASS_systematics(version=1)
# filter_ATLAS_Z0_8TEV_LOWMASS_systematics(version=1)
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def get_kinematics():
'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_Z2': {
'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 d86c293

Please sign in to comment.