SOLIDstate
A C++ library for solid state physics
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Parameters.hpp
Go to the documentation of this file.
1 
11 #ifndef PARAMETERS_PARAMETERS_HPP
12 #define PARAMETERS_PARAMETERS_HPP
13 
14 #include <string>
15 #include <map>
16 #include <armadillo>
17 
18 //#include "../Geometry/Geometry.hpp"
19 
20 namespace solid
21 {
22 
28 template <typename T>
29 class Parameters : public std::map<std::string, arma::SpMat<T>>
30 {
31 public:
32 /*
33  void operator=(Geometry<T> & geometry)
34  {
35  (*this) = geometry.parameters;
36  }
37 */
38 };
39 
40 } // namespace solid
41 
42 #endif
class for Parameters storing for generating IHamiltonian, Observable
Definition: Parameters.hpp:29