ssht_about.f90
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00019
00020 program ssht_about
00021
00022 implicit none
00023
00024 write(*,'(a)') "=========================================================="
00025 write(*,'(a)') "SSHT package to perform spin spherical harmonic transforms"
00026 write(*,'(a)') "By Jason McEwen and Yves Wiaux"
00027
00028 write(*,'(a)') "See www.jasonmcewen.org for more information."
00029 write(*,'(a)') "See LICENSE.txt for license details."
00030
00031 write(*,'(a,a)') "Version: ", SSHT_VERSION
00032 write(*,'(a,a)') "Build: ", SSHT_BUILD
00033 write(*,'(a)') "=========================================================="
00034
00035 end program ssht_about
00036