function sltcnd_2_tc_ua(nI, ex, tSign, assert_occupation) result(hel)
integer, intent(in) :: nI(nel)
type(Excite_2_t), intent(in) :: ex
logical, intent(in) :: tSign
logical, intent(in), optional :: assert_occupation
debug_function_name("sltcnd_2_tc_ua")
HElement_t(dp) :: hel, heltc
#ifdef DEBUG_
block
use constants, only: stderr
use util_mod, only: stop_all
logical :: test_occupation
if (present(assert_occupation)) then
test_occupation = assert_occupation
else
test_occupation = .true.
end if
if (test_occupation) then
if (.not. occupation_allowed(nI, ex)) then
write(stderr, *) 'src', ex%val(1, :)
write(stderr, *) 'tgt', ex%val(2, :)
write(stderr, *) 'nI', nI
call stop_all(this_routine, "Not allowed by occupation.")
end if
end if
end block
#endif
! get the matrix element up to 2-body terms
hel = sltcnd_2_kernel_ua(ex)
! and the 3-body term
heltc = sltcnd_2_kernel_ua_3b(nI, ex)
hel = hel + heltc
! take fermi sign into account
if (tSign) hel = -hel
end function sltcnd_2_tc_ua