9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-23 21:12:05 +02:00
qp2/src/mol_properties/print_mol_properties.irp.f
2023-03-11 22:31:57 +01:00

25 lines
463 B
Fortran

subroutine print_mol_properties()
implicit none
BEGIN_DOC
! Run the propertie calculations
END_DOC
! Electric dipole moment
if (calc_dipole_moment) then
call print_dipole_moment
endif
! Transition electric dipole moment
if (calc_tr_dipole_moment .and. N_states > 1) then
call print_transition_dipole_moment
endif
! Oscillator strength
if (calc_osc_str .and. N_states > 1) then
call print_oscillator_strength
endif
end