/usr/include/libbasis/gnorm.h is in libpsi3-dev 3.4.0-6+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 | /*! \file
\ingroup BASIS
\brief Enter brief description of file here
*/
#ifndef _psi_src_lib_libbasis_gnorm_h_
#define _psi_src_lib_libbasis_gnorm_h_
#include <psitypes.h>
#include <psiconfig.h>
namespace psi {
class GaussianNormalization {
static const bool use_cca_integrals_standard = (PSI_INTEGRALS_STANDARD == 1);
int maxam_;
PSI_FLOAT* df_;
PSI_FLOAT** norm_coeffs_;
// No default constructor
GaussianNormalization();
// No assignment operator
GaussianNormalization& operator=(const GaussianNormalization&);
public:
GaussianNormalization(int am);
~GaussianNormalization();
PSI_FLOAT norm(int x, int y, int z);
PSI_FLOAT norm(int l, int bf);
};
} // end of namespace psi
#endif
|