LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GeoNodePath.cxx
Go to the documentation of this file.
1 
7 // LArSoft libraries
9 
10 // ROOT libraries
11 #include "TGeoNode.h"
12 
13 // Boost includes
14 #include "boost/functional/hash.hpp"
15 
16 // C++ STL libraries
17 #include <iostream>
18 
19 namespace {
20  std::size_t combine(std::size_t a, std::size_t const b)
21  {
22  boost::hash_combine(a, b);
23  return a;
24  }
25 
26  std::hash<TGeoNode const*> node_hash;
27  geo::GeoNodePath::Entry entry_for(TGeoNode const* node)
28  {
29  return {node, node_hash(node)};
30  }
31  geo::GeoNodePath::Entry entry_for(geo::GeoNodePath::Entry const& parent, TGeoNode const* node)
32  {
33  return {node, combine(parent.hash_value, node_hash(node))};
34  }
35 }
36 
37 namespace geo {
38 
39  GeoNodePath::GeoNodePath(TGeoNode const* topNode) : fNodes{entry_for(topNode)} {}
40 
41  bool GeoNodePath::empty() const
42  {
43  return fNodes.empty();
44  }
45 
47  {
48  return fNodes.size();
49  }
50 
51  TGeoNode const* GeoNodePath::current() const
52  {
53  return current_entry().node;
54  }
55 
57  {
58  return fNodes.back();
59  }
60 
62  {
63  if (auto const size = depth(); size > 1ull) { return fNodes[size - 2ull]; }
64  return {};
65  }
66 
67  void GeoNodePath::append(TGeoNode const* node)
68  {
69  auto entry = empty() ? entry_for(node) : entry_for(current_entry(), node);
70  fNodes.push_back(std::move(entry));
71  }
72 
74  {
75  fNodes.pop_back();
76  }
77 
78  GeoNodePath::operator std::string() const
79  {
80  std::string s = "[";
81  auto it = fNodes.cbegin(), end = fNodes.cend();
82  if (it != end) {
83  s += it->node->GetName();
84  while (++it != fNodes.cend()) {
85  s += '/';
86  s += it->node->GetName();
87  }
88  } // if
89  return s + ']';
90  }
91 }
Depth_t depth() const
Returns the depth of the path (elements including up to the current).
Definition: GeoNodePath.cxx:46
GeoNodePath(TGeoNode const *topNode)
Sets all the the specified nodes into the current path.
Definition: GeoNodePath.cxx:39
TGeoNode const * current() const
Returns the current node. Undefined if the path is empty.
Definition: GeoNodePath.cxx:51
bool empty() const
Returns whether there is a current node.
Definition: GeoNodePath.cxx:41
std::vector< Entry > fNodes
Local path of pointers to ROOT geometry nodes.
Definition: GeoNodePath.h:84
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.
Definition: GeoNodePath.cxx:61
decltype(auto) constexpr end(T &&obj)
ADL-aware version of std::end.
Definition: StdUtils.h:77
decltype(auto) constexpr size(T &&obj)
ADL-aware version of std::size.
Definition: StdUtils.h:101
void pop()
Removes the current node from the path, moving the current one up.
Definition: GeoNodePath.cxx:73
Entry current_entry() const
Returns the current node. Undefined if the path is empty.
Definition: GeoNodePath.cxx:56
std::size_t Depth_t
Type used to represent the depth of the path.
Definition: GeoNodePath.h:41
void append(TGeoNode const *node)
Adds a node to the current path.
Definition: GeoNodePath.cxx:67
ROOT libraries.