Public Member Functions | Public Attributes | List of all members
gar::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 234 of file GeometryCore.cxx.

Constructor & Destructor Documentation

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

Definition at line 237 of file GeometryCore.cxx.

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

Member Function Documentation

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

Returns whether the specified node matches a set of names.

Definition at line 241 of file GeometryCore.cxx.

242  {
243  if (!vol_names) return true;
244  return vol_names->find(node.GetVolume()->GetName()) != vol_names->end();
245  }
std::set< std::string > const * vol_names

Member Data Documentation

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

Definition at line 235 of file GeometryCore.cxx.


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