Warning, file /include/DDG4/ExtensionParameters.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef DDG4_EXTENSIONPARAMETERS_H
0013 #define DDG4_EXTENSIONPARAMETERS_H
0014
0015 #include <map>
0016 #include <string>
0017 #include <vector>
0018
0019
0020
0021 namespace dd4hep {
0022
0023
0024 namespace sim {
0025
0026
0027
0028
0029
0030
0031 class ExtensionParameters {
0032 protected:
0033 std::map<std::string, std::vector<int>> m_intValues {};
0034 std::map<std::string, std::vector<float>> m_fltValues {};
0035 std::map<std::string, std::vector<std::string>> m_strValues {};
0036 std::map<std::string, std::vector<double>> m_dblValues {};
0037
0038 public:
0039
0040 auto const& intParameters() const { return m_intValues; }
0041
0042 auto const& fltParameters() const { return m_fltValues; }
0043
0044 auto const& strParameters() const { return m_strValues; }
0045
0046 auto const& dblParameters() const { return m_dblValues; }
0047
0048 };
0049
0050 }
0051 }
0052 #endif