MolSSI Integral Reference Project
ref_integral.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Functions related to four-center integral reference files
4  */
5 
6 #pragma once
7 
8 #include <mirp/typedefs.h>
9 #include <string>
10 #include <vector>
11 
12 namespace mirp {
13 
14 
15 /*! \brief Creates a file with exact double reference values of contracted integrals
16  *
17  * Any existing output file (given by \p output_filepath) will be overwritten.
18  *
19  * \throw std::runtime_error if there is a problem opening the file or there
20  * there is a problem reading or writing the data
21  *
22  * \note This is being left un-templatized due to the handling of
23  * permutational symmetry
24  *
25  * \param [in] xyz_filepath Path to the XYZ file containing the molecule to use
26  * \param [in] basis_filepath Path to a basis set file to use
27  * \param [in] output_filepath The output file to write the computed integrals to
28  * \param [in] header Header information to add to the file
29  * (appended to the input file header)
30  * \param [in] amlist Vector of AM classes to compute. If empty, all will be computed
31  * \param [in] cb Function that computes contracted integrals
32  * to exact double precision
33  */
34 void integral4_create_reference(const std::string & xyz_filepath,
35  const std::string & basis_filepath,
36  const std::string & output_filepath,
37  const std::string & header,
38  const std::vector<std::vector<int>> & amlist,
40 
41 
42 /*! \brief Tests a reference file for consistency
43  *
44  * \throw std::runtime_error if there is a problem opening the file or there
45  * there is a problem reading the data
46  *
47  * \param [in] ref_filepath Path to the reference file
48  * \param [in] cb Function that computes contracted integrals
49  * to exact double precision
50  * \return Number of failed tests
51  */
52 template<int N, typename Func>
53 long integral_test_reference(const std::string & ref_filepath,
54  Func cb);
55 
56 extern template long
58 
59 } // close namespace mirp
60 
template long integral_test_reference< 4, cb_integral4_exact >(const std::string &, cb_integral4_exact)
void(* cb_integral4_exact)(double *, int, const double *, int, int, const double *, const double *, int, const double *, int, int, const double *, const double *, int, const double *, int, int, const double *, const double *, int, const double *, int, int, const double *, const double *)
Pointer to a function that computes all cartesian integrals for a contracted shell quartet to exact d...
Definition: typedefs.h:72
void integral4_create_reference(const std::string &xyz_filepath, const std::string &basis_filepath, const std::string &output_filepath, const std::string &header, const std::vector< std::vector< int >> &amlist, cb_integral4_exact cb)
Creates a file with exact double reference values of contracted integrals.
Definition: ref_integral.cpp:105
Typedefs of common function pointers.
long integral_test_reference(const std::string &ref_filepath, Func cb)
Tests a reference file for consistency.
Definition: ref_integral.cpp:20