ExcitWeight Derived Type

type, public :: ExcitWeight
sequence


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: I
integer, public :: J
integer, public :: A
integer, public :: B
real(kind=dp), public :: WEIGHT

Source Code

    TYPE ExcitWeight
        SEQUENCE
! The orbitals excited from
        INTEGER I, J
! The orbitals excited to
        INTEGER A, B
        real(dp) WEIGHT
    END TYPE ExcitWeight