Skip to content

Commit 03262e0

Browse files
committed
[PWGJE] Fix compilation error
1 parent 8fc88ca commit 03262e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGJE/Tasks/recoilJets.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,10 @@ struct RecoilJets {
350350
bSigEv = true;
351351

352352
for (const auto& jet : jets) {
353-
if (jet.pt() > pTHatMax * pTHat)
353+
if (jet.pt() > pTHatMax * pTHat) {
354354
spectra.fill(HIST("hEventSelectionCountPartLevel"), 1.5);
355355
return;
356+
}
356357
}
357358

358359
for (const auto& particle : particles) {

0 commit comments

Comments
 (0)