23 auto throwException = [&variables] {
24 std::stringstream msg;
25 msg <<
"The Variables object " << variables <<
" cannot be stored in a Configuration object: "
26 "not all variables have the same channels";
27 throw std::runtime_error(msg.str());
33 typedef std::set<std::string> ChannelSuffixes;
34 ChannelSuffixes expectedChannels;
35 for (
int channel : variables.
channels())
36 expectedChannels.insert(std::to_string(channel));
39 const char channelSeparator =
'_';
40 std::vector<std::string> uniqueBaseNames;
41 std::map<std::string, ChannelSuffixes> channelsPerVariable;
42 for (
const std::string& name : variables.
variables()) {
43 const std::string::size_type separatorPosition = name.find_last_of(channelSeparator);
44 if (separatorPosition == std::string::npos)
46 std::string baseName = name.substr(0, separatorPosition);
47 std::string channel = name.substr(separatorPosition + 1);
49 std::map<std::string, ChannelSuffixes>::iterator it = channelsPerVariable.find(baseName);
50 if (it == channelsPerVariable.end()) {
52 uniqueBaseNames.push_back(baseName);
53 it = channelsPerVariable.insert(std::make_pair(baseName, ChannelSuffixes())).first;
55 it->second.insert(std::move(channel));
58 if (std::any_of(channelsPerVariable.begin(), channelsPerVariable.end(),
60 (
const std::pair<const std::string, ChannelSuffixes> &nameAndChannels)
61 { return nameAndChannels.second != expectedChannels; }))
64 return uniqueBaseNames;
const std::vector< std::string > & variables() const
const std::vector< int > & channels() const
The namespace for the main oops code.
std::vector< std::string > getVariableNamesWithoutChannelSuffix(const Variables &variables)
Returns the list of "base" variable names (i.e. names without channel suffixes) stored in variables.