10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-18 11:15:28 +02:00
quantum_package/plugins/Properties/print_hcc.irp.f
2017-12-08 16:17:54 +01:00

18 lines
247 B
Fortran

program print_hcc_main
implicit none
read_wf = .True.
touch read_wf
! call print_hcc
call routine
end
subroutine routine
implicit none
integer :: i
do i = 1, mo_tot_num
write(*,'(1000(F16.10,X))')one_body_dm_mo_beta(i,:,1)
enddo
end