Skip to content

Commit

Permalink
Fix minor bug in kf path (AliceO2Group#3348)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobrigk authored Aug 18, 2023
1 parent 05f19ee commit 4386ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PWGLF/TableProducer/cascadebuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1080,8 +1080,8 @@ struct cascadeBuilder {
KFParticle kfpV0 = createKFParticleFromTrackParCov(v0TrackParCov, 0, o2::constants::physics::MassLambda);
KFParticle kfpBachPion = createKFParticleFromTrackParCov(lBachelorTrack, cascadecandidate.charge, massBachelorPion);
KFParticle kfpBachKaon = createKFParticleFromTrackParCov(lBachelorTrack, cascadecandidate.charge, massBachelorKaon);
const KFParticle* XiDaugthers[2] = {&kfpBachPion, &KFV0};
const KFParticle* OmegaDaugthers[2] = {&kfpBachKaon, &KFV0};
const KFParticle* XiDaugthers[2] = {&kfpBachPion, &kfpV0};
const KFParticle* OmegaDaugthers[2] = {&kfpBachKaon, &kfpV0};

// construct mother
KFParticle KFXi, KFOmega;
Expand Down

0 comments on commit 4386ea3

Please sign in to comment.