MolSSI Integral Reference Project
data_entry.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Common data structures (shells, entries, etc)
4  */
5 
6 #pragma once
7 
8 #include <array>
9 #include <vector>
10 #include <string>
11 
12 namespace mirp {
13 
14 
15 /*! \brief A shell of cartesian gaussian functions (double precision)
16  *
17  * This shell holds information as double precision
18  */
20 {
21  int am; //!< Angular momentum
22  int nprim; //!< Number of primitives (segmented contraction)
23  int ngeneral; //!< Number of general contractions
24  std::array<double, 3> xyz; //!< Coordinates (in bohr)
25  std::vector<double> alpha; //!< Exponents of the gaussians
26  std::vector<double> coeff; //!< Contraction coefficients (unnormalized)
27 };
28 
29 
30 /*! \brief A shell of cartesian gaussian functions (strings)
31  *
32  * This shell holds information as a string to allow for higher precision
33  */
35 {
36  int am; //!< Angular momentum
37  int nprim; //!< Number of primitives (segmented contraction)
38  int ngeneral; //!< Number of general contractions
39  std::array<std::string, 3> xyz; //!< Coordinates (in bohr)
40  std::vector<std::string> alpha; //!< Exponents of the gaussians
41  std::vector<std::string> coeff; //!< Contraction coefficients (unnormalized)
42 };
43 
44 
45 /*! \brief A single cartesian gaussian function */
47 {
48  std::array<int, 3> lmn; //!< AM exponents
49  std::array<std::string, 3> xyz; //!< Coordinates (in bohr)
50  std::string alpha; //!< Exponent of the gaussian
51 };
52 
53 
54 /*! \brief Data for a single cartesian integral
55  *
56  * The length of integral_single_data_entry::g represents the number of
57  * centers for the integral.
58  */
60 {
61  std::vector<gaussian_single_str> g; //!< Shell array for which the integrals calculated
62  std::string integral; //!< Actual data (integral) for this gaussian
63 };
64 
65 
66 /*! \brief Contents of a data file for a single cartesian integral
67  *
68  * The data file holds data for multiple integrals, plus a descriptive
69  * header and some metadata.
70  */
72 {
73  long ndigits; //!< The number of decimal digits of accuracy in the file
74  long working_prec; //!< Working precision used for the integrals
75  std::string header; //!< Header or comments about the test
76  std::vector<integral_single_data_entry> entries; //!< Actual data for the integrals
77 };
78 
79 
80 
81 /*! \brief Data for a single contracted integral */
83 {
84  std::vector<gaussian_shell_str> g; //!< Shells for which the integrals are calculated
85  std::vector<int> idx; //!< Indices of the shells
86  std::vector<std::string> integrals; //!< Computed integrals
87 };
88 
89 
90 /*! \brief Contents of a data file for contracted integrals
91  *
92  * The data file holds data for multiple integrals, plus a descriptive
93  * header and some metadata.
94  */
96 {
97  long ndigits; //!< The number of decimal digits of accuracy in the file
98  long working_prec; //!< Working precision used for the integrals
99  std::string header; //!< Header or comments about the test
100  std::vector<integral_data_entry> entries; //!< Actual data for the integrals
101 };
102 
103 
104 /*! \brief Creates a basis from an XYZ file and a basis set file
105  *
106  * \throw std::runtime_error if there is a problem reading or parsing
107  * the files
108  *
109  * \param [in] xyzfile Path to a file containing atomic coordinates
110  * \param [in] basfile Path to an NWChem-formatted basis set file
111  * \return A vector of shells obtained from applying the basis to the coordinate file
112  */
113 std::vector<gaussian_shell> read_construct_basis(const std::string & xyzfile,
114  const std::string & basfile);
115 
116 
117 } // close namespace mirp
118 
long working_prec
Working precision used for the integrals.
Definition: data_entry.hpp:74
Data for a single cartesian integral.
Definition: data_entry.hpp:59
int ngeneral
Number of general contractions.
Definition: data_entry.hpp:38
std::vector< std::string > integrals
Computed integrals.
Definition: data_entry.hpp:86
std::array< double, 3 > xyz
Coordinates (in bohr)
Definition: data_entry.hpp:24
A shell of cartesian gaussian functions (double precision)
Definition: data_entry.hpp:19
int ngeneral
Number of general contractions.
Definition: data_entry.hpp:23
Contents of a data file for contracted integrals.
Definition: data_entry.hpp:95
std::vector< std::string > coeff
Contraction coefficients (unnormalized)
Definition: data_entry.hpp:41
long ndigits
The number of decimal digits of accuracy in the file.
Definition: data_entry.hpp:97
std::array< std::string, 3 > xyz
Coordinates (in bohr)
Definition: data_entry.hpp:39
std::array< std::string, 3 > xyz
Coordinates (in bohr)
Definition: data_entry.hpp:49
std::vector< gaussian_single_str > g
Shell array for which the integrals calculated.
Definition: data_entry.hpp:61
std::vector< integral_data_entry > entries
Actual data for the integrals.
Definition: data_entry.hpp:100
std::string integral
Actual data (integral) for this gaussian.
Definition: data_entry.hpp:62
Data for a single contracted integral.
Definition: data_entry.hpp:82
std::string header
Header or comments about the test.
Definition: data_entry.hpp:75
int nprim
Number of primitives (segmented contraction)
Definition: data_entry.hpp:22
std::vector< integral_single_data_entry > entries
Actual data for the integrals.
Definition: data_entry.hpp:76
int am
Angular momentum.
Definition: data_entry.hpp:21
std::vector< gaussian_shell_str > g
Shells for which the integrals are calculated.
Definition: data_entry.hpp:84
std::vector< std::string > alpha
Exponents of the gaussians.
Definition: data_entry.hpp:40
int nprim
Number of primitives (segmented contraction)
Definition: data_entry.hpp:37
long working_prec
Working precision used for the integrals.
Definition: data_entry.hpp:98
std::vector< double > alpha
Exponents of the gaussians.
Definition: data_entry.hpp:25
std::array< int, 3 > lmn
AM exponents.
Definition: data_entry.hpp:48
A shell of cartesian gaussian functions (strings)
Definition: data_entry.hpp:34
std::vector< int > idx
Indices of the shells.
Definition: data_entry.hpp:85
int am
Angular momentum.
Definition: data_entry.hpp:36
Contents of a data file for a single cartesian integral.
Definition: data_entry.hpp:71
std::string alpha
Exponent of the gaussian.
Definition: data_entry.hpp:50
std::string header
Header or comments about the test.
Definition: data_entry.hpp:99
long ndigits
The number of decimal digits of accuracy in the file.
Definition: data_entry.hpp:73
A single cartesian gaussian function.
Definition: data_entry.hpp:46
std::vector< gaussian_shell > read_construct_basis(const std::string &xyzfile, const std::string &basfile)
Creates a basis from an XYZ file and a basis set file.
Definition: read_construct_basis.cpp:190
std::vector< double > coeff
Contraction coefficients (unnormalized)
Definition: data_entry.hpp:26