GatingSet/GatingHierarchy C++ API
 All Classes Functions Variables
VertexID_vec getDescendants ( VertexID  u,
string  name 
)

search for all the nodes that matches the pop name given the ancestor node id

Parameters
uthe ancestor node id to search from
namethe node name to search for
Returns
the vector of node id that match

For example:

VertexID parentID = gh->getNodeID("CD3");
//this may return two descendants: "CD3/CD4/CCR7+ 45RA+" and "CD3/CD8/CCR7+ 45RA+"
gh->getDescendants(parentID, "CCR7+ 45RA+");