Skip to content

Commit

Permalink
fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaliva committed Oct 3, 2024
1 parent 6ef76f7 commit 269e8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGLF/Tasks/Strangeness/strangeness_in_jets.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ struct strangeness_in_jets {

for (auto& mcParticle : mcParticles_per_coll) {

if (mcParticle.y() < yMin || mcParticle.y() > yMax)
if (mcParticle.eta() < etaMin || mcParticle.eta() > etaMax)
continue;
if (!mcParticle.isPhysicalPrimary())
continue;
Expand Down

0 comments on commit 269e8c0

Please sign in to comment.