Skip to content

Commit b059d0c

Browse files
authored
[ALICE3] Fix production time for daughters from cascade decays in a3 decayer (#16947)
1 parent 4e7ee67 commit b059d0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ALICE3/TableProducer/OTF/onTheFlyDecayer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ struct OnTheFlyDecayer {
166166
daughter.setCollisionId(particle.collisionId());
167167
daughter.setBitOn(o2::upgrade::DecayerBits::IsAlive);
168168
daughter.setBitOff(o2::upgrade::DecayerBits::IsPrimary);
169-
daughter.setProductionTime(trackTimeNS);
169+
daughter.setProductionTime(particle.vt() + trackTimeNS);
170170
allParticles.push_back(daughter);
171171
}
172172
ndau += decayStack.size();

0 commit comments

Comments
 (0)