21 std::string GTranslationTable::formTTKey(
const std::vector<int> &identity)
const {
23 if (identity.empty()) {
24 log->warning(
"Empty identity vector provided to formTTKey");
28 std::ostringstream oss;
29 for (
size_t i = 0; i < identity.size(); ++i) {
31 if (i != identity.size() - 1)
47 string ttKey = formTTKey(identity);
48 auto search = tt.find(ttKey);
50 if (search == tt.end()) {
54 log->warning(
"Key <" + ttKey +
"> already present in TT map");
57 log->info(1,
"Added GElectronic with identity <", ttKey,
"> to TT map");
59 log->debug(NORMAL,
"Translation Table:");
60 for (
auto &thisItem: tt) {
61 log->debug(NORMAL, GTAB,
"<", thisItem.first,
"> ", thisItem.second);
75 string ttKey = formTTKey(identity);
76 auto search = tt.find(ttKey);
78 if (search != tt.end()) {
79 log->debug(NORMAL,
"Found key <", ttKey,
"> in TT map");
80 return search->second;
GElectronic getElectronics(const std::vector< int > &identity) const
Retrieves the GElectronic configuration for the provided identity.
void addGElectronicWithIdentity(const std::vector< int > &identity, const GElectronic >ron)
Adds a GElectronic configuration with the provided identity.
#define EC__TTNOTFOUNDINTT