Prints information about cross-sections at the end of the program
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | open_basis_levels_(:) |
array holding indices to open basis levels |
||
real(kind=dp), | intent(in) | :: | cross_sections_(:) |
holds values of the cross-sections |
subroutine print_final_cross_sections(open_basis_levels_, cross_sections_)
!! Prints information about cross-sections at the end of the program
!---------------------------------------------------------------------!
integer(int32), intent(in) :: open_basis_levels_(:)
!! array holding indices to open basis levels
real(dp), intent(in) :: cross_sections_(:)
!! holds values of the cross-sections
!---------------------------------------------------------------------!
call write_message("Final state-to-state XS")
!---------------------------------------------------------------------!
call print_all_cross_sections(open_basis_levels_, cross_sections_)
!---------------------------------------------------------------------!
end subroutine print_final_cross_sections