ModuleGraphInfo.cc
Go to the documentation of this file.
2 
3 std::ostream&
4 art::detail::operator<<(std::ostream& os, ModuleGraphInfo const& info)
5 {
6  os << "Module type: " << to_string(info.module_type) << '\n';
7  os << "Product dependencies: ";
8  for (auto const& dep : info.consumed_products) {
9  os << dep << ' ';
10  }
11  os << "\nPaths: ";
12  for (auto const& path : info.paths) {
13  os << path << ' ';
14  }
15  return os;
16 }
std::set< ProductInfo > consumed_products
std::ostream & operator<<(std::ostream &os, Analyzer::Table< T > const &t)
Definition: Analyzer.h:136
std::set< std::string > paths
std::string to_string(ModuleType const mt)
Definition: ModuleType.h:34