slps_t Derived Type

type, public :: slps_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer, public :: n
character(len=1), public :: l
real(kind=dp), public :: j =-1.0_dp
integer, public :: set
character(len=100), public :: flavor
real(kind=dp), public :: rc
real(kind=dp), public :: eref
type(radfunc_t), public :: V
type(semilocal_t), public, pointer:: parent_group=> null()
type(slps_t), public, pointer:: next=> null()

Source Code

type, public :: slps_t
      integer           :: n
      character(len=1)  :: l
      real(dp)          :: j = -1.0_dp
      integer           :: set
      character(len=100):: flavor
      real(dp)          :: rc
      real(dp)          :: eref  ! Reference energy
      type(radfunc_t)   :: V
      type(semilocal_t), pointer :: parent_group => null()
   type(slps_t), pointer :: next => null()

end type slps_t