Learn R Programming

PTXQC (version 1.0.4)

getMQPARValue: Retrieve a parameter value from a mqpar.xml file

Description

If the file has the param, then return it as string. If the file is missing, warning is shown and NULL is returned. If the param (i.e. XML tag) is unknown or cannot be extracted, the program will quit (since this is a hard error). When multiple occurrences of the param are found (usually due to parameter groups), we test if the values are all identical. If so, the value is returned. If the values are different, a warning is emitted and NULL is returned.

Usage

getMQPARValue(mqpar_filename, param_name)

Arguments

mqpar_filename

Filename (incl. absolute or relative path) to the mqpar.xml file

param_name

XML tag name, e.g. 'firstSearchTol' from which to read the value

Value

The stored value as string(!)

Details

E.g. calling getMQPARValue("mqpar.xml", "firstSearchTol") will look up the line <firstSearchTol>20</firstSearchTol> and return "20" (string!).