@@ -67,7 +67,7 @@ module algorithm_info_mod
6767
6868type obs_inc_info_type
6969 integer :: filter_kind
70- logical :: sort_obs_inc, spread_restoration
70+ logical :: spread_restoration
7171 logical :: bounded_below, bounded_above
7272 real (r8 ) :: lower_bound, upper_bound
7373end type
@@ -82,7 +82,7 @@ module algorithm_info_mod
8282
8383integer , parameter :: HEADER_LINES = 2
8484character (len= 129 ), dimension (4 ) :: header1
85- character (len= 129 ), dimension (27 ) :: header2
85+ character (len= 129 ), dimension (26 ) :: header2
8686
8787character (len= 129 ), allocatable :: specified_qtys(:)
8888type (algorithm_info_type), allocatable :: qcf_table_data(:)
@@ -177,7 +177,7 @@ subroutine read_qcf_table(qcf_table_filename)
177177 qcf_table_data(row)% probit_state% lower_bound, qcf_table_data(row)% probit_state% upper_bound, dist_type_string_probit_extended_state, &
178178 qcf_table_data(row)% probit_extended_state% bounded_below, qcf_table_data(row)% probit_extended_state% bounded_above, &
179179 qcf_table_data(row)% probit_extended_state% lower_bound, qcf_table_data(row)% probit_extended_state% upper_bound, &
180- filter_kind_string, qcf_table_data(row)% obs_inc_info% sort_obs_inc, qcf_table_data(row) % obs_inc_info % spread_restoration, &
180+ filter_kind_string, qcf_table_data(row)% obs_inc_info% spread_restoration, &
181181 qcf_table_data(row)% obs_inc_info% bounded_below, qcf_table_data(row)% obs_inc_info% bounded_above, &
182182 qcf_table_data(row)% obs_inc_info% lower_bound, qcf_table_data(row)% obs_inc_info% upper_bound
183183
@@ -415,12 +415,11 @@ end subroutine probit_dist_info
415415!- -----------------------------------------------------------------------
416416
417417
418- subroutine obs_inc_info (obs_qty , filter_kind , sort_obs_inc , spread_restoration , &
418+ subroutine obs_inc_info (obs_qty , filter_kind , spread_restoration , &
419419 bounded_below , bounded_above , lower_bound , upper_bound )
420420
421421integer , intent (in ) :: obs_qty
422422integer , intent (inout ) :: filter_kind
423- logical , intent (inout ) :: sort_obs_inc
424423logical , intent (inout ) :: spread_restoration
425424logical , intent (inout ) :: bounded_below, bounded_above
426425real (r8 ), intent (inout ) :: lower_bound, upper_bound
@@ -440,7 +439,7 @@ subroutine obs_inc_info(obs_qty, filter_kind, sort_obs_inc, spread_restoration,
440439 filter_kind = BOUNDED_NORMAL_RHF
441440 bounded_below = .false. ; bounded_above = .false.
442441 lower_bound = missing_r8 ; upper_bound = missing_r8
443- sort_obs_inc = .false. ; spread_restoration = .false.
442+ spread_restoration = .false.
444443 return
445444endif
446445
@@ -455,13 +454,12 @@ subroutine obs_inc_info(obs_qty, filter_kind, sort_obs_inc, spread_restoration,
455454 filter_kind = BOUNDED_NORMAL_RHF
456455 bounded_below = .false. ; bounded_above = .false.
457456 lower_bound = missing_r8 ; upper_bound = missing_r8
458- sort_obs_inc = .false. ; spread_restoration = .false.
459- ! Default settings for now for Icepack and tracer model tests (sort_obs_inc, spread_restoration)
457+ spread_restoration = .false.
458+ ! Default settings for now for Icepack and tracer model tests (spread_restoration)
460459
461460 else
462461
463462 filter_kind = qcf_table_data(QTY_loc(1 ))% obs_inc_info% filter_kind
464- sort_obs_inc = qcf_table_data(QTY_loc(1 ))% obs_inc_info% sort_obs_inc
465463 spread_restoration = qcf_table_data(QTY_loc(1 ))% obs_inc_info% spread_restoration
466464 bounded_below = qcf_table_data(QTY_loc(1 ))% obs_inc_info% bounded_below
467465 bounded_above = qcf_table_data(QTY_loc(1 ))% obs_inc_info% bounded_above
@@ -584,9 +582,8 @@ subroutine log_qcf_table_data()
584582 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, &
585583 qcf_table_data(row)% probit_extended_state% bounded_below, qcf_table_data(row)% probit_extended_state% bounded_above, &
586584 qcf_table_data(row)% probit_extended_state% lower_bound, qcf_table_data(row)% probit_extended_state% upper_bound, &
587- qcf_table_data(row)% obs_inc_info% filter_kind, qcf_table_data(row)% obs_inc_info% sort_obs_inc, &
588- 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, &
589- qcf_table_data(row)% obs_inc_info% lower_bound, qcf_table_data(row)% obs_inc_info% upper_bound
585+ qcf_table_data(row)% obs_inc_info% filter_kind, qcf_table_data(row)% obs_inc_info% spread_restoration, qcf_table_data(row)% obs_inc_info% bounded_below, &
586+ qcf_table_data(row)% obs_inc_info% bounded_above, qcf_table_data(row)% obs_inc_info% lower_bound, qcf_table_data(row)% obs_inc_info% upper_bound
590587call error_handler(E_MSG, ' log_qcf_table_data:' , trim (log_msg), source)
591588end do
592589
0 commit comments