Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattia Faggin committed Jun 12, 2024
1 parent c9be11f commit d2c8044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Bool_t importParticles() override

/// copy the particles from the HF event in the particle stack
auto particlesHfEvent = mGeneratorEvHF->getParticles();
for(int iPart=0; iPart<=particlesHfEvent.size(); iPart++) {
for(int iPart=0; iPart<particlesHfEvent.size(); iPart++) {
mParticles.push_back(TParticle(particlesHfEvent.at(iPart)));
}

Expand Down

0 comments on commit d2c8044

Please sign in to comment.