LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
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 620 of file GeometryCore.cxx.

Constructor & Destructor Documentation

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

Definition at line 623 of file GeometryCore.cxx.

624  : 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 627 of file GeometryCore.cxx.

628  {
629  if (!vol_names) return true;
630  return vol_names->find(node.GetVolume()->GetName()) != vol_names->end();
631  }
std::set< std::string > const * vol_names

Member Data Documentation

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

Definition at line 621 of file GeometryCore.cxx.


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