Skip to content

Commit

Permalink
Merge pull request #1952 from NNPDF/drop_the_sqr_and_label_the_y
Browse files Browse the repository at this point in the history
Drop the sqr and label the y
  • Loading branch information
scarlehoff authored Feb 22, 2024
2 parents dbedd5b + 9179171 commit 413f68a
Show file tree
Hide file tree
Showing 11 changed files with 1,973 additions and 1,973 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def processData():
data_central_value = values[j]['value'] + value_delta
data_central.append(data_central_value)
error.append(error_value)
kin_value = {'sqrts': {'min': None, 'mid': sqrts, 'max': None}, 'pT2': {'min': pT_min**2, 'mid': None, 'max': pT_max**2}, 'y': {'min': y_min, 'mid': y_central, 'max': y_max}}
kin_value = {'sqrts': {'min': None, 'mid': sqrts, 'max': None}, 'pT': {'min': pT_min, 'mid': None, 'max': pT_max}, 'y': {'min': y_min, 'mid': y_central, 'max': y_max}}
kin.append(kin_value)

hepdata_tables="rawdata/atlas_inclusive_jet2015_r04_eta1.yaml"
Expand Down Expand Up @@ -124,7 +124,7 @@ def processData():
data_central_value = values[j]['value'] + value_delta
data_central_altcorr1.append(data_central_value)
error_altcorr1.append(error_value)
kin_value = {'sqrts': {'min': None, 'mid': sqrts, 'max': None}, 'pT2': {'min': pT_min**2, 'mid': None, 'max': pT_max**2}, 'y': {'min': y_min, 'mid': y_central, 'max': y_max}}
kin_value = {'sqrts': {'min': None, 'mid': sqrts, 'max': None}, 'pT': {'min': pT_min, 'mid': None, 'max': pT_max}, 'y': {'min': y_min, 'mid': y_central, 'max': y_max}}
kin_altcorr1.append(kin_value)

hepdata_tables="rawdata/atlas_inclusive_jet2015_r04_altcorr1_eta1.yaml"
Expand Down
Loading

0 comments on commit 413f68a

Please sign in to comment.