Skip to content

Commit 76eea70

Browse files
authored
[PWGJE] fix filling of histogram (#12524)
1 parent 90279c6 commit 76eea70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGJE/Tasks/jetHadronRecoil.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ struct JetHadronRecoil {
257257
registry.fill(HIST("hEtaTrack"), track.eta(), weight);
258258
registry.fill(HIST("hPhiTrack"), track.phi(), weight);
259259
registry.fill(HIST("hTrack3D"), track.pt(), track.eta(), track.phi(), weight);
260-
registry.fill(HIST("hPtTrackPtHard"), track.pt(), track.pt() / pTHat, weight);
260+
registry.fill(HIST("hPtTrackPtHard"), track.pt() / pTHat, track.pt(), weight);
261261
}
262262

263263
if (nTT > 0) {

0 commit comments

Comments
 (0)