10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 11:25:26 +02:00
quantum_package/plugins/Properties/print_hcc.irp.f

18 lines
254 B
Fortran
Raw Permalink Normal View History

2016-03-11 23:27:39 +01:00
program print_hcc_main
2016-02-17 10:52:57 +01:00
implicit none
read_wf = .True.
touch read_wf
2017-12-08 16:17:54 +01:00
! call print_hcc
call routine
2016-02-17 10:52:57 +01:00
end
2017-12-08 16:17:54 +01:00
subroutine routine
implicit none
integer :: i
do i = 1, mo_tot_num
2019-06-28 00:16:47 +02:00
write(*,'(I3,X,1000(F16.10,X))')i,one_body_dm_mo_beta(i,i,1)
2017-12-08 16:17:54 +01:00
enddo
end