We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parent_track_id seems to match track_id but not ancestor_track_id:
parent_track_id
track_id
ancestor_track_id
>>> [p.track_id() for p in tree.particle_pcluster_branch.as_vector()] [2689, 5207, 5210, 5211, 6730, 2905, 2900, 2907, 2903, 2913, 2927, 2924, 6158, 6736, 6735, 6731, 6739, 6741] >>> [p.parent_track_id() for p in tree.particle_pcluster_branch.as_vector()] [2689, 5207, 5210, 5211, 6730, 2900, 2689, 2905, 2900, 2903, 2913, 2913, 5210, 6735, 6731, 6730, 6736, 6739] >>> [p.ancestor_track_id() for p in tree.particle_pcluster_branch.as_vector()] [0, 1, 2, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
parent_track_id
seems to matchtrack_id
but notancestor_track_id
:The text was updated successfully, but these errors were encountered: