10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-04 10:25:58 +02:00
quantum_package/plugins/dress_zmq/dress_zmq_routines.irp.f

22 lines
399 B
Fortran
Raw Normal View History

2018-01-09 10:41:45 +01:00
subroutine dress_zmq()
2017-12-15 16:21:04 +01:00
implicit none
double precision, allocatable :: energy(:)
allocate (energy(N_states))
read_wf = .True.
SOFT_TOUCH read_wf
2017-12-15 16:21:04 +01:00
if (.True.) then
integer :: i,j
do j=1,N_states
do i=1,N_det
psi_coef(i,j) = CI_eigenvectors(i,j)
enddo
enddo
SOFT_TOUCH psi_coef
endif
2018-03-05 17:04:26 +01:00
call run_dressing(N_states,energy)
2017-12-15 16:21:04 +01:00
deallocate(energy)
end