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

18 lines
247 B
Fortran
Raw 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
write(*,'(1000(F16.10,X))')one_body_dm_mo_beta(i,:,1)
enddo
end