mirror of
https://github.com/triqs/dft_tools
synced 2024-11-09 07:33:47 +01:00
236d2db3a6
The access to Numpy arrays has been modified to conform the new Numpy API standard. Also, some unsued variable have been removed/commented out.
23 lines
675 B
C
23 lines
675 B
C
#ifndef __C_DOS_TETRA3D_H__
|
|
#define __C_DOS_TETRA3D_H__
|
|
|
|
#include <Python.h>
|
|
#include <numpy/arrayobject.h>
|
|
|
|
static PyObject *tetra_DOS3D(PyObject *self, PyObject *args);
|
|
|
|
//void tet_dos3d(double en, double *eigk, int strd_eigk,
|
|
// npy_int64 *itt, int ntet, int *strd_itt,
|
|
// double *cti, int *strd_cti);
|
|
void tet_dos3d(double en, PyArrayObject *py_eigk,
|
|
PyArrayObject *py_itt, int ntet,
|
|
PyArrayObject *py_cti);
|
|
int dos_corner_weights(double en, double *eigs, int *inds,
|
|
double *ci);
|
|
|
|
int dos_reorder(double en, double *e, int *inds);
|
|
|
|
static const double small = 2.5e-2, tol = 1e-8;
|
|
|
|
#endif
|