ModuleKeyAndType.cc
Go to the documentation of this file.
2 
3 namespace art::detail {
5  module_type(std::string const& full_key)
6  {
7  if (full_key.find("physics.producers") == 0) {
9  } else if (full_key.find("physics.filters") == 0) {
10  return ModuleType::filter;
11  } else if (full_key.find("physics.analyzers") == 0) {
12  return ModuleType::analyzer;
13  } else if (full_key.find("outputs") == 0) {
15  }
16  return ModuleType::non_art;
17  }
18 }
std::string string
Definition: nybbler.cc:12
ModuleType module_type(std::string const &full_key)
ModuleType
Definition: ModuleType.h:11