-
Notifications
You must be signed in to change notification settings - Fork 12
/
hat.f90
30 lines (25 loc) · 1.3 KB
/
hat.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
subroutine hat()
implicit none
character line*30
write(*,*)'.....................................................'
write(*,*)'.....................................................'
write(*,*)'....... Postprocesing tool for VASP/SIESTA ......'
write(*,*)'....... ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ......'
write(*,*)'....... It works with: ......'
write(*,*)'....... ^^^^^^^^^^^^^ ......'
write(*,*)'....... - total or partial charge density ......'
write(*,*)'....... - total and projected DOS ......'
write(*,*)'....... - electrostatic potential ......'
write(*,*)'.....................................................'
write(*,*)'>>>>>>>> 1st release: 25.07.1994'
include 'build.hat'
call system('date > tmp.date')
open(1,file='tmp.date')
read(1,'(a)') line
close (1,status='delete')
write(*,*)'>>>>>>>> today : '//line
write(*,*)'.....................................................'
write(*,*)'...... inquiries to L. Kantorovich .........'
write(*,*)'...... [email protected] .........'
write(*,*)'.....................................................'
end subroutine hat