/******************************************************************************* * * TRIQS: a Toolbox for Research in Interacting Quantum Systems * * Copyright (C) 2012 by M. Ferrero, O. Parcollet * * TRIQS is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * TRIQS. If not, see . * ******************************************************************************/ #ifndef TRIQS_GF_RE_IM_FREQ_H #define TRIQS_GF_RE_IM_FREQ_H #include "./tools.hpp" #include "./gf.hpp" #include "./refreq.hpp" #include "./imfreq.hpp" #include "./meshes/product.hpp" namespace triqs { namespace gfs { struct re_im_freq {}; // the mesh template struct mesh : mesh_product,mesh> { typedef mesh m1_t; typedef mesh m2_t; typedef mesh_product B; mesh (double wmin, double wmax, size_t n_freq_re, double beta, statistic_enum S, size_t n_freq_im) : B { mesh(wmin,wmax,n_freq_re,full_bins), mesh(beta, S, n_freq_im)} {} }; namespace gfs_implementation { // singularity template struct singularity { typedef gf type;}; // h5 name template struct h5_name { static std::string invoke(){ return "GfReImFreq";}}; /// --------------------------- data access --------------------------------- template struct data_proxy : data_proxy_array,1> {}; /// --------------------------- evaluator --------------------------------- template struct evaluator { static constexpr int arity = 2; template std::complex operator() (G const * g, double w, long n) const { auto & data = g->data(); auto & mesh = g->mesh(); size_t nr; double wr; bool in; std::tie(in, nr, wr) = windowing( std::get<0>(g->mesh().components()), w); if (!in) TRIQS_RUNTIME_ERROR <<" Evaluation out of bounds"; auto gg = [g,data,mesh]( size_t nr, size_t n) {return data(mesh.index_to_linear(std::tuple{nr,n}));}; return wr * gg(nr,n) + (1-wr) * gg(nr+1,n) ; } }; // ------------------------------- Factories -------------------------------------------------- template struct factories { typedef gf gf_t; // typedef typename mesh::type mesh_t; static gf_t make_gf(double wmin, double wmax, size_t nw, double beta, statistic_enum S, size_t nwn) { auto m = mesh(wmin, wmax, nw, beta, S, nwn); typename gf_t::data_regular_t A(m.size()); A() =0; return gf_t (m, std::move(A), gfs::make_gf(wmin, wmax, nw), nothing() ) ; } }; } // gfs_implementation }} #endif