sisi4s
Loading...
Searching...
No Matches
CoulombIntegralsFromGaussian.hpp
Go to the documentation of this file.
1#ifndef _COULOMB_INTEGRALS_FROM_GAUSSIAN
2#define _COULOMB_INTEGRALS_FROM_GAUSSIAN
3
5#include <vector>
6#include <math/Complex.hpp>
7
8namespace sisi4s {
9
11public:
13 CoulombIntegralsFromGaussian(std::vector<Argument> const &argumentList)
14 : Algorithm(argumentList) {}
16 virtual void run();
17};
18} // namespace sisi4s
19
20#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 CoulombIntegralsFromGaussian.hpp:10
virtual void run()
Definition CoulombIntegralsFromGaussian.cxx:447
~CoulombIntegralsFromGaussian()
Definition CoulombIntegralsFromGaussian.hpp:15
CoulombIntegralsFromGaussian(std::vector< Argument > const &argumentList)
Definition CoulombIntegralsFromGaussian.hpp:13
Definition Algorithm.hpp:10