You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have an MC file which contains a vertex -> daughters -> vertex type data structure. This is often found in an MC Les Houches generator files.
For each tree, you have some way of telling if a particle is something that came from the hard scatter. That is, an outgoing parton.
It is the case that in NLO and NNLO, etc., you might have more than one parton as a parent, but for the sake of this let's pretend that that doesn't happen.
What you want
Match the closest MC particle with a jet axis
Find the 'parton' that particle is descended from
Why this is tricky
You have to traverse parent vertices and particles until you find what the parton is. This is a loop that doesn't have a fixed number of iterations. You have to keep walking up the tree until you find the MC particle that satisfies the I am a parton condition.
The text was updated successfully, but these errors were encountered:
Assumptions
What you want
Why this is tricky
You have to traverse parent vertices and particles until you find what the parton is. This is a loop that doesn't have a fixed number of iterations. You have to keep walking up the tree until you find the MC particle that satisfies the I am a parton condition.
The text was updated successfully, but these errors were encountered: