program s2dw_synthesis ! Uses use s2dw_types_mod use s2dw_error_mod use s2dw_fileio_mod use s2dw_core_mod use s2_sky_mod ! Calls call parse_options call s2_sky_compute_map call s2_sky_free call s2_sky_write_map_file call s2dw_core_free_wavdyn call s2dw_core_init_directionality call s2dw_core_init_kernels call s2dw_core_synthesis_wav2flm_dynamic call s2dw_error call s2dw_fileio_fits_wav_read call s2dw_fileio_matlab_wav_read ! Variables complex (kind=dpc), allocatable, dimension (:,:) :: flm complex (kind=spc), allocatable, dimension (:,:) :: flm_temp real (kind=dp), allocatable, dimension (:,:) :: K_gamma real (kind=dp), allocatable, dimension (:) :: Phi2 complex (kind=dpc), allocatable, dimension (:,:) :: Slm real (kind=dp), allocatable, dimension (:) :: admiss type (s2dw_wav_abg), allocatable, dimension (:) :: wavdyn complex (kind=dpc), allocatable, dimension (:,:) :: scoeff integer :: J integer :: B integer :: N integer :: bl_scoeff real (kind=dp) :: alpha integer :: nside logical :: nside_in = .false. logical :: admiss_pass type (s2_sky) :: sky integer :: fail = 0 character (len=STRING_LEN) :: filename_in character (len=STRING_LEN) :: filename_out character (len=*), parameter :: FILE_TYPE_FITS = 'fits' character (len=*), parameter :: FILE_TYPE_MAT = 'm' character (len=STRING_LEN) :: file_type = FILE_TYPE_FITS ! Subroutines and functions subroutine parse_options () end program s2dw_synthesisReconstructs a Healpix sky map from S2DW wavelet and scaling coefficients.
Notes:
Author: J. D. McEwen (mcewen@mrao.cam.ac.uk)
Version: 0.1 - November 2007
complex (kind=dpc), allocatable, dimension (:,:) :: flm
complex (kind=spc), allocatable, dimension (:,:) :: flm_temp
real (kind=dp), allocatable, dimension (:,:) :: K_gamma
real (kind=dp), allocatable, dimension (:) :: Phi2
complex (kind=dpc), allocatable, dimension (:,:) :: Slm
real (kind=dp), allocatable, dimension (:) :: admiss
type (s2dw_wav_abg), allocatable, dimension (:) :: wavdyn
complex (kind=dpc), allocatable, dimension (:,:) :: scoeff
integer :: J
integer :: B
integer :: N
integer :: bl_scoeff
real (kind=dp) :: alpha
integer :: nside
logical :: nside_in = .false.
logical :: admiss_pass
type (s2_sky) :: sky
integer :: fail = 0
character (len=STRING_LEN) :: filename_in
character (len=STRING_LEN) :: filename_out
character (len=*), parameter :: FILE_TYPE_FITS = 'fits'
character (len=*), parameter :: FILE_TYPE_MAT = 'm'
character (len=STRING_LEN) :: file_type = FILE_TYPE_FITS
subroutine parse_options () ! Calls: getArgument end subroutine parse_optionsParses the options passed when program called. ! @author J. D. McEwen (mcewen@mrao.cam.ac.uk)
Version: 0.1 - November 2007