Skip to content

Commit

Permalink
Change pc jet dependence from pT to eta
Browse files Browse the repository at this point in the history
  • Loading branch information
achiefa committed Jan 23, 2025
1 parent 244d311 commit 8ef01a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -885,11 +885,11 @@ def average(y_values_pc2_p, y_values_pcL_p, y_values_pc3_p):
# AFter the data re-implementation the name of the variables
# in the commondata table will change as indicated in the metadata.
# When this happens, this part must be updated.
# eta = cd_table['kin1'].to_numpy()
eta = cd_table['kin1'].to_numpy()
pT = cd_table['kin2'].to_numpy()
q2 = pT * pT

pc_func = JET_pc(pc_jet_nodes, pT, q2)
pc_func = JET_pc(pc_jet_nodes, eta, q2)
for pars_pc in pars_combs:
deltas[pars_pc['label']] = pc_func(pars_pc['comb']['Hj'])

Expand Down

0 comments on commit 8ef01a2

Please sign in to comment.