/*+ This is CosmoTool (./src/fourier/details/euclidian_maps.hpp) -- Copyright (C) Guilhem Lavaux (2007-2013) guilhem.lavaux@gmail.com This software is a computer program whose purpose is to provide a toolbox for cosmological data analysis (e.g. filters, generalized Fourier transforms, power spectra, ...) This software is governed by the CeCILL license under French law and abiding by the rules of distribution of free software. You can use, modify and/ or redistribute the software under the terms of the CeCILL license as circulated by CEA, CNRS and INRIA at the following URL "http://www.cecill.info". As a counterpart to the access to the source code and rights to copy, modify and redistribute granted by the license, users are provided only with a limited warranty and the software's author, the holder of the economic rights, and the successive licensors have only limited liability. In this respect, the user's attention is drawn to the risks associated with loading, using, modifying and/or developing or reproducing the software by the user in light of its specific status of free software, that may mean that it is complicated to manipulate, and that also therefore means that it is reserved for developers and experienced professionals having in-depth computer knowledge. Users are therefore encouraged to load and test the software's suitability as regards their requirements in conditions enabling the security of their systems and/or data to be ensured and, more generally, to use and operate it in the same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL license and that you accept its terms. +*/ #ifndef __DETAILS_EUCLIDIAN_MAPS #define __DETAILS_EUCLIDIAN_MAPS namespace CosmoTool { template class EuclidianFourierMapBase: public FourierMap { public: typedef std::vector DimArray; private: boost::shared_ptr m_data; DimArray m_dims; long m_size; public: EuclidianFourierMapBase(boost::shared_ptr indata, const DimArray& indims) { m_data = indata; m_dims = indims; m_size = 1; for (int i = 0; i < m_dims.size(); i++) m_size *= m_dims[i]; } virtual ~EuclidianFourierMapBase() { } const DimArray& getDims() const { return m_dims; } virtual const T *data() const { return m_data.get(); } virtual T *data() { return m_data.get(); } virtual long size() const { return m_size; } virtual FourierMap *copy() const { FourierMap *m = this->mimick(); m->eigen() = this->eigen(); return m; } }; template class EuclidianFourierMapReal: public EuclidianFourierMapBase { public: typedef typename EuclidianFourierMapBase::DimArray DimArray; EuclidianFourierMapReal(boost::shared_ptr indata, const DimArray& indims) : EuclidianFourierMapBase(indata, indims) {} virtual FourierMap *mimick() const { return new EuclidianFourierMapReal( boost::shared_ptr((T *)fftw_malloc(sizeof(T)*this->size()), std::ptr_fun(fftw_free)), this->getDims()); } virtual T dot_product(const FourierMap& other) const throw(std::bad_cast) { const EuclidianFourierMapReal& m2 = dynamic_cast&>(other); if (this->size() != m2.size()) throw std::bad_cast(); return (this->eigen()*m2.eigen()).sum(); } }; template class EuclidianFourierMapComplex: public EuclidianFourierMapBase > { protected: typedef boost::shared_ptr > ptr_t; std::vector delta_k; int m_dim0; bool even0, alleven; long plane_size; public: typedef typename EuclidianFourierMapBase >::DimArray DimArray; EuclidianFourierMapComplex(ptr_t indata, int dim0, const DimArray& indims, const std::vector& dk) : EuclidianFourierMapBase >(indata, indims), delta_k(dk), m_dim0(dim0), even0((dim0 % 2)==0) { assert(dk.size() == indims.size()); plane_size = 1; alleven = true; for (int q = 1; q < indims.size(); q++) { plane_size *= indims[q]; alleven = alleven && ((indims[q]%2)==0); } } virtual FourierMap > *mimick() const { return new EuclidianFourierMapComplex( ptr_t((std::complex *) fftw_malloc(sizeof(std::complex)*this->size()), std::ptr_fun(fftw_free)), m_dim0, this->getDims(), this->delta_k); } const std::vector& get_delta_k() const { return this->delta_k; } template void get_Kvec(const Array& ik, Array2& kvec) const { const DimArray& dims = this->getDims(); assert(ik.size() == dims.size()); assert(kvec.size() == dims.size()); kvec[0] = ik[0] * delta_k[0]; for (int q = 1; q < ik.size(); q++) { int dk = ik[q]; if (dk > dims[q]/2) dk = dk - dims[q]; kvec[q] = dk*delta_k[q]; } } template void get_Kvec(long p, Array2& kvec) const { const DimArray& dims = this->getDims(); DimArray d(delta_k.size()); get_IKvec(p, d); get_Kvec(d, kvec); } void get_IKvec(long p, DimArray& ikvec) const { const DimArray& dims = this->getDims(); assert(dims.size()==ikvec.size()); for (int q = 0; q < ikvec.size(); q++) { ikvec[q] = p%dims[q]; p = (p-ikvec[q])/dims[q]; } } template double get_K(const Array& ik) const { const DimArray& dims = this->getDims(); assert(ik.size() == dims.size()); double k2 = 0; k2 += CosmoTool::square(ik[0]*delta_k[0]); for (int q = 1; q < ik.size(); q++) { int dk = ik[q]; if (dk > dims[q]/2) dk = dk - dims[q]; k2 += CosmoTool::square(delta_k[q]*dk); } return std::sqrt(k2); } double get_K(long p) const { const DimArray& dims = this->getDims(); DimArray d(delta_k.size()); for (int q = 0; q < d.size(); q++) { d[q] = p%dims[q]; p = (p-d[q])/dims[q]; } return get_K(d); } bool allDimensionsEven() const { return alleven; } bool firstDimensionEven() const { return even0; } virtual std::complex dot_product(const FourierMap >& other) const throw(std::bad_cast) { const EuclidianFourierMapComplex& m2 = dynamic_cast&>(other); if (this->size() != m2.size()) throw std::bad_cast(); const std::complex *d1 = this->data(); const std::complex *d2 = m2.data(); const DimArray& dims = this->getDims(); int N0 = dims[0] + (even0 ? 0 : 1); std::complex result = 0; for (long q0 = 1; q0 < N0-1; q0++) { for (long p = 0; p < plane_size; p++) { long idx = q0+dims[0]*p; assert(idx < this->size()); result += 2*(conj(d1[idx]) * d2[idx]).real(); } } if (even0) { for (long p = 0; p < plane_size; p++) { long q0 = N0*p, q1 = (p+1)*N0-1; result += conj(d1[q0]) * d2[q0]; result += conj(d1[q1]) * d2[q1]; } } return result; } }; }; #endif