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

Public Member Functions

 NodeNameMatcherClass (std::set< std::string > const &names)
 
bool operator() (TGeoNode const &node) const
 Returns whether the specified node matches a set of names. More...
 

Public Attributes

std::set< std::string > const * vol_names
 

Detailed Description

Definition at line 661 of file GeometryCore.cxx.

Constructor & Destructor Documentation

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

Definition at line 664 of file GeometryCore.cxx.

665  : vol_names(&names) {}
std::set< std::string > const * vol_names

Member Function Documentation

bool geo::NodeNameMatcherClass::operator() ( TGeoNode const &  node) const
inline

Returns whether the specified node matches a set of names.

Definition at line 668 of file GeometryCore.cxx.

669  {
670  if (!vol_names) return true;
671  return vol_names->find(node.GetVolume()->GetName()) != vol_names->end();
672  }
std::set< std::string > const * vol_names

Member Data Documentation

std::set<std::string> const* geo::NodeNameMatcherClass::vol_names

Definition at line 662 of file GeometryCore.cxx.


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