sisi4s
Loading...
Searching...
No Matches
OneBodyFromGaussian.hpp
Go to the documentation of this file.
1#ifndef _ONE_BODY_FROM_GAUSSIAN_DEFINED
2#define _ONE_BODY_FROM_GAUSSIAN_DEFINED
3
4#include <vector>
5
7#include <math/Complex.hpp>
8#include <util/Libint.hpp>
9#include <Eigen/Eigen>
10
11namespace sisi4s {
12
14public:
16 OneBodyFromGaussian(std::vector<Argument> const &argumentList)
17 : Algorithm(argumentList) {}
19 virtual void run();
20};
21
22} // namespace sisi4s
23
24#endif
#define ALGORITHM_REGISTRAR_DECLARATION(NAME)
Auxiliary macro declaring the algorithm registrar for the algorithm type of the given name....
Definition Algorithm.hpp:169
Definition Algorithm.hpp:26
Definition OneBodyFromGaussian.hpp:13
OneBodyFromGaussian(std::vector< Argument > const &argumentList)
Definition OneBodyFromGaussian.hpp:16
virtual void run()
Definition OneBodyFromGaussian.cxx:74
~OneBodyFromGaussian()
Definition OneBodyFromGaussian.hpp:18
Definition Algorithm.hpp:10