map_indices Subroutine

public subroutine map_indices(indices)

Maps a set of six indices from pre-freeze to post-freeze orbital indexing @param indices on entry: array of indices in pre-freeze indexing, on return: same array in post-freeze indexing

Arguments

Type IntentOptional Attributes Name
integer(kind=int64), intent(inout) :: indices(:)

Contents

Source Code


Source Code

    subroutine map_indices(indices)
        integer(int64), intent(inout) :: indices(:)

        indices = indices - numBasisIndices(nFrozen)
    end subroutine map_indices