MolSSI Integral Reference Project
callback_helper4.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Structures that help with calling callbacks
4  */
5 
6 #pragma once
7 
8 #include <array>
9 #include <vector>
10 #include <mirp/typedefs.h>
11 
12 namespace mirp {
13 
14 template<>
15 struct callback_helper<4>
16 {
20 
24 
25  static void
26  call_str(arb_ptr integrals,
27  std::array<int, 4> & am,
28  std::array<std::array<const char *, 3>, 4> & xyz,
29  std::array<int, 4> & nprim,
30  std::array<int, 4> & ngeneral,
31  std::array<std::vector<const char *>, 4> & alpha,
32  std::array<std::vector<const char *>, 4> & coeff,
33  slong working_prec,
34  cb_str_type cb)
35  {
36  cb(integrals,
37  am[0], xyz[0].data(), nprim[0], ngeneral[0], alpha[0].data(), coeff[0].data(),
38  am[1], xyz[1].data(), nprim[1], ngeneral[1], alpha[1].data(), coeff[1].data(),
39  am[2], xyz[2].data(), nprim[2], ngeneral[2], alpha[2].data(), coeff[2].data(),
40  am[3], xyz[3].data(), nprim[3], ngeneral[3], alpha[3].data(), coeff[3].data(),
41  working_prec);
42  }
43 
44 
45  static void
46  call(arb_ptr integrals,
47  std::array<int, 4> & am,
48  std::array<arb_ptr, 4> & xyz,
49  std::array<int, 4> & nprim,
50  std::array<int, 4> & ngeneral,
51  std::array<arb_ptr, 4> & alpha,
52  std::array<arb_ptr, 4> & coeff,
53  slong working_prec,
54  cb_type cb)
55  {
56  cb(integrals,
57  am[0], xyz[0], nprim[0], ngeneral[0], alpha[0], coeff[0],
58  am[1], xyz[1], nprim[1], ngeneral[1], alpha[1], coeff[1],
59  am[2], xyz[2], nprim[2], ngeneral[2], alpha[2], coeff[2],
60  am[3], xyz[3], nprim[3], ngeneral[3], alpha[3], coeff[3],
61  working_prec);
62  }
63 
64 
65  static void
66  call_exact(double * integrals,
67  std::array<int, 4> & am,
68  std::array<std::array<double, 3>, 4> & xyz,
69  std::array<int, 4> & nprim,
70  std::array<int, 4> & ngeneral,
71  std::array<std::vector<double>, 4> & alpha,
72  std::array<std::vector<double>, 4> & coeff,
73  cb_exact_type cb)
74  {
75  cb(integrals,
76  am[0], xyz[0].data(), nprim[0], ngeneral[0], alpha[0].data(), coeff[0].data(),
77  am[1], xyz[1].data(), nprim[1], ngeneral[1], alpha[1].data(), coeff[1].data(),
78  am[2], xyz[2].data(), nprim[2], ngeneral[2], alpha[2].data(), coeff[2].data(),
79  am[3], xyz[3].data(), nprim[3], ngeneral[3], alpha[3].data(), coeff[3].data());
80  }
81 
82 
83  static void
84  call_single_arb(arb_t integral,
85  std::array<std::array<int, 3>, 4> & lmn,
86  std::array<arb_ptr, 4> & xyz,
87  std::array<arb_t, 4> & alpha,
88  slong working_prec,
89  cb_single_type cb)
90  {
91  cb(integral,
92  lmn[0].data(), xyz[0], alpha[0],
93  lmn[1].data(), xyz[1], alpha[1],
94  lmn[2].data(), xyz[2], alpha[2],
95  lmn[3].data(), xyz[3], alpha[3],
96  working_prec);
97  }
98 
99 
100  static void
101  call_single_str(arb_t integral,
102  std::array<std::array<int, 3>, 4> & lmn,
103  std::array<std::array<const char *, 3>, 4> & xyz,
104  std::array<const char *, 4> & alpha,
105  slong working_prec,
106  cb_single_str_type cb)
107  {
108  cb(integral,
109  lmn[0].data(), xyz[0].data(), alpha[0],
110  lmn[1].data(), xyz[1].data(), alpha[1],
111  lmn[2].data(), xyz[2].data(), alpha[2],
112  lmn[3].data(), xyz[3].data(), alpha[3],
113  working_prec);
114  }
115 
116 
117  static void
118  call_single_exact(double * integral,
119  std::array<std::array<int, 3>, 4> & lmn,
120  std::array<std::array<double, 3>, 4> & xyz,
121  std::array<double, 4> & alpha,
122  cb_single_exact_type cb)
123  {
124  cb(integral,
125  lmn[0].data(), xyz[0].data(), alpha[0],
126  lmn[1].data(), xyz[1].data(), alpha[1],
127  lmn[2].data(), xyz[2].data(), alpha[2],
128  lmn[3].data(), xyz[3].data(), alpha[3]);
129  }
130 
131 };
132 
133 } // close namespace mirp
134 
cb_integral4_single_exact cb_single_exact_type
Definition: callback_helper4.hpp:23
void(* cb_integral4_str)(arb_ptr, int, const char **, int, int, const char **, const char **, int, const char **, int, int, const char **, const char **, int, const char **, int, int, const char **, const char **, int, const char **, int, int, const char **, const char **, slong)
Pointer to a function that computes all cartesian integrals for a contracted shell quartet from strin...
Definition: typedefs.h:61
void(* cb_integral4)(arb_ptr, int, arb_srcptr, int, int, arb_srcptr, arb_srcptr, int, arb_srcptr, int, int, arb_srcptr, arb_srcptr, int, arb_srcptr, int, int, arb_srcptr, arb_srcptr, int, arb_srcptr, int, int, arb_srcptr, arb_srcptr, slong)
Pointer to a function that computes all cartesian integrals for a contracted shell quartet (four-cent...
Definition: typedefs.h:50
static void call(arb_ptr integrals, std::array< int, 4 > &am, std::array< arb_ptr, 4 > &xyz, std::array< int, 4 > &nprim, std::array< int, 4 > &ngeneral, std::array< arb_ptr, 4 > &alpha, std::array< arb_ptr, 4 > &coeff, slong working_prec, cb_type cb)
Definition: callback_helper4.hpp:46
cb_integral4 cb_type
Definition: callback_helper4.hpp:17
static void call_str(arb_ptr integrals, std::array< int, 4 > &am, std::array< std::array< const char *, 3 >, 4 > &xyz, std::array< int, 4 > &nprim, std::array< int, 4 > &ngeneral, std::array< std::vector< const char *>, 4 > &alpha, std::array< std::vector< const char *>, 4 > &coeff, slong working_prec, cb_str_type cb)
Definition: callback_helper4.hpp:26
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
static void call_single_exact(double *integral, std::array< std::array< int, 3 >, 4 > &lmn, std::array< std::array< double, 3 >, 4 > &xyz, std::array< double, 4 > &alpha, cb_single_exact_type cb)
Definition: callback_helper4.hpp:118
cb_integral4_exact cb_exact_type
Definition: callback_helper4.hpp:19
Helps with calling callbacks with the given number of centers.
Definition: callback_helper.hpp:18
static void call_exact(double *integrals, std::array< int, 4 > &am, std::array< std::array< double, 3 >, 4 > &xyz, std::array< int, 4 > &nprim, std::array< int, 4 > &ngeneral, std::array< std::vector< double >, 4 > &alpha, std::array< std::vector< double >, 4 > &coeff, cb_exact_type cb)
Definition: callback_helper4.hpp:66
std::array< double, 3 > xyz
Coordinates of the atom.
Definition: read_construct_basis.cpp:32
void(* cb_integral4_single_exact)(double *integral, const int *lmn1, const double *A, double alpha1, const int *lmn2, const double *B, double alpha2, const int *lmn3, const double *C, double alpha3, const int *lmn4, const double *D, double alpha4)
Pointer to a function that computes a single cartesian integral to exact double precision (four-cente...
Definition: typedefs.h:40
static void call_single_arb(arb_t integral, std::array< std::array< int, 3 >, 4 > &lmn, std::array< arb_ptr, 4 > &xyz, std::array< arb_t, 4 > &alpha, slong working_prec, cb_single_type cb)
Definition: callback_helper4.hpp:84
void(* cb_integral4_single_str)(arb_t, const int *, const char **, const char *, const int *, const char **, const char *, const int *, const char **, const char *, const int *, const char **, const char *, slong)
Pointer to a function that computes a single cartesian integral from string inputs (four-center) ...
Definition: typedefs.h:29
void(* cb_integral4_single)(arb_t, const int *, arb_srcptr, const arb_t, const int *, arb_srcptr, const arb_t, const int *, arb_srcptr, const arb_t, const int *, arb_srcptr, const arb_t, slong)
Pointer to a function that computes a single cartesian integral (four-center, interval arithmetic) ...
Definition: typedefs.h:18
cb_integral4_single cb_single_type
Definition: callback_helper4.hpp:21
Typedefs of common function pointers.
cb_integral4_str cb_str_type
Definition: callback_helper4.hpp:18
static void call_single_str(arb_t integral, std::array< std::array< int, 3 >, 4 > &lmn, std::array< std::array< const char *, 3 >, 4 > &xyz, std::array< const char *, 4 > &alpha, slong working_prec, cb_single_str_type cb)
Definition: callback_helper4.hpp:101
cb_integral4_single_str cb_single_str_type
Definition: callback_helper4.hpp:22