pdf_kernel Derived Type

type, public :: pdf_kernel


Components

Type Visibility Attributes Name Initial
integer, public :: N = 0
real(kind=8), public :: xmin
real(kind=8), public :: xmax
real(kind=8), public :: dx
integer, public :: Ndata = 0
real(kind=8), public, dimension(:), allocatable :: x
real(kind=8), public, dimension(:), allocatable :: pdf
real(kind=8), public :: sigma
logical, public :: status = .false.
logical, public :: variance = .false.
logical, public :: rescale = .false.

Source Code

  type,public :: pdf_kernel
     integer                          :: N=0
     real(8)                          :: xmin
     real(8)                          :: xmax
     real(8)                          :: dx
     integer                          :: Ndata=0     
     real(8),dimension(:),allocatable :: x
     real(8),dimension(:),allocatable :: pdf
     real(8)                          :: sigma
     logical                          :: status=.false.
     logical                          :: variance=.false.
     logical                          :: rescale=.false.
  end type pdf_kernel