Belle II Software development
|
DecayNode describes the decay of a particle identified by its pdg code, into list of daughters. More...
#include <DecayNode.h>
Public Member Functions | |
DecayNode (int _pdg=0, const std::vector< DecayNode > &_daughters={}) | |
Create new Decay node. | |
bool | find_decay (const DecayNode &to_find) const |
Check if the decay node contains the given decay tree. | |
std::string | print_node (unsigned int indent=0) const |
Output a single node. | |
Public Attributes | |
int | pdg |
pdg code of the particle | |
std::vector< DecayNode > | daughters |
daughter decay nodes | |
DecayNode describes the decay of a particle identified by its pdg code, into list of daughters.
Definition at line 23 of file DecayNode.h.
Create new Decay node.
_pdg | code of the particle |
_daughters | of the particle |
Definition at line 31 of file DecayNode.h.
std::vector<DecayNode> daughters |
daughter decay nodes
Definition at line 48 of file DecayNode.h.
int pdg |
pdg code of the particle
Definition at line 47 of file DecayNode.h.