14 #include "boost/functional/hash.hpp" 20 std::size_t combine(std::size_t a, std::size_t
const b)
22 boost::hash_combine(a, b);
26 std::hash<TGeoNode const*> node_hash;
29 return {node, node_hash(node)};
33 return {node, combine(parent.
hash_value, node_hash(node))};
70 fNodes.push_back(std::move(entry));
78 GeoNodePath::operator std::string()
const 83 s += it->node->GetName();
84 while (++it !=
fNodes.cend()) {
86 s += it->node->GetName();
Depth_t depth() const
Returns the depth of the path (elements including up to the current).
GeoNodePath(TGeoNode const *topNode)
Sets all the the specified nodes into the current path.
TGeoNode const * current() const
Returns the current node. Undefined if the path is empty.
bool empty() const
Returns whether there is a current node.
std::vector< Entry > fNodes
Local path of pointers to ROOT geometry nodes.
Class representing a path in ROOT geometry.
Entry parent_entry() const
Returns the parent entry of the current entry, or null if there is no parent.
decltype(auto) constexpr end(T &&obj)
ADL-aware version of std::end.
decltype(auto) constexpr size(T &&obj)
ADL-aware version of std::size.
void pop()
Removes the current node from the path, moving the current one up.
Entry current_entry() const
Returns the current node. Undefined if the path is empty.
std::size_t Depth_t
Type used to represent the depth of the path.
void append(TGeoNode const *node)
Adds a node to the current path.