@@ -67,7 +67,6 @@ module algorithm_info_mod
6767
6868type obs_inc_info_type
6969 integer :: filter_kind
70- logical :: rectangular_quadrature, gaussian_likelihood_tails
7170 logical :: sort_obs_inc, spread_restoration
7271 logical :: bounded_below, bounded_above
7372 real (r8 ) :: lower_bound, upper_bound
@@ -83,7 +82,7 @@ module algorithm_info_mod
8382
8483integer , parameter :: HEADER_LINES = 2
8584character (len= 129 ), dimension (4 ) :: header1
86- character (len= 129 ), dimension (29 ) :: header2
85+ character (len= 129 ), dimension (27 ) :: header2
8786
8887character (len= 129 ), allocatable :: specified_qtys(:)
8988type (algorithm_info_type), allocatable :: qcf_table_data(:)
@@ -178,9 +177,8 @@ subroutine read_qcf_table(qcf_table_filename)
178177 qcf_table_data(row)% probit_state% lower_bound, qcf_table_data(row)% probit_state% upper_bound, dist_type_string_probit_extended_state, &
179178 qcf_table_data(row)% probit_extended_state% bounded_below, qcf_table_data(row)% probit_extended_state% bounded_above, &
180179 qcf_table_data(row)% probit_extended_state% lower_bound, qcf_table_data(row)% probit_extended_state% upper_bound, &
181- filter_kind_string, qcf_table_data(row)% obs_inc_info% rectangular_quadrature, &
182- qcf_table_data(row)% obs_inc_info% gaussian_likelihood_tails, qcf_table_data(row)% obs_inc_info% sort_obs_inc, &
183- qcf_table_data(row)% obs_inc_info% spread_restoration, qcf_table_data(row)% obs_inc_info% bounded_below, qcf_table_data(row)% obs_inc_info% bounded_above, &
180+ filter_kind_string, qcf_table_data(row)% obs_inc_info% sort_obs_inc, qcf_table_data(row)% obs_inc_info% spread_restoration, &
181+ qcf_table_data(row)% obs_inc_info% bounded_below, qcf_table_data(row)% obs_inc_info% bounded_above, &
184182 qcf_table_data(row)% obs_inc_info% lower_bound, qcf_table_data(row)% obs_inc_info% upper_bound
185183
186184 ! Converting the distribution types (read in from table as a string) to its corresponding int value
@@ -417,12 +415,11 @@ end subroutine probit_dist_info
417415!- -----------------------------------------------------------------------
418416
419417
420- subroutine obs_inc_info (obs_qty , filter_kind , rectangular_quadrature , gaussian_likelihood_tails , &
421- sort_obs_inc , spread_restoration , bounded_below , bounded_above , lower_bound , upper_bound )
418+ subroutine obs_inc_info (obs_qty , filter_kind , sort_obs_inc , spread_restoration , &
419+ bounded_below , bounded_above , lower_bound , upper_bound )
422420
423421integer , intent (in ) :: obs_qty
424422integer , intent (inout ) :: filter_kind
425- logical , intent (inout ) :: rectangular_quadrature, gaussian_likelihood_tails
426423logical , intent (inout ) :: sort_obs_inc
427424logical , intent (inout ) :: spread_restoration
428425logical , intent (inout ) :: bounded_below, bounded_above
@@ -473,10 +470,6 @@ subroutine obs_inc_info(obs_qty, filter_kind, rectangular_quadrature, gaussian_l
473470
474471endif
475472
476- ! Only need to set these two for options the original RHF implementation
477- ! !!rectangular_quadrature = .true.
478- ! !!gaussian_likelihood_tails = .false.
479-
480473end subroutine obs_inc_info
481474
482475!- -----------------------------------------------------------------------
@@ -591,8 +584,7 @@ subroutine log_qcf_table_data()
591584 qcf_table_data(row)% probit_state% lower_bound, qcf_table_data(row)% probit_state% upper_bound, qcf_table_data(row)% probit_extended_state% dist_type, &
592585 qcf_table_data(row)% probit_extended_state% bounded_below, qcf_table_data(row)% probit_extended_state% bounded_above, &
593586 qcf_table_data(row)% probit_extended_state% lower_bound, qcf_table_data(row)% probit_extended_state% upper_bound, &
594- qcf_table_data(row)% obs_inc_info% filter_kind, qcf_table_data(row)% obs_inc_info% rectangular_quadrature, &
595- qcf_table_data(row)% obs_inc_info% gaussian_likelihood_tails, qcf_table_data(row)% obs_inc_info% sort_obs_inc, &
587+ qcf_table_data(row)% obs_inc_info% filter_kind, qcf_table_data(row)% obs_inc_info% sort_obs_inc, &
596588 qcf_table_data(row)% obs_inc_info% spread_restoration, qcf_table_data(row)% obs_inc_info% bounded_below, qcf_table_data(row)% obs_inc_info% bounded_above, &
597589 qcf_table_data(row)% obs_inc_info% lower_bound, qcf_table_data(row)% obs_inc_info% upper_bound
598590call error_handler(E_MSG, ' log_qcf_table_data:' , trim (log_msg), source)
0 commit comments