Skip to content

Commit

Permalink
Merge pull request #17 from alibuild/alibot-cleanup-8236
Browse files Browse the repository at this point in the history
Please consider the following formatting changes to AliceO2Group#8236
  • Loading branch information
bghanley1995 authored Oct 30, 2024
2 parents 34a1c40 + b49a1d9 commit 013e94a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1444,13 +1444,11 @@ inline int8_t IdentifiedBfFilterTracks::AcceptParticle(ParticleObject& particle,

if (ptlow < particle.pt() && particle.pt() < ptup && etalow < particle.eta() && particle.eta() < etaup) {
MatchRecoGenSpecies sp = IdentifyParticle(particle);
if(charge == 1){
if (charge == 1) {
return speciesChargeValue1[sp];

}
else if(charge == -1){
} else if (charge == -1) {
return speciesChargeValue1[sp] + 1;

}
}
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,6 @@ inline float getCharge(ParticleObject& particle)
return charge;
}



} // namespace identifiedbffilter
} // namespace analysis
} // namespace o2
Expand Down

0 comments on commit 013e94a

Please sign in to comment.