10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-22 18:57:31 +02:00
quantum_package/plugins/Properties/print_hcc.irp.f
2019-06-28 00:16:47 +02:00

18 lines
254 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(*,'(I3,X,1000(F16.10,X))')i,one_body_dm_mo_beta(i,i,1)
enddo
end