| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | public, | parameter | :: | MAX_TABLE_COLS | = | 100 | |
| integer, | public, | parameter | :: | MAX_NAME_LEN | = | 50 | |
| integer, | public, | parameter | :: | MAX_LINE_LEN | = | 2500 |
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=MAX_NAME_LEN), | public | :: | header_cols(MAX_TABLE_COLS) | = | '' | ||
| character(len=MAX_NAME_LEN), | public | :: | row_field(MAX_TABLE_COLS) | = | '' | ||
| character(len=MAX_LINE_LEN), | public | :: | line | = | '' | ||
| character(len=:), | public, | allocatable | :: | left_str | |||
| character(len=:), | public, | allocatable | :: | file_name | |||
| character(len=:), | public, | allocatable | :: | min_cols | |||
| character(len=80), | public | :: | titldum | = | "" | ||
| integer, | public | :: | nrow | = | 0 | ||
| integer, | public | :: | ncols | = | 0 | ||
| integer, | public | :: | nfields | = | 0 | ||
| integer, | public | :: | skipped_rows | = | 0 | ||
| integer, | public | :: | start_row_numbr | = | 1 | ||
| integer, | public | :: | unit | = | 0 | ||
| logical, | public | :: | found_header_row | = | .false. | ||
| logical, | public, | allocatable | :: | col_okay(:) | |||
| logical, | public | :: | file_exists | = | .false. |
| procedure, public :: init | |
| procedure, public :: get_num_data_lines | |
| procedure, public :: get_header_columns | |
| procedure, public :: get_row_fields | |
| procedure, public :: output_column_warning | |
| procedure, public :: get_row_idx | |
| procedure, public :: get_col_count | |
| procedure, public :: min_header_cols | |
| procedure, public :: min_req_cols |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real, | intent(in) | :: | y |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | str |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self |
Count the number of valid data rows in the table file |
read all curve number data from cn.tbl
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| integer, | intent(in), | optional | :: | unit | ||
| character(len=*), | optional | :: | file_name | |||
| integer, | intent(in), | optional | :: | start_row_numbr |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | input | |||
| character(len=1), | intent(in) | :: | delim | |||
| character(len=:), | intent(out), | allocatable | :: | result |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | line2 | |||
| character(len=*), | intent(out) | :: | fields2(:) | |||
| integer, | intent(out) | :: | nfields | |||
| character(len=1), | intent(in), | optional | :: | delim | ||
| integer, | intent(in), | optional | :: | maxsplit |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| character(len=*), | intent(in) | :: | min_cols |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| character(len=*), | intent(in) | :: | min_cols |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| integer | :: | eof |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| integer, | intent(out) | :: | eof |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(table_reader), | intent(inout) | :: | self | |||
| integer, | intent(in) | :: | i |