gtranslationTable
gtranslationTable.h
Go to the documentation of this file.
1 #ifndef GTRANSLATIONTABLE_H
2 #define GTRANSLATIONTABLE_H 1
3 
4 // gemc
5 #include "gelectronic.h"
6 #include "glogger.h"
7 
8 // c++
9 #include <string>
10 #include <unordered_map>
11 #include <vector>
12 
20 
21 public:
26  GTranslationTable(GLogger *logger) : log(logger) {
27  log->debug(CONSTRUCTOR, "GTranslationTable");
28  }
29 
31  log->debug(DESTRUCTOR, "GTranslationTable");
32  }
33 
42  void addGElectronicWithIdentity(const std::vector<int>& identity, const GElectronic& gtron);
43 
52  GElectronic getElectronics(const std::vector<int>& identity) const;
53 
54 private:
55  // the map uses a string formed by the vector<int> identity as its key
56  std::unordered_map<std::string, GElectronic> tt;
57 
66  std::string formTTKey(const std::vector<int>& identity) const;
67 
69  GLogger * const log;
70 
71 };
72 
73 
74 #endif
Provides a translation table for GElectronic objects indexed by a vector-based identity.
GTranslationTable(GLogger *logger)
Constructor.
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 &gtron)
Adds a GElectronic configuration with the provided identity.