SOLIDstate
A C++ library for solid state physics
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
TermsEnabled.hpp
Go to the documentation of this file.
1 
11 #ifndef HAMILTONIAN_TERMSENABLED_HPP
12 #define HAMILTONIAN_TERMSENABLED_HPP
13 
14 #include "../Terms/TermsEnum.hpp"
15 
16 #include <vector>
17 
18 namespace solid
19 {
25 {
26 public:
27 
31  std::vector<TermsEnum> terms;
32 
38  bool N05option = false;
39 };
40 } // namespace solid
41 
42 #endif
Terms enebled in Operator.
Definition: TermsEnabled.hpp:24
bool N05option
when this option is enabled, particle number operators are decresed by 0.5
Definition: TermsEnabled.hpp:38
std::vector< TermsEnum > terms
container for terms, which are included in the IHamiltonian implementation or Operator ...
Definition: TermsEnabled.hpp:31