sisi4s
Loading...
Searching...
No Matches
SimilarityTransformedHamiltonian.hpp File Reference
Include dependency graph for SimilarityTransformedHamiltonian.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  sisi4s::SimilarityTransformedHamiltonian< F >
 
struct  sisi4s::SimilarityTransformedHamiltonian< F >::StructureFactor
 
struct  sisi4s::SimilarityTransformedHamiltonian< F >::StructureFactorSettings
 

Namespaces

namespace  sisi4s
 

Macros

#define _DEFINE_SETTER(type, name, default)
 
#define _MAKE_WITH_FUNCTION(type, name, default)
 

Macro Definition Documentation

◆ _DEFINE_SETTER

#define _DEFINE_SETTER (   type,
  name,
  default 
)
Value:
SimilarityTransformedHamiltonian &set##name(type t) { \
name = t; \
return *this; \
} \
type name = default

◆ _MAKE_WITH_FUNCTION

#define _MAKE_WITH_FUNCTION (   type,
  name,
  default 
)
Value:
SimilarityTransformedHamiltonian &with##name(type const &v) { \
_with##name = v; \
return *this; \
} \
type &with##name() { return _with##name; } \
type _with##name = default