2012-10-07 20:58:01 +02:00
|
|
|
#ifndef __COSMOTOOL_FOURIER_HEALPIX_HPP
|
|
|
|
#define __COSMOTOOL_FOURIER_HEALPIX_HPP
|
|
|
|
|
2012-11-10 15:02:08 +01:00
|
|
|
#include <gsl/gsl_rng.h>
|
|
|
|
#include <gsl/gsl_randist.h>
|
|
|
|
#include <cmath>
|
2012-11-10 18:22:37 +01:00
|
|
|
#include <vector>
|
2012-10-07 20:58:01 +02:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2012-11-10 15:02:08 +01:00
|
|
|
#include <exception>
|
2012-11-10 18:22:37 +01:00
|
|
|
#include "base_types.hpp"
|
|
|
|
#include <sharp_lowlevel.h>
|
|
|
|
#include <sharp_geomhelpers.h>
|
|
|
|
#include <sharp_almhelpers.h>
|
2012-11-12 16:02:22 +01:00
|
|
|
#include <algorithm>
|
|
|
|
#include <functional>
|
2012-10-07 20:58:01 +02:00
|
|
|
|
2012-11-18 21:47:37 +01:00
|
|
|
#include "details/healpix_map.hpp"
|
|
|
|
#include "details/healpix_alms.hpp"
|
|
|
|
#include "details/healpix_transform.hpp"
|
|
|
|
#include "details/healpix_spectrum.hpp"
|
2012-11-18 22:18:18 +01:00
|
|
|
#include "details/healpix_utility.hpp"
|
2012-10-07 20:58:01 +02:00
|
|
|
|
|
|
|
#endif
|