Skip to content

Commit

Permalink
MInor addition.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgin authored Dec 15, 2024
1 parent 7aa8b2d commit 324522a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Radiolocation/GMS_waveform_analysis_types.f90
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ module waveform_analysis_types
! Signal Fourier Transform (continous) single precision.
type, public :: signal_ft_cont_c4_t

logical(kind=i4), dimension(15) :: alloc_stat ! arrays allocation status (is_allocated output)
character(len=64) :: integrator_name ! either direct integration by ?qawf, or by tabulated data integrator
character(len=12) :: transform_type ! direct or inverse transform
character(len=12) :: transform_type ! direct or inverse transform

integer(kind=i4) :: n ! number of sample signal values
real(kind=sp), dimension(:), allocatable :: a ! lower limit of integration
real(kind=sp), dimension(:), allocatable :: b ! upper limit of integration
Expand Down Expand Up @@ -135,6 +137,7 @@ module waveform_analysis_types
! Signal Fourier Transform (continous) double precision.
type, public :: signal_ft_cont_c8_t

logical(kind=i4), dimension(15) :: alloc_stat ! arrays allocation status (is_allocated output)
character(len=64) :: integrator_name ! either direct integration by ?qawf, or by tabulated data integrator
character(len=12) :: transform_type ! direct or inverse transform
integer(kind=i4) :: n ! number of sample signal values
Expand Down

0 comments on commit 324522a

Please sign in to comment.