To supply optional parameters to
h02cbf from an external file.
h02ccf may be used to supply values for optional parameters to
h02cbf.
h02ccf reads an external file and each line of the file defines a single optional parameter. It is only necessary to supply values for those arguments whose values are to be different from their default values.
Each optional parameter is defined by a single character string of up to
characters, consisting of one or more items. The items associated with a given option must be separated by spaces, or equal signs
. Alphabetic characters may be upper or lower case. The string
Print level = 1
is an example of a string used to set an optional parameter. For each option the string contains one or more of the following items:
– |
a mandatory keyword; |
– |
a phrase that qualifies the keyword; |
– |
a number that specifies an integer or real value. Such numbers may be up to contiguous characters in Fortran 77's I, F, E or D formats, terminated by a space if this is not the last item on the line. |
Blank strings and comments are ignored. A comment begins with an asterisk (*) and all subsequent characters in the string are regarded as part of the comment.
The file containing the options must start with
Begin and must finish with
End. An example of a valid options file is:
Begin * Example options file
Print level = 10
End
Normally each line of the file is printed as it is read, on the current advisory message unit (see
x04abf), but printing may be suppressed using the keyword
Nolist. To suppress printing of
Begin,
Nolist must be the first option supplied as in the file:
Begin
Nolist
Print level = 10
End
Printing will automatically be turned on again after a call to
h02cbf and may be turned on again at any time by you by using the keyword
List.
Optional parameter settings are preserved following a call to
h02cbf, and so the keyword
Defaults is provided to allow you to reset all the optional parameters to their default values prior to a subsequent call to
h02cbf.
A complete list of optional parameters, their abbreviations, synonyms and default values is given in
Section 12 in
h02cbf.
None.
If a line is not recognized as a valid option, then a warning message is output on the current advisory message unit (see
x04abf).
Not applicable.
h02ccf is not thread safe and should not be called from a multithreaded user program. Please see
Section 3.12.1 in How to Use the NAG Library and its Documentation for more information on thread safety.
h02cdf may also be used to supply optional parameters to
h02cbf. Note that if
e04nff/e04nfa is used in the same program as
h02cbf, then in general
h02ccf will also affect the options used by
e04nff/e04nfa.
This example solves the same problem as the example for
h02cbf, but in addition illustrates the use of
h02ccf and
h02cdf to set optional parameters for
h02cbf.
In this example the options file read by
h02ccf is appended to the data file for the program (see
Section 10.2). It would usually be more convenient in practice to keep the data file and the options file separate.