Scrambler
1
|
Generic interface for querying outflows. More...
Private Member Functions | |
subroutine | queryInt (queryChar, IDlist, iquery) |
Integer query queryChar character representing query field to match IDlist the list of outflow IDs to be returned iquery integer query value. | |
subroutine | queryFloat (queryChar, IDlist, fquery) |
Float query queryChar character representing query field to match IDlist the list of outflow IDs to be returned fquery float query value. | |
subroutine | queryDouble (queryChar, IDlist, dquery) |
Double query queryChar character representing query field to match IDlist the list of outflow IDs to be returned dquery double query value. | |
subroutine | queryLogical (queryChar, IDlist, lquery) |
Logical query queryChar character representing query field to match IDlist the list of outflow IDs to be returned lquery logical query value. | |
subroutine | queryCh (queryChar, IDlist, cquery) |
Character query queryChar character representing query field to match IDlist the list of outflow IDs to be returned cquery character query value. |
Generic interface for querying outflows.
Definition at line 52 of file outflow.f90.
subroutine queryInt | ( | CHARACTER(LEN=*) | queryChar, |
INTEGER, dimension(:) | IDlist, | ||
INTEGER, dimension(:) | iquery | ||
) | [private] |
Integer query queryChar character representing query field to match IDlist the list of outflow IDs to be returned iquery integer query value.
Definition at line 221 of file outflow.f90.
subroutine queryFloat | ( | CHARACTER(LEN=*) | queryChar, |
INTEGER, dimension(:) | IDlist, | ||
REAL, dimension(:) | fquery | ||
) | [private] |
Float query queryChar character representing query field to match IDlist the list of outflow IDs to be returned fquery float query value.
Definition at line 246 of file outflow.f90.
subroutine queryDouble | ( | CHARACTER(LEN=*) | queryChar, |
INTEGER, dimension(:) | IDlist, | ||
REAL(KIND=qPrec), dimension(:) | dquery | ||
) | [private] |
Double query queryChar character representing query field to match IDlist the list of outflow IDs to be returned dquery double query value.
Definition at line 271 of file outflow.f90.
subroutine queryLogical | ( | CHARACTER(LEN=*) | queryChar, |
INTEGER, dimension(:) | IDlist, | ||
LOGICAL, dimension(:) | lquery | ||
) | [private] |
Logical query queryChar character representing query field to match IDlist the list of outflow IDs to be returned lquery logical query value.
Definition at line 296 of file outflow.f90.
subroutine queryCh | ( | CHARACTER(LEN=*) | queryChar, |
INTEGER, dimension(:) | IDlist, | ||
CHARACTER(LEN=*), dimension(:) | cquery | ||
) | [private] |
Character query queryChar character representing query field to match IDlist the list of outflow IDs to be returned cquery character query value.
Definition at line 321 of file outflow.f90.