Skip to content

Commit

Permalink
added def value of lumi unc
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Nov 9, 2024
1 parent dbdd030 commit e247db7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import yaml

ATLAS_LUMI_UNC = 0.018

def get_kinematics():
"""
Expand Down Expand Up @@ -93,6 +94,6 @@ def get_systematics(version=3):
# # Luminosity uncertainty is 1.8 % of the central value (see https://inspirehep.net/literature/1630886)
if version == 3: # in version 1 Lumi is included in the hepdata file already
name = "ATLAS_LUMI"
values = [0.019 * val for val in get_data_values()]
values = [ATLAS_LUMI_UNC * val for val in get_data_values()]
uncertainties.append([{"name": name, "values": values}])
return uncertainties

0 comments on commit e247db7

Please sign in to comment.