10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-20 12:12:04 +02:00
qmcchem/src/finish.irp.f

23 lines
502 B
FortranFixed
Raw Normal View History

2015-12-19 03:29:52 +01:00
subroutine abrt (here,message)
implicit none
character*(*) :: here
character*(*) :: message
write(0,*) '-------------------------'
write(0,*) 'Error in '//trim(here)//':'
write(0,*) '-------------------------'
write(0,*) trim(message)//'.'
write(0,*) '-------------------------'
if (is_worker) then
call worker_log(here,message)
call sleep(2)
endif
call finish()
stop
end
subroutine finish()
implicit none
call ezfio_finish()
end