2013-07-29 09:57:07 +02:00
|
|
|
cdef extern from "triqs/gfs/retime.hpp" namespace "triqs::gfs" :
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
cdef cppclass retime_domain :
|
|
|
|
retime_domain()
|
|
|
|
|
2013-08-27 14:20:50 +02:00
|
|
|
cdef cppclass mesh_retime "triqs::gfs::gf_mesh<triqs::gfs::retime>" :
|
2013-07-17 19:24:07 +02:00
|
|
|
mesh_retime ()
|
|
|
|
mesh_retime (mesh_retime &)
|
|
|
|
retime_domain & domain()
|
|
|
|
double x_min()
|
|
|
|
double x_max()
|
|
|
|
long size()
|
|
|
|
double kind()
|
|
|
|
bint operator ==( mesh_retime &)
|
|
|
|
|
2013-08-27 14:20:50 +02:00
|
|
|
cdef mesh_retime make_mesh_retime "triqs::gfs::gf_mesh<triqs::gfs::retime>" (double t_min, double t_max, size_t n_freq, mesh_enum mk)
|
2013-07-28 13:28:19 +02:00
|
|
|
#cdef mesh_retime make_mesh_retime "triqs::gfs::gf_factories<triqs::gfs::retime>::make_mesh" (double t_min, double t_max, size_t n_freq, mesh_enum mk)
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-07-28 13:28:19 +02:00
|
|
|
cdef cppclass gf_retime "triqs::python_tools::cython_proxy<triqs::gfs::gf_view<triqs::gfs::retime>>" :
|
2013-07-17 19:24:07 +02:00
|
|
|
gf_retime()
|
|
|
|
gf_retime(gf_retime &)
|
|
|
|
# The constructor must be no_except, or the cython code won't be correct...
|
|
|
|
gf_retime(mesh_retime, array_view[dcomplex, THREE], tail, nothing) #except +
|
|
|
|
void operator << (gf_retime &)
|
|
|
|
mesh_retime mesh()
|
|
|
|
array_view[dcomplex, THREE] data()
|
|
|
|
tail singularity()
|
|
|
|
|
2013-07-29 09:57:07 +02:00
|
|
|
cdef extern from "triqs/gfs/retime.hpp" :
|
2013-07-17 19:24:07 +02:00
|
|
|
cdef void h5_write (h5_group, char *, gf_retime &)
|
|
|
|
|
|
|
|
cdef extern from "triqs/utility/serialization.hpp" :
|
|
|
|
cdef std_string boost_serialize "triqs::serialize" (gf_retime &)
|
|
|
|
cdef void boost_unserialize_into "triqs::deserialize_into_view" (std_string, gf_retime &)
|
|
|
|
|
|
|
|
# Python -> C
|
|
|
|
cdef gf_retime as_gf_retime (g) except +
|
|
|
|
|
|
|
|
# C -> Python
|
|
|
|
cdef make_GfReTime (gf_retime x, indices_pack=*, name=*)
|
|
|
|
|
|
|
|
############### Blocks of Im Time #########################
|
|
|
|
|
2013-07-29 09:57:07 +02:00
|
|
|
cdef extern from "triqs/gfs/block.hpp" namespace "triqs::gfs" :
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-07-28 13:28:19 +02:00
|
|
|
cdef cppclass gf_block_retime "triqs::python_tools::cython_proxy<triqs::gfs::gf_view<triqs::gfs::block_index,triqs::gfs::gf<triqs::gfs::retime>>>" :
|
2013-07-17 19:24:07 +02:00
|
|
|
gf_block_retime()
|
|
|
|
gf_retime & operator [](int)
|
|
|
|
discrete_mesh & mesh()
|
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
cdef gf_block_retime make_gf_block_retime "triqs::gfs::make_block_gf_view_from_vector<triqs::gfs::gf<triqs::gfs::retime>>" (vector[gf_retime] &)
|
|
|
|
#cdef gf_block_retime make_gf_block_retime "triqs::gfs::make_gf_view<triqs::gfs::block_index,triqs::gfs::gf<triqs::gfs::retime>>" ( vector[gf_retime] &)
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
cdef gf_block_retime as_gf_block_retime (G) except +
|
|
|
|
cdef make_BlockGfReTime (gf_block_retime G, block_indices_pack=*, name=*)
|
|
|
|
|