Skip to content

Commit

Permalink
Removed hard-coded scale -10e-4
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaMantani committed Jul 21, 2022
1 parent 2154b0c commit 5d65eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validphys2/src/validphys/n3fit_data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def parse_fit_cfac_dict(fit_cfac_dict, cuts):
with open(path, 'rb') as stream:
cfac = parse_cfactor(stream)
#TODO: Figure out a better way to handle the default
cfac.central_value = (cfac.central_value[cuts] - 1) / (-10e-4)
cfac.central_value = (cfac.central_value[cuts] - 1)
cfac.uncertainty = cfac.uncertainty[cuts]
name_cfac_map[name] = cfac
return name_cfac_map
Expand Down

0 comments on commit 5d65eef

Please sign in to comment.