Public Member Functions | Public Attributes | Protected Attributes | List of all members
geo::CollectNodesByName Struct Reference

Public Member Functions

 CollectNodesByName (std::set< std::string > const &names)
 
void operator() (TGeoNode const &node)
 If the name of the node matches, records the end node. More...
 
void operator() (ROOTGeoNodeForwardIterator const &iter)
 

Public Attributes

std::vector< TGeoNode const * > nodes
 

Protected Attributes

NodeNameMatcherClass matcher
 

Detailed Description

Definition at line 676 of file GeometryCore.cxx.

Constructor & Destructor Documentation

geo::CollectNodesByName::CollectNodesByName ( std::set< std::string > const &  names)
inline

Definition at line 679 of file GeometryCore.cxx.

679 : matcher(names) {}
NodeNameMatcherClass matcher

Member Function Documentation

void geo::CollectNodesByName::operator() ( TGeoNode const &  node)
inline

If the name of the node matches, records the end node.

Definition at line 682 of file GeometryCore.cxx.

683  { if (matcher(node)) nodes.push_back(&node); }
NodeNameMatcherClass matcher
std::vector< TGeoNode const * > nodes
void geo::CollectNodesByName::operator() ( ROOTGeoNodeForwardIterator const &  iter)
inline

Definition at line 685 of file GeometryCore.cxx.

686  { operator() (**iter); }
void operator()(TGeoNode const &node)
If the name of the node matches, records the end node.

Member Data Documentation

NodeNameMatcherClass geo::CollectNodesByName::matcher
protected

Definition at line 689 of file GeometryCore.cxx.

std::vector<TGeoNode const*> geo::CollectNodesByName::nodes

Definition at line 677 of file GeometryCore.cxx.


The documentation for this struct was generated from the following file: