-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrappers.h
More file actions
34 lines (29 loc) · 1.16 KB
/
wrappers.h
File metadata and controls
34 lines (29 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef WRAPPERS_H_
#define WRAPPERS_H_
#include <armadillo>
#include "psi4/libmints/wavefunction.h"
using namespace psi;
void AO_dipole_length(arma::cube &M_AO,
const arma::vec &origin,
SharedWavefunction wfn,
Options &options);
void AO_quadrupole_length(arma::cube &M_AO,
const arma::vec &origin,
SharedWavefunction wfn,
Options &options);
void AO_multipole(arma::cube &M_AO,
const arma::uvec &order,
const arma::vec &origin,
SharedWavefunction wfn,
Options &options);
void AO_multipole(arma::cube &M_AO,
const arma::uvec &order,
const arma::vec &origin,
SharedWavefunction wfn,
Options &options);
void AO_dipole_velocity(arma::cube &D_AO, SharedWavefunction wfn, Options &options);
void AO_angular_momentum(arma::cube &L_AO,
const arma::vec &origin,
SharedWavefunction wfn,
Options &options);
#endif // WRAPPERS_H_