bianchi2_about.f90
Go to the documentation of this file.
1 !------------------------------------------------------------------------------
2 ! bianchi2_about
3 !
13 !------------------------------------------------------------------------------
14 
16 
17  use s2_types_mod
18 
19  implicit none
20 
21  ! Display info.
22  write(*,'(a)') "=========================================================="
23  write(*,'(a)') "BIANCHI2 package to simulate Bianchi type VIIh induced"
24  write(*,'(a)') "temperature fluctuations in CMB maps when incorporating a"
25  write(*,'(a)') "cosmological constant."
26  write(*,'(a)') "By Jason McEwen, Anthony Lasenby and Thibaut Josset"
27  write(*,'(a)') "See www.jasonmcewen.org for more information."
28  write(*,'(a)') "See LICENSE.txt for license details."
29 
30  write(*,'(a,a)') "Version: ", bianchi2_version
31  write(*,'(a,a)') "Build: ", bianchi2_build
32  write(*,'(a)') "=========================================================="
33 
34 end program bianchi2_about
35 
36 
37 
38